diff --git a/generated/schema.graphql b/generated/schema.graphql index 2c2b79e79..a3ecbd86d 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -5607,6 +5607,351 @@ input e_draft_game_status_updates { where: e_draft_game_status_bool_exp! } +""" +columns and relationships of "e_event_media_access" +""" +type e_event_media_access { + description: String! + value: String! +} + +""" +aggregated selection of "e_event_media_access" +""" +type e_event_media_access_aggregate { + aggregate: e_event_media_access_aggregate_fields + nodes: [e_event_media_access!]! +} + +""" +aggregate fields of "e_event_media_access" +""" +type e_event_media_access_aggregate_fields { + count(columns: [e_event_media_access_select_column!], distinct: Boolean): Int! + max: e_event_media_access_max_fields + min: e_event_media_access_min_fields +} + +""" +Boolean expression to filter rows from the table "e_event_media_access". All fields are combined with a logical 'AND'. +""" +input e_event_media_access_bool_exp { + _and: [e_event_media_access_bool_exp!] + _not: e_event_media_access_bool_exp + _or: [e_event_media_access_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_event_media_access" +""" +enum e_event_media_access_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_event_media_access_pkey +} + +enum e_event_media_access_enum { + """Anyone involved in the event""" + Involved + + """Organizers only""" + Organizers +} + +""" +Boolean expression to compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. +""" +input e_event_media_access_enum_comparison_exp { + _eq: e_event_media_access_enum + _in: [e_event_media_access_enum!] + _is_null: Boolean + _neq: e_event_media_access_enum + _nin: [e_event_media_access_enum!] +} + +""" +input type for inserting data into table "e_event_media_access" +""" +input e_event_media_access_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_event_media_access_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_event_media_access_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_event_media_access" +""" +type e_event_media_access_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_event_media_access!]! +} + +""" +on_conflict condition type for table "e_event_media_access" +""" +input e_event_media_access_on_conflict { + constraint: e_event_media_access_constraint! + update_columns: [e_event_media_access_update_column!]! = [] + where: e_event_media_access_bool_exp +} + +"""Ordering options when selecting data from "e_event_media_access".""" +input e_event_media_access_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_event_media_access""" +input e_event_media_access_pk_columns_input { + value: String! +} + +""" +select columns of table "e_event_media_access" +""" +enum e_event_media_access_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_event_media_access" +""" +input e_event_media_access_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_event_media_access" +""" +input e_event_media_access_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_event_media_access_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_event_media_access_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_event_media_access" +""" +enum e_event_media_access_update_column { + """column name""" + description + + """column name""" + value +} + +input e_event_media_access_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_event_media_access_set_input + + """filter the rows which have to be updated""" + where: e_event_media_access_bool_exp! +} + +""" +columns and relationships of "e_event_visibility" +""" +type e_event_visibility { + description: String! + value: String! +} + +""" +aggregated selection of "e_event_visibility" +""" +type e_event_visibility_aggregate { + aggregate: e_event_visibility_aggregate_fields + nodes: [e_event_visibility!]! +} + +""" +aggregate fields of "e_event_visibility" +""" +type e_event_visibility_aggregate_fields { + count(columns: [e_event_visibility_select_column!], distinct: Boolean): Int! + max: e_event_visibility_max_fields + min: e_event_visibility_min_fields +} + +""" +Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. +""" +input e_event_visibility_bool_exp { + _and: [e_event_visibility_bool_exp!] + _not: e_event_visibility_bool_exp + _or: [e_event_visibility_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_event_visibility" +""" +enum e_event_visibility_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_event_visibility_pkey +} + +enum e_event_visibility_enum { + """Involved people and their friends""" + Friends + + """Only people involved in the event""" + Private + + """Anyone""" + Public +} + +""" +Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. +""" +input e_event_visibility_enum_comparison_exp { + _eq: e_event_visibility_enum + _in: [e_event_visibility_enum!] + _is_null: Boolean + _neq: e_event_visibility_enum + _nin: [e_event_visibility_enum!] +} + +""" +input type for inserting data into table "e_event_visibility" +""" +input e_event_visibility_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_event_visibility_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_event_visibility_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_event_visibility" +""" +type e_event_visibility_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_event_visibility!]! +} + +""" +on_conflict condition type for table "e_event_visibility" +""" +input e_event_visibility_on_conflict { + constraint: e_event_visibility_constraint! + update_columns: [e_event_visibility_update_column!]! = [] + where: e_event_visibility_bool_exp +} + +"""Ordering options when selecting data from "e_event_visibility".""" +input e_event_visibility_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_event_visibility""" +input e_event_visibility_pk_columns_input { + value: String! +} + +""" +select columns of table "e_event_visibility" +""" +enum e_event_visibility_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_event_visibility" +""" +input e_event_visibility_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_event_visibility" +""" +input e_event_visibility_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_event_visibility_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_event_visibility_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_event_visibility" +""" +enum e_event_visibility_update_column { + """column name""" + description + + """column name""" + value +} + +input e_event_visibility_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + + """filter the rows which have to be updated""" + where: e_event_visibility_bool_exp! +} + """ columns and relationships of "e_friend_status" """ @@ -11955,35 +12300,2856 @@ input e_utility_types_stream_cursor_value_input { value: String } -""" -update columns of table "e_utility_types" -""" -enum e_utility_types_update_column { - """column name""" - description +""" +update columns of table "e_utility_types" +""" +enum e_utility_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_utility_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_utility_types_set_input + + """filter the rows which have to be updated""" + where: e_utility_types_bool_exp! +} + +""" +columns and relationships of "e_veto_pick_types" +""" +type e_veto_pick_types { + description: String! + + """An array relationship""" + match_veto_picks( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): [match_map_veto_picks!]! + + """An aggregate relationship""" + match_veto_picks_aggregate( + """distinct select on columns""" + distinct_on: [match_map_veto_picks_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [match_map_veto_picks_order_by!] + + """filter the rows returned""" + where: match_map_veto_picks_bool_exp + ): match_map_veto_picks_aggregate! + value: String! +} + +""" +aggregated selection of "e_veto_pick_types" +""" +type e_veto_pick_types_aggregate { + aggregate: e_veto_pick_types_aggregate_fields + nodes: [e_veto_pick_types!]! +} + +""" +aggregate fields of "e_veto_pick_types" +""" +type e_veto_pick_types_aggregate_fields { + count(columns: [e_veto_pick_types_select_column!], distinct: Boolean): Int! + max: e_veto_pick_types_max_fields + min: e_veto_pick_types_min_fields +} + +""" +Boolean expression to filter rows from the table "e_veto_pick_types". All fields are combined with a logical 'AND'. +""" +input e_veto_pick_types_bool_exp { + _and: [e_veto_pick_types_bool_exp!] + _not: e_veto_pick_types_bool_exp + _or: [e_veto_pick_types_bool_exp!] + description: String_comparison_exp + match_veto_picks: match_map_veto_picks_bool_exp + match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_veto_pick_types" +""" +enum e_veto_pick_types_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_veto_pick_type_pkey +} + +enum e_veto_pick_types_enum { + """Ban""" + Ban + + """Decider""" + Decider + + """Pick""" + Pick + + """Side""" + Side +} + +""" +Boolean expression to compare columns of type "e_veto_pick_types_enum". All fields are combined with logical 'AND'. +""" +input e_veto_pick_types_enum_comparison_exp { + _eq: e_veto_pick_types_enum + _in: [e_veto_pick_types_enum!] + _is_null: Boolean + _neq: e_veto_pick_types_enum + _nin: [e_veto_pick_types_enum!] +} + +""" +input type for inserting data into table "e_veto_pick_types" +""" +input e_veto_pick_types_insert_input { + description: String + match_veto_picks: match_map_veto_picks_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_veto_pick_types_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_veto_pick_types_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_veto_pick_types" +""" +type e_veto_pick_types_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_veto_pick_types!]! +} + +""" +on_conflict condition type for table "e_veto_pick_types" +""" +input e_veto_pick_types_on_conflict { + constraint: e_veto_pick_types_constraint! + update_columns: [e_veto_pick_types_update_column!]! = [] + where: e_veto_pick_types_bool_exp +} + +"""Ordering options when selecting data from "e_veto_pick_types".""" +input e_veto_pick_types_order_by { + description: order_by + match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_veto_pick_types""" +input e_veto_pick_types_pk_columns_input { + value: String! +} + +""" +select columns of table "e_veto_pick_types" +""" +enum e_veto_pick_types_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_veto_pick_types" +""" +input e_veto_pick_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_veto_pick_types" +""" +input e_veto_pick_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_veto_pick_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_veto_pick_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_veto_pick_types" +""" +enum e_veto_pick_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_veto_pick_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_veto_pick_types_set_input + + """filter the rows which have to be updated""" + where: e_veto_pick_types_bool_exp! +} + +""" +columns and relationships of "e_winning_reasons" +""" +type e_winning_reasons { + description: String! + value: String! +} + +""" +aggregated selection of "e_winning_reasons" +""" +type e_winning_reasons_aggregate { + aggregate: e_winning_reasons_aggregate_fields + nodes: [e_winning_reasons!]! +} + +""" +aggregate fields of "e_winning_reasons" +""" +type e_winning_reasons_aggregate_fields { + count(columns: [e_winning_reasons_select_column!], distinct: Boolean): Int! + max: e_winning_reasons_max_fields + min: e_winning_reasons_min_fields +} + +""" +Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. +""" +input e_winning_reasons_bool_exp { + _and: [e_winning_reasons_bool_exp!] + _not: e_winning_reasons_bool_exp + _or: [e_winning_reasons_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_winning_reasons" +""" +enum e_winning_reasons_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_winning_reasons_pkey +} + +enum e_winning_reasons_enum { + """Bomb Defused""" + BombDefused + + """Bomb Exploded""" + BombExploded + + """CTs Win""" + CTsWin + + """Terrorists Win""" + TerroristsWin + + """Time Ran Out""" + TimeRanOut + + """Unknown""" + Unknown +} + +""" +Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. +""" +input e_winning_reasons_enum_comparison_exp { + _eq: e_winning_reasons_enum + _in: [e_winning_reasons_enum!] + _is_null: Boolean + _neq: e_winning_reasons_enum + _nin: [e_winning_reasons_enum!] +} + +""" +input type for inserting data into table "e_winning_reasons" +""" +input e_winning_reasons_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_winning_reasons_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_winning_reasons_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_winning_reasons" +""" +type e_winning_reasons_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_winning_reasons!]! +} + +""" +on_conflict condition type for table "e_winning_reasons" +""" +input e_winning_reasons_on_conflict { + constraint: e_winning_reasons_constraint! + update_columns: [e_winning_reasons_update_column!]! = [] + where: e_winning_reasons_bool_exp +} + +"""Ordering options when selecting data from "e_winning_reasons".""" +input e_winning_reasons_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_winning_reasons""" +input e_winning_reasons_pk_columns_input { + value: String! +} + +""" +select columns of table "e_winning_reasons" +""" +enum e_winning_reasons_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_winning_reasons" +""" +input e_winning_reasons_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_winning_reasons" +""" +input e_winning_reasons_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_winning_reasons_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_winning_reasons_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_winning_reasons" +""" +enum e_winning_reasons_update_column { + """column name""" + description + + """column name""" + value +} + +input e_winning_reasons_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_winning_reasons_set_input + + """filter the rows which have to be updated""" + where: e_winning_reasons_bool_exp! +} + +""" +columns and relationships of "event_match_links" +""" +type event_match_links { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! +} + +""" +aggregated selection of "event_match_links" +""" +type event_match_links_aggregate { + aggregate: event_match_links_aggregate_fields + nodes: [event_match_links!]! +} + +""" +aggregate fields of "event_match_links" +""" +type event_match_links_aggregate_fields { + count(columns: [event_match_links_select_column!], distinct: Boolean): Int! + max: event_match_links_max_fields + min: event_match_links_min_fields +} + +""" +Boolean expression to filter rows from the table "event_match_links". All fields are combined with a logical 'AND'. +""" +input event_match_links_bool_exp { + _and: [event_match_links_bool_exp!] + _not: event_match_links_bool_exp + _or: [event_match_links_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_match_links" +""" +enum event_match_links_constraint { + """ + unique or primary key constraint on columns "event_id", "match_id" + """ + event_match_links_pkey +} + +""" +input type for inserting data into table "event_match_links" +""" +input event_match_links_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid +} + +"""aggregate max on columns""" +type event_match_links_max_fields { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +"""aggregate min on columns""" +type event_match_links_min_fields { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +response of any mutation on the table "event_match_links" +""" +type event_match_links_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_match_links!]! +} + +""" +on_conflict condition type for table "event_match_links" +""" +input event_match_links_on_conflict { + constraint: event_match_links_constraint! + update_columns: [event_match_links_update_column!]! = [] + where: event_match_links_bool_exp +} + +"""Ordering options when selecting data from "event_match_links".""" +input event_match_links_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + match: matches_order_by + match_id: order_by +} + +"""primary key columns input for table: event_match_links""" +input event_match_links_pk_columns_input { + event_id: uuid! + match_id: uuid! +} + +""" +select columns of table "event_match_links" +""" +enum event_match_links_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + match_id +} + +""" +input type for updating data in table "event_match_links" +""" +input event_match_links_set_input { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +Streaming cursor of the table "event_match_links" +""" +input event_match_links_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_match_links_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_match_links_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +update columns of table "event_match_links" +""" +enum event_match_links_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + match_id +} + +input event_match_links_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + + """filter the rows which have to be updated""" + where: event_match_links_bool_exp! +} + +""" +columns and relationships of "event_media" +""" +type event_media { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + external_url: String + filename: String + id: uuid! + mime_type: String + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + size: bigint! + thumbnail_filename: String + title: String + + """An object relationship""" + uploader: players! + uploader_steam_id: bigint! +} + +""" +aggregated selection of "event_media" +""" +type event_media_aggregate { + aggregate: event_media_aggregate_fields + nodes: [event_media!]! +} + +input event_media_aggregate_bool_exp { + count: event_media_aggregate_bool_exp_count +} + +input event_media_aggregate_bool_exp_count { + arguments: [event_media_select_column!] + distinct: Boolean + filter: event_media_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_media" +""" +type event_media_aggregate_fields { + avg: event_media_avg_fields + count(columns: [event_media_select_column!], distinct: Boolean): Int! + max: event_media_max_fields + min: event_media_min_fields + stddev: event_media_stddev_fields + stddev_pop: event_media_stddev_pop_fields + stddev_samp: event_media_stddev_samp_fields + sum: event_media_sum_fields + var_pop: event_media_var_pop_fields + var_samp: event_media_var_samp_fields + variance: event_media_variance_fields +} + +""" +order by aggregate values of table "event_media" +""" +input event_media_aggregate_order_by { + avg: event_media_avg_order_by + count: order_by + max: event_media_max_order_by + min: event_media_min_order_by + stddev: event_media_stddev_order_by + stddev_pop: event_media_stddev_pop_order_by + stddev_samp: event_media_stddev_samp_order_by + sum: event_media_sum_order_by + var_pop: event_media_var_pop_order_by + var_samp: event_media_var_samp_order_by + variance: event_media_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_media" +""" +input event_media_arr_rel_insert_input { + data: [event_media_insert_input!]! + + """upsert condition""" + on_conflict: event_media_on_conflict +} + +"""aggregate avg on columns""" +type event_media_avg_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by avg() on columns of table "event_media" +""" +input event_media_avg_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. +""" +input event_media_bool_exp { + _and: [event_media_bool_exp!] + _not: event_media_bool_exp + _or: [event_media_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + external_url: String_comparison_exp + filename: String_comparison_exp + id: uuid_comparison_exp + mime_type: String_comparison_exp + players: event_media_players_bool_exp + players_aggregate: event_media_players_aggregate_bool_exp + size: bigint_comparison_exp + thumbnail_filename: String_comparison_exp + title: String_comparison_exp + uploader: players_bool_exp + uploader_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_media" +""" +enum event_media_constraint { + """ + unique or primary key constraint on columns "filename", "event_id" + """ + event_media_event_id_filename_key + + """ + unique or primary key constraint on columns "id" + """ + event_media_pkey +} + +""" +input type for incrementing numeric columns in table "event_media" +""" +input event_media_inc_input { + size: bigint + uploader_steam_id: bigint +} + +""" +input type for inserting data into table "event_media" +""" +input event_media_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + players: event_media_players_arr_rel_insert_input + size: bigint + thumbnail_filename: String + title: String + uploader: players_obj_rel_insert_input + uploader_steam_id: bigint +} + +"""aggregate max on columns""" +type event_media_max_fields { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +""" +order by max() on columns of table "event_media" +""" +input event_media_max_order_by { + created_at: order_by + event_id: order_by + external_url: order_by + filename: order_by + id: order_by + mime_type: order_by + size: order_by + thumbnail_filename: order_by + title: order_by + uploader_steam_id: order_by +} + +"""aggregate min on columns""" +type event_media_min_fields { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +""" +order by min() on columns of table "event_media" +""" +input event_media_min_order_by { + created_at: order_by + event_id: order_by + external_url: order_by + filename: order_by + id: order_by + mime_type: order_by + size: order_by + thumbnail_filename: order_by + title: order_by + uploader_steam_id: order_by +} + +""" +response of any mutation on the table "event_media" +""" +type event_media_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_media!]! +} + +""" +input type for inserting object relation for remote table "event_media" +""" +input event_media_obj_rel_insert_input { + data: event_media_insert_input! + + """upsert condition""" + on_conflict: event_media_on_conflict +} + +""" +on_conflict condition type for table "event_media" +""" +input event_media_on_conflict { + constraint: event_media_constraint! + update_columns: [event_media_update_column!]! = [] + where: event_media_bool_exp +} + +"""Ordering options when selecting data from "event_media".""" +input event_media_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + external_url: order_by + filename: order_by + id: order_by + mime_type: order_by + players_aggregate: event_media_players_aggregate_order_by + size: order_by + thumbnail_filename: order_by + title: order_by + uploader: players_order_by + uploader_steam_id: order_by +} + +"""primary key columns input for table: event_media""" +input event_media_pk_columns_input { + id: uuid! +} + +""" +columns and relationships of "event_media_players" +""" +type event_media_players { + created_at: timestamptz! + + """An object relationship""" + media: event_media! + media_id: uuid! + + """An object relationship""" + player: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_media_players" +""" +type event_media_players_aggregate { + aggregate: event_media_players_aggregate_fields + nodes: [event_media_players!]! +} + +input event_media_players_aggregate_bool_exp { + count: event_media_players_aggregate_bool_exp_count +} + +input event_media_players_aggregate_bool_exp_count { + arguments: [event_media_players_select_column!] + distinct: Boolean + filter: event_media_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_media_players" +""" +type event_media_players_aggregate_fields { + avg: event_media_players_avg_fields + count(columns: [event_media_players_select_column!], distinct: Boolean): Int! + max: event_media_players_max_fields + min: event_media_players_min_fields + stddev: event_media_players_stddev_fields + stddev_pop: event_media_players_stddev_pop_fields + stddev_samp: event_media_players_stddev_samp_fields + sum: event_media_players_sum_fields + var_pop: event_media_players_var_pop_fields + var_samp: event_media_players_var_samp_fields + variance: event_media_players_variance_fields +} + +""" +order by aggregate values of table "event_media_players" +""" +input event_media_players_aggregate_order_by { + avg: event_media_players_avg_order_by + count: order_by + max: event_media_players_max_order_by + min: event_media_players_min_order_by + stddev: event_media_players_stddev_order_by + stddev_pop: event_media_players_stddev_pop_order_by + stddev_samp: event_media_players_stddev_samp_order_by + sum: event_media_players_sum_order_by + var_pop: event_media_players_var_pop_order_by + var_samp: event_media_players_var_samp_order_by + variance: event_media_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_media_players" +""" +input event_media_players_arr_rel_insert_input { + data: [event_media_players_insert_input!]! + + """upsert condition""" + on_conflict: event_media_players_on_conflict +} + +"""aggregate avg on columns""" +type event_media_players_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_media_players" +""" +input event_media_players_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_media_players". All fields are combined with a logical 'AND'. +""" +input event_media_players_bool_exp { + _and: [event_media_players_bool_exp!] + _not: event_media_players_bool_exp + _or: [event_media_players_bool_exp!] + created_at: timestamptz_comparison_exp + media: event_media_bool_exp + media_id: uuid_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_media_players" +""" +enum event_media_players_constraint { + """ + unique or primary key constraint on columns "steam_id", "media_id" + """ + event_media_players_pkey +} + +""" +input type for incrementing numeric columns in table "event_media_players" +""" +input event_media_players_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_media_players" +""" +input event_media_players_insert_input { + created_at: timestamptz + media: event_media_obj_rel_insert_input + media_id: uuid + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_media_players_max_fields { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_media_players" +""" +input event_media_players_max_order_by { + created_at: order_by + media_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_media_players_min_fields { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_media_players" +""" +input event_media_players_min_order_by { + created_at: order_by + media_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_media_players" +""" +type event_media_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_media_players!]! +} + +""" +on_conflict condition type for table "event_media_players" +""" +input event_media_players_on_conflict { + constraint: event_media_players_constraint! + update_columns: [event_media_players_update_column!]! = [] + where: event_media_players_bool_exp +} + +"""Ordering options when selecting data from "event_media_players".""" +input event_media_players_order_by { + created_at: order_by + media: event_media_order_by + media_id: order_by + player: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_media_players""" +input event_media_players_pk_columns_input { + media_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_media_players" +""" +enum event_media_players_select_column { + """column name""" + created_at + + """column name""" + media_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_media_players" +""" +input event_media_players_set_input { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_media_players_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_media_players" +""" +input event_media_players_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_media_players_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_media_players" +""" +input event_media_players_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_media_players_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_media_players" +""" +input event_media_players_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_media_players" +""" +input event_media_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_media_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_media_players_stream_cursor_value_input { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_media_players_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_media_players" +""" +input event_media_players_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_media_players" +""" +enum event_media_players_update_column { + """column name""" + created_at + + """column name""" + media_id + + """column name""" + steam_id +} + +input event_media_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + + """filter the rows which have to be updated""" + where: event_media_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_media_players_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_media_players" +""" +input event_media_players_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_media_players_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_media_players" +""" +input event_media_players_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_media_players_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_media_players" +""" +input event_media_players_variance_order_by { + steam_id: order_by +} + +""" +select columns of table "event_media" +""" +enum event_media_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + external_url + + """column name""" + filename + + """column name""" + id + + """column name""" + mime_type + + """column name""" + size + + """column name""" + thumbnail_filename + + """column name""" + title + + """column name""" + uploader_steam_id +} + +""" +input type for updating data in table "event_media" +""" +input event_media_set_input { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_media_stddev_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev() on columns of table "event_media" +""" +input event_media_stddev_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_media_stddev_pop_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_media" +""" +input event_media_stddev_pop_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_media_stddev_samp_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_media" +""" +input event_media_stddev_samp_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +Streaming cursor of the table "event_media" +""" +input event_media_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_media_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_media_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + external_url: String + filename: String + id: uuid + mime_type: String + size: bigint + thumbnail_filename: String + title: String + uploader_steam_id: bigint +} + +"""aggregate sum on columns""" +type event_media_sum_fields { + size: bigint + uploader_steam_id: bigint +} + +""" +order by sum() on columns of table "event_media" +""" +input event_media_sum_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +update columns of table "event_media" +""" +enum event_media_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + external_url + + """column name""" + filename + + """column name""" + id + + """column name""" + mime_type + + """column name""" + size + + """column name""" + thumbnail_filename + + """column name""" + title + + """column name""" + uploader_steam_id +} + +input event_media_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + + """filter the rows which have to be updated""" + where: event_media_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_media_var_pop_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by var_pop() on columns of table "event_media" +""" +input event_media_var_pop_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_media_var_samp_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by var_samp() on columns of table "event_media" +""" +input event_media_var_samp_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate variance on columns""" +type event_media_variance_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by variance() on columns of table "event_media" +""" +input event_media_variance_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +columns and relationships of "event_organizers" +""" +type event_organizers { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + organizer: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_organizers" +""" +type event_organizers_aggregate { + aggregate: event_organizers_aggregate_fields + nodes: [event_organizers!]! +} + +input event_organizers_aggregate_bool_exp { + count: event_organizers_aggregate_bool_exp_count +} + +input event_organizers_aggregate_bool_exp_count { + arguments: [event_organizers_select_column!] + distinct: Boolean + filter: event_organizers_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_organizers" +""" +type event_organizers_aggregate_fields { + avg: event_organizers_avg_fields + count(columns: [event_organizers_select_column!], distinct: Boolean): Int! + max: event_organizers_max_fields + min: event_organizers_min_fields + stddev: event_organizers_stddev_fields + stddev_pop: event_organizers_stddev_pop_fields + stddev_samp: event_organizers_stddev_samp_fields + sum: event_organizers_sum_fields + var_pop: event_organizers_var_pop_fields + var_samp: event_organizers_var_samp_fields + variance: event_organizers_variance_fields +} + +""" +order by aggregate values of table "event_organizers" +""" +input event_organizers_aggregate_order_by { + avg: event_organizers_avg_order_by + count: order_by + max: event_organizers_max_order_by + min: event_organizers_min_order_by + stddev: event_organizers_stddev_order_by + stddev_pop: event_organizers_stddev_pop_order_by + stddev_samp: event_organizers_stddev_samp_order_by + sum: event_organizers_sum_order_by + var_pop: event_organizers_var_pop_order_by + var_samp: event_organizers_var_samp_order_by + variance: event_organizers_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_organizers" +""" +input event_organizers_arr_rel_insert_input { + data: [event_organizers_insert_input!]! + + """upsert condition""" + on_conflict: event_organizers_on_conflict +} + +"""aggregate avg on columns""" +type event_organizers_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_organizers" +""" +input event_organizers_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_organizers". All fields are combined with a logical 'AND'. +""" +input event_organizers_bool_exp { + _and: [event_organizers_bool_exp!] + _not: event_organizers_bool_exp + _or: [event_organizers_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + organizer: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_organizers" +""" +enum event_organizers_constraint { + """ + unique or primary key constraint on columns "steam_id", "event_id" + """ + event_organizers_pkey +} + +""" +input type for incrementing numeric columns in table "event_organizers" +""" +input event_organizers_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_organizers" +""" +input event_organizers_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + organizer: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_organizers_max_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_organizers" +""" +input event_organizers_max_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_organizers_min_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_organizers" +""" +input event_organizers_min_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_organizers" +""" +type event_organizers_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_organizers!]! +} + +""" +on_conflict condition type for table "event_organizers" +""" +input event_organizers_on_conflict { + constraint: event_organizers_constraint! + update_columns: [event_organizers_update_column!]! = [] + where: event_organizers_bool_exp +} + +"""Ordering options when selecting data from "event_organizers".""" +input event_organizers_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + organizer: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_organizers""" +input event_organizers_pk_columns_input { + event_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_organizers" +""" +enum event_organizers_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_organizers" +""" +input event_organizers_set_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_organizers_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_organizers" +""" +input event_organizers_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_organizers_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_organizers" +""" +input event_organizers_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_organizers_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_organizers" +""" +input event_organizers_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_organizers" +""" +input event_organizers_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_organizers_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_organizers_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_organizers_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_organizers" +""" +input event_organizers_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_organizers" +""" +enum event_organizers_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +input event_organizers_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + + """filter the rows which have to be updated""" + where: event_organizers_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_organizers_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_organizers" +""" +input event_organizers_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_organizers_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_organizers" +""" +input event_organizers_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_organizers_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_organizers" +""" +input event_organizers_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "event_players" +""" +type event_players { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + player: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_players" +""" +type event_players_aggregate { + aggregate: event_players_aggregate_fields + nodes: [event_players!]! +} + +input event_players_aggregate_bool_exp { + count: event_players_aggregate_bool_exp_count +} + +input event_players_aggregate_bool_exp_count { + arguments: [event_players_select_column!] + distinct: Boolean + filter: event_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_players" +""" +type event_players_aggregate_fields { + avg: event_players_avg_fields + count(columns: [event_players_select_column!], distinct: Boolean): Int! + max: event_players_max_fields + min: event_players_min_fields + stddev: event_players_stddev_fields + stddev_pop: event_players_stddev_pop_fields + stddev_samp: event_players_stddev_samp_fields + sum: event_players_sum_fields + var_pop: event_players_var_pop_fields + var_samp: event_players_var_samp_fields + variance: event_players_variance_fields +} + +""" +order by aggregate values of table "event_players" +""" +input event_players_aggregate_order_by { + avg: event_players_avg_order_by + count: order_by + max: event_players_max_order_by + min: event_players_min_order_by + stddev: event_players_stddev_order_by + stddev_pop: event_players_stddev_pop_order_by + stddev_samp: event_players_stddev_samp_order_by + sum: event_players_sum_order_by + var_pop: event_players_var_pop_order_by + var_samp: event_players_var_samp_order_by + variance: event_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_players" +""" +input event_players_arr_rel_insert_input { + data: [event_players_insert_input!]! + + """upsert condition""" + on_conflict: event_players_on_conflict +} + +"""aggregate avg on columns""" +type event_players_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_players" +""" +input event_players_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_players". All fields are combined with a logical 'AND'. +""" +input event_players_bool_exp { + _and: [event_players_bool_exp!] + _not: event_players_bool_exp + _or: [event_players_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_players" +""" +enum event_players_constraint { + """ + unique or primary key constraint on columns "steam_id", "event_id" + """ + event_players_pkey +} + +""" +input type for incrementing numeric columns in table "event_players" +""" +input event_players_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_players" +""" +input event_players_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_players_max_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_players" +""" +input event_players_max_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_players_min_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_players" +""" +input event_players_min_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_players" +""" +type event_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_players!]! +} + +""" +on_conflict condition type for table "event_players" +""" +input event_players_on_conflict { + constraint: event_players_constraint! + update_columns: [event_players_update_column!]! = [] + where: event_players_bool_exp +} + +"""Ordering options when selecting data from "event_players".""" +input event_players_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + player: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_players""" +input event_players_pk_columns_input { + event_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_players" +""" +enum event_players_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_players" +""" +input event_players_set_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_players_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_players" +""" +input event_players_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_players_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_players" +""" +input event_players_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_players_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_players" +""" +input event_players_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_players" +""" +input event_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_players_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_players_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_players" +""" +input event_players_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_players" +""" +enum event_players_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +input event_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + + """filter the rows which have to be updated""" + where: event_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_players_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_players" +""" +input event_players_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_players_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_players" +""" +input event_players_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_players_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_players" +""" +input event_players_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "event_teams" +""" +type event_teams { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + team: teams! + team_id: uuid! +} + +""" +aggregated selection of "event_teams" +""" +type event_teams_aggregate { + aggregate: event_teams_aggregate_fields + nodes: [event_teams!]! +} + +input event_teams_aggregate_bool_exp { + count: event_teams_aggregate_bool_exp_count +} + +input event_teams_aggregate_bool_exp_count { + arguments: [event_teams_select_column!] + distinct: Boolean + filter: event_teams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_teams" +""" +type event_teams_aggregate_fields { + count(columns: [event_teams_select_column!], distinct: Boolean): Int! + max: event_teams_max_fields + min: event_teams_min_fields +} + +""" +order by aggregate values of table "event_teams" +""" +input event_teams_aggregate_order_by { + count: order_by + max: event_teams_max_order_by + min: event_teams_min_order_by +} + +""" +input type for inserting array relation for remote table "event_teams" +""" +input event_teams_arr_rel_insert_input { + data: [event_teams_insert_input!]! + + """upsert condition""" + on_conflict: event_teams_on_conflict +} + +""" +Boolean expression to filter rows from the table "event_teams". All fields are combined with a logical 'AND'. +""" +input event_teams_bool_exp { + _and: [event_teams_bool_exp!] + _not: event_teams_bool_exp + _or: [event_teams_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_teams" +""" +enum event_teams_constraint { + """ + unique or primary key constraint on columns "event_id", "team_id" + """ + event_teams_pkey +} + +""" +input type for inserting data into table "event_teams" +""" +input event_teams_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type event_teams_max_fields { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +order by max() on columns of table "event_teams" +""" +input event_teams_max_order_by { + created_at: order_by + event_id: order_by + team_id: order_by +} + +"""aggregate min on columns""" +type event_teams_min_fields { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +order by min() on columns of table "event_teams" +""" +input event_teams_min_order_by { + created_at: order_by + event_id: order_by + team_id: order_by +} + +""" +response of any mutation on the table "event_teams" +""" +type event_teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_teams!]! +} + +""" +on_conflict condition type for table "event_teams" +""" +input event_teams_on_conflict { + constraint: event_teams_constraint! + update_columns: [event_teams_update_column!]! = [] + where: event_teams_bool_exp +} + +"""Ordering options when selecting data from "event_teams".""" +input event_teams_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + team: teams_order_by + team_id: order_by +} + +"""primary key columns input for table: event_teams""" +input event_teams_pk_columns_input { + event_id: uuid! + team_id: uuid! +} + +""" +select columns of table "event_teams" +""" +enum event_teams_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + team_id +} + +""" +input type for updating data in table "event_teams" +""" +input event_teams_set_input { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +Streaming cursor of the table "event_teams" +""" +input event_teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_teams_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +update columns of table "event_teams" +""" +enum event_teams_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + team_id +} + +input event_teams_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + + """filter the rows which have to be updated""" + where: event_teams_bool_exp! +} + +""" +columns and relationships of "event_tournaments" +""" +type event_tournaments { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "event_tournaments" +""" +type event_tournaments_aggregate { + aggregate: event_tournaments_aggregate_fields + nodes: [event_tournaments!]! +} + +input event_tournaments_aggregate_bool_exp { + count: event_tournaments_aggregate_bool_exp_count +} + +input event_tournaments_aggregate_bool_exp_count { + arguments: [event_tournaments_select_column!] + distinct: Boolean + filter: event_tournaments_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_tournaments" +""" +type event_tournaments_aggregate_fields { + count(columns: [event_tournaments_select_column!], distinct: Boolean): Int! + max: event_tournaments_max_fields + min: event_tournaments_min_fields +} + +""" +order by aggregate values of table "event_tournaments" +""" +input event_tournaments_aggregate_order_by { + count: order_by + max: event_tournaments_max_order_by + min: event_tournaments_min_order_by +} + +""" +input type for inserting array relation for remote table "event_tournaments" +""" +input event_tournaments_arr_rel_insert_input { + data: [event_tournaments_insert_input!]! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict +} + +""" +Boolean expression to filter rows from the table "event_tournaments". All fields are combined with a logical 'AND'. +""" +input event_tournaments_bool_exp { + _and: [event_tournaments_bool_exp!] + _not: event_tournaments_bool_exp + _or: [event_tournaments_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_tournaments" +""" +enum event_tournaments_constraint { + """ + unique or primary key constraint on columns "tournament_id", "event_id" + """ + event_tournaments_pkey +} + +""" +input type for inserting data into table "event_tournaments" +""" +input event_tournaments_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type event_tournaments_max_fields { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +order by max() on columns of table "event_tournaments" +""" +input event_tournaments_max_order_by { + created_at: order_by + event_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type event_tournaments_min_fields { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +order by min() on columns of table "event_tournaments" +""" +input event_tournaments_min_order_by { + created_at: order_by + event_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "event_tournaments" +""" +type event_tournaments_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_tournaments!]! +} + +""" +on_conflict condition type for table "event_tournaments" +""" +input event_tournaments_on_conflict { + constraint: event_tournaments_constraint! + update_columns: [event_tournaments_update_column!]! = [] + where: event_tournaments_bool_exp +} + +"""Ordering options when selecting data from "event_tournaments".""" +input event_tournaments_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: event_tournaments""" +input event_tournaments_pk_columns_input { + event_id: uuid! + tournament_id: uuid! +} + +""" +select columns of table "event_tournaments" +""" +enum event_tournaments_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "event_tournaments" +""" +input event_tournaments_set_input { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +Streaming cursor of the table "event_tournaments" +""" +input event_tournaments_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_tournaments_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_tournaments_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +update columns of table "event_tournaments" +""" +enum event_tournaments_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + tournament_id +} + +input event_tournaments_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + + """filter the rows which have to be updated""" + where: event_tournaments_bool_exp! +} + +""" +columns and relationships of "events" +""" +type events { + """An object relationship""" + banner: event_media + banner_media_id: uuid + + """ + A computed field, executes function "can_upload_event_media" + """ + can_upload_media: Boolean + + """ + A computed field, executes function "can_view_event" + """ + can_view: Boolean + created_at: timestamptz! + description: String + ends_at: timestamptz + hide_creator_organizer: Boolean! + id: uuid! + + """ + A computed field, executes function "is_event_organizer" + """ + is_organizer: Boolean + + """An array relationship""" + media( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + media_access: e_event_media_access_enum! + + """An aggregate relationship""" + media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + name: String! + + """An object relationship""" + organizer: players! + organizer_steam_id: bigint! + + """An array relationship""" + organizers( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """An aggregate relationship""" + organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """An array relationship""" + player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """An aggregate relationship""" + player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + starts_at: timestamptz + + """An array relationship""" + teams( + """distinct select on columns""" + distinct_on: [event_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! - """column name""" - value -} + """An aggregate relationship""" + teams_aggregate( + """distinct select on columns""" + distinct_on: [event_teams_select_column!] -input e_utility_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_utility_types_set_input + """limit the number of rows returned""" + limit: Int - """filter the rows which have to be updated""" - where: e_utility_types_bool_exp! -} + """skip the first n rows. Use only with order_by""" + offset: Int -""" -columns and relationships of "e_veto_pick_types" -""" -type e_veto_pick_types { - description: String! + """sort the rows by one or more columns""" + order_by: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! """An array relationship""" - match_veto_picks( + tournaments( """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] + distinct_on: [event_tournaments_select_column!] """limit the number of rows returned""" limit: Int @@ -11992,16 +15158,16 @@ type e_veto_pick_types { offset: Int """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] + order_by: [event_tournaments_order_by!] """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): [match_map_veto_picks!]! + where: event_tournaments_bool_exp + ): [event_tournaments!]! """An aggregate relationship""" - match_veto_picks_aggregate( + tournaments_aggregate( """distinct select on columns""" - distinct_on: [match_map_veto_picks_select_column!] + distinct_on: [event_tournaments_select_column!] """limit the number of rows returned""" limit: Int @@ -12010,368 +15176,371 @@ type e_veto_pick_types { offset: Int """sort the rows by one or more columns""" - order_by: [match_map_veto_picks_order_by!] + order_by: [event_tournaments_order_by!] """filter the rows returned""" - where: match_map_veto_picks_bool_exp - ): match_map_veto_picks_aggregate! - value: String! + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + visibility: e_event_visibility_enum! } """ -aggregated selection of "e_veto_pick_types" +aggregated selection of "events" """ -type e_veto_pick_types_aggregate { - aggregate: e_veto_pick_types_aggregate_fields - nodes: [e_veto_pick_types!]! +type events_aggregate { + aggregate: events_aggregate_fields + nodes: [events!]! } """ -aggregate fields of "e_veto_pick_types" +aggregate fields of "events" """ -type e_veto_pick_types_aggregate_fields { - count(columns: [e_veto_pick_types_select_column!], distinct: Boolean): Int! - max: e_veto_pick_types_max_fields - min: e_veto_pick_types_min_fields +type events_aggregate_fields { + avg: events_avg_fields + count(columns: [events_select_column!], distinct: Boolean): Int! + max: events_max_fields + min: events_min_fields + stddev: events_stddev_fields + stddev_pop: events_stddev_pop_fields + stddev_samp: events_stddev_samp_fields + sum: events_sum_fields + var_pop: events_var_pop_fields + var_samp: events_var_samp_fields + variance: events_variance_fields +} + +"""aggregate avg on columns""" +type events_avg_fields { + organizer_steam_id: Float } """ -Boolean expression to filter rows from the table "e_veto_pick_types". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. """ -input e_veto_pick_types_bool_exp { - _and: [e_veto_pick_types_bool_exp!] - _not: e_veto_pick_types_bool_exp - _or: [e_veto_pick_types_bool_exp!] +input events_bool_exp { + _and: [events_bool_exp!] + _not: events_bool_exp + _or: [events_bool_exp!] + banner: event_media_bool_exp + banner_media_id: uuid_comparison_exp + can_upload_media: Boolean_comparison_exp + can_view: Boolean_comparison_exp + created_at: timestamptz_comparison_exp description: String_comparison_exp - match_veto_picks: match_map_veto_picks_bool_exp - match_veto_picks_aggregate: match_map_veto_picks_aggregate_bool_exp - value: String_comparison_exp + ends_at: timestamptz_comparison_exp + hide_creator_organizer: Boolean_comparison_exp + id: uuid_comparison_exp + is_organizer: Boolean_comparison_exp + media: event_media_bool_exp + media_access: e_event_media_access_enum_comparison_exp + media_aggregate: event_media_aggregate_bool_exp + name: String_comparison_exp + organizer: players_bool_exp + organizer_steam_id: bigint_comparison_exp + organizers: event_organizers_bool_exp + organizers_aggregate: event_organizers_aggregate_bool_exp + player_stats: v_event_player_stats_bool_exp + player_stats_aggregate: v_event_player_stats_aggregate_bool_exp + players: event_players_bool_exp + players_aggregate: event_players_aggregate_bool_exp + starts_at: timestamptz_comparison_exp + teams: event_teams_bool_exp + teams_aggregate: event_teams_aggregate_bool_exp + tournaments: event_tournaments_bool_exp + tournaments_aggregate: event_tournaments_aggregate_bool_exp + visibility: e_event_visibility_enum_comparison_exp } """ -unique or primary key constraints on table "e_veto_pick_types" +unique or primary key constraints on table "events" """ -enum e_veto_pick_types_constraint { +enum events_constraint { """ - unique or primary key constraint on columns "value" + unique or primary key constraint on columns "id" """ - e_veto_pick_type_pkey -} - -enum e_veto_pick_types_enum { - """Ban""" - Ban - - """Decider""" - Decider - - """Pick""" - Pick - - """Side""" - Side + events_pkey } """ -Boolean expression to compare columns of type "e_veto_pick_types_enum". All fields are combined with logical 'AND'. +input type for incrementing numeric columns in table "events" """ -input e_veto_pick_types_enum_comparison_exp { - _eq: e_veto_pick_types_enum - _in: [e_veto_pick_types_enum!] - _is_null: Boolean - _neq: e_veto_pick_types_enum - _nin: [e_veto_pick_types_enum!] +input events_inc_input { + organizer_steam_id: bigint } """ -input type for inserting data into table "e_veto_pick_types" +input type for inserting data into table "events" """ -input e_veto_pick_types_insert_input { +input events_insert_input { + banner: event_media_obj_rel_insert_input + banner_media_id: uuid + created_at: timestamptz description: String - match_veto_picks: match_map_veto_picks_arr_rel_insert_input - value: String + ends_at: timestamptz + hide_creator_organizer: Boolean + id: uuid + media: event_media_arr_rel_insert_input + media_access: e_event_media_access_enum + name: String + organizer: players_obj_rel_insert_input + organizer_steam_id: bigint + organizers: event_organizers_arr_rel_insert_input + player_stats: v_event_player_stats_arr_rel_insert_input + players: event_players_arr_rel_insert_input + starts_at: timestamptz + teams: event_teams_arr_rel_insert_input + tournaments: event_tournaments_arr_rel_insert_input + visibility: e_event_visibility_enum } """aggregate max on columns""" -type e_veto_pick_types_max_fields { +type events_max_fields { + banner_media_id: uuid + created_at: timestamptz description: String - value: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz } """aggregate min on columns""" -type e_veto_pick_types_min_fields { +type events_min_fields { + banner_media_id: uuid + created_at: timestamptz description: String - value: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz } """ -response of any mutation on the table "e_veto_pick_types" +response of any mutation on the table "events" """ -type e_veto_pick_types_mutation_response { +type events_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [e_veto_pick_types!]! + returning: [events!]! } """ -on_conflict condition type for table "e_veto_pick_types" +input type for inserting object relation for remote table "events" """ -input e_veto_pick_types_on_conflict { - constraint: e_veto_pick_types_constraint! - update_columns: [e_veto_pick_types_update_column!]! = [] - where: e_veto_pick_types_bool_exp -} - -"""Ordering options when selecting data from "e_veto_pick_types".""" -input e_veto_pick_types_order_by { - description: order_by - match_veto_picks_aggregate: match_map_veto_picks_aggregate_order_by - value: order_by -} +input events_obj_rel_insert_input { + data: events_insert_input! -"""primary key columns input for table: e_veto_pick_types""" -input e_veto_pick_types_pk_columns_input { - value: String! + """upsert condition""" + on_conflict: events_on_conflict } """ -select columns of table "e_veto_pick_types" +on_conflict condition type for table "events" """ -enum e_veto_pick_types_select_column { - """column name""" - description +input events_on_conflict { + constraint: events_constraint! + update_columns: [events_update_column!]! = [] + where: events_bool_exp +} - """column name""" - value +"""Ordering options when selecting data from "events".""" +input events_order_by { + banner: event_media_order_by + banner_media_id: order_by + can_upload_media: order_by + can_view: order_by + created_at: order_by + description: order_by + ends_at: order_by + hide_creator_organizer: order_by + id: order_by + is_organizer: order_by + media_access: order_by + media_aggregate: event_media_aggregate_order_by + name: order_by + organizer: players_order_by + organizer_steam_id: order_by + organizers_aggregate: event_organizers_aggregate_order_by + player_stats_aggregate: v_event_player_stats_aggregate_order_by + players_aggregate: event_players_aggregate_order_by + starts_at: order_by + teams_aggregate: event_teams_aggregate_order_by + tournaments_aggregate: event_tournaments_aggregate_order_by + visibility: order_by } -""" -input type for updating data in table "e_veto_pick_types" -""" -input e_veto_pick_types_set_input { - description: String - value: String +"""primary key columns input for table: events""" +input events_pk_columns_input { + id: uuid! } """ -Streaming cursor of the table "e_veto_pick_types" +select columns of table "events" """ -input e_veto_pick_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_veto_pick_types_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} +enum events_select_column { + """column name""" + banner_media_id -"""Initial value of the column from where the streaming should start""" -input e_veto_pick_types_stream_cursor_value_input { - description: String - value: String -} + """column name""" + created_at -""" -update columns of table "e_veto_pick_types" -""" -enum e_veto_pick_types_update_column { """column name""" description """column name""" - value -} + ends_at -input e_veto_pick_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_veto_pick_types_set_input + """column name""" + hide_creator_organizer - """filter the rows which have to be updated""" - where: e_veto_pick_types_bool_exp! -} + """column name""" + id -""" -columns and relationships of "e_winning_reasons" -""" -type e_winning_reasons { - description: String! - value: String! -} + """column name""" + media_access -""" -aggregated selection of "e_winning_reasons" -""" -type e_winning_reasons_aggregate { - aggregate: e_winning_reasons_aggregate_fields - nodes: [e_winning_reasons!]! -} + """column name""" + name -""" -aggregate fields of "e_winning_reasons" -""" -type e_winning_reasons_aggregate_fields { - count(columns: [e_winning_reasons_select_column!], distinct: Boolean): Int! - max: e_winning_reasons_max_fields - min: e_winning_reasons_min_fields -} + """column name""" + organizer_steam_id -""" -Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. -""" -input e_winning_reasons_bool_exp { - _and: [e_winning_reasons_bool_exp!] - _not: e_winning_reasons_bool_exp - _or: [e_winning_reasons_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp + """column name""" + starts_at + + """column name""" + visibility } """ -unique or primary key constraints on table "e_winning_reasons" +input type for updating data in table "events" """ -enum e_winning_reasons_constraint { - """ - unique or primary key constraint on columns "value" - """ - e_winning_reasons_pkey +input events_set_input { + banner_media_id: uuid + created_at: timestamptz + description: String + ends_at: timestamptz + hide_creator_organizer: Boolean + id: uuid + media_access: e_event_media_access_enum + name: String + organizer_steam_id: bigint + starts_at: timestamptz + visibility: e_event_visibility_enum } -enum e_winning_reasons_enum { - """Bomb Defused""" - BombDefused - - """Bomb Exploded""" - BombExploded - - """CTs Win""" - CTsWin - - """Terrorists Win""" - TerroristsWin - - """Time Ran Out""" - TimeRanOut +"""aggregate stddev on columns""" +type events_stddev_fields { + organizer_steam_id: Float +} - """Unknown""" - Unknown +"""aggregate stddev_pop on columns""" +type events_stddev_pop_fields { + organizer_steam_id: Float } -""" -Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. -""" -input e_winning_reasons_enum_comparison_exp { - _eq: e_winning_reasons_enum - _in: [e_winning_reasons_enum!] - _is_null: Boolean - _neq: e_winning_reasons_enum - _nin: [e_winning_reasons_enum!] +"""aggregate stddev_samp on columns""" +type events_stddev_samp_fields { + organizer_steam_id: Float } """ -input type for inserting data into table "e_winning_reasons" +Streaming cursor of the table "events" """ -input e_winning_reasons_insert_input { - description: String - value: String -} +input events_stream_cursor_input { + """Stream column input with initial value""" + initial_value: events_stream_cursor_value_input! -"""aggregate max on columns""" -type e_winning_reasons_max_fields { - description: String - value: String + """cursor ordering""" + ordering: cursor_ordering } -"""aggregate min on columns""" -type e_winning_reasons_min_fields { +"""Initial value of the column from where the streaming should start""" +input events_stream_cursor_value_input { + banner_media_id: uuid + created_at: timestamptz description: String - value: String + ends_at: timestamptz + hide_creator_organizer: Boolean + id: uuid + media_access: e_event_media_access_enum + name: String + organizer_steam_id: bigint + starts_at: timestamptz + visibility: e_event_visibility_enum } -""" -response of any mutation on the table "e_winning_reasons" -""" -type e_winning_reasons_mutation_response { - """number of rows affected by the mutation""" - affected_rows: Int! - - """data from the rows affected by the mutation""" - returning: [e_winning_reasons!]! +"""aggregate sum on columns""" +type events_sum_fields { + organizer_steam_id: bigint } """ -on_conflict condition type for table "e_winning_reasons" +update columns of table "events" """ -input e_winning_reasons_on_conflict { - constraint: e_winning_reasons_constraint! - update_columns: [e_winning_reasons_update_column!]! = [] - where: e_winning_reasons_bool_exp -} - -"""Ordering options when selecting data from "e_winning_reasons".""" -input e_winning_reasons_order_by { - description: order_by - value: order_by -} +enum events_update_column { + """column name""" + banner_media_id -"""primary key columns input for table: e_winning_reasons""" -input e_winning_reasons_pk_columns_input { - value: String! -} + """column name""" + created_at -""" -select columns of table "e_winning_reasons" -""" -enum e_winning_reasons_select_column { """column name""" description """column name""" - value -} + ends_at -""" -input type for updating data in table "e_winning_reasons" -""" -input e_winning_reasons_set_input { - description: String - value: String -} + """column name""" + hide_creator_organizer -""" -Streaming cursor of the table "e_winning_reasons" -""" -input e_winning_reasons_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_winning_reasons_stream_cursor_value_input! + """column name""" + id - """cursor ordering""" - ordering: cursor_ordering -} + """column name""" + media_access -"""Initial value of the column from where the streaming should start""" -input e_winning_reasons_stream_cursor_value_input { - description: String - value: String -} + """column name""" + name -""" -update columns of table "e_winning_reasons" -""" -enum e_winning_reasons_update_column { """column name""" - description + organizer_steam_id """column name""" - value + starts_at + + """column name""" + visibility } -input e_winning_reasons_updates { +input events_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + """sets the columns of the filtered rows to the given values""" - _set: e_winning_reasons_set_input + _set: events_set_input """filter the rows which have to be updated""" - where: e_winning_reasons_bool_exp! + where: events_bool_exp! +} + +"""aggregate var_pop on columns""" +type events_var_pop_fields { + organizer_steam_id: Float +} + +"""aggregate var_samp on columns""" +type events_var_samp_fields { + organizer_steam_id: Float +} + +"""aggregate variance on columns""" +type events_variance_fields { + organizer_steam_id: Float } scalar float8 @@ -14705,6 +17874,13 @@ type gamedata_signature_validations_variance_fields { build_id: Float } +input get_event_leaderboard_args { + _category: String + _event_id: uuid + _match_type: String + _min_rounds: Int +} + input get_leaderboard_args { _category: String _exclude_tournaments: Boolean @@ -29263,6 +32439,11 @@ type matches { server_error: String server_id: uuid + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + """ A computed field, executes function "get_match_server_region" """ @@ -29549,6 +32730,7 @@ input matches_bool_exp { server: servers_bool_exp server_error: String_comparison_exp server_id: uuid_comparison_exp + server_plugin_runtime: String_comparison_exp server_region: String_comparison_exp server_type: String_comparison_exp source: String_comparison_exp @@ -29715,6 +32897,11 @@ type matches_max_fields { server_error: String server_id: uuid + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + """ A computed field, executes function "get_match_server_region" """ @@ -29823,6 +33010,11 @@ type matches_min_fields { server_error: String server_id: uuid + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + """ A computed field, executes function "get_match_server_region" """ @@ -29964,6 +33156,7 @@ input matches_order_by { server: servers_order_by server_error: order_by server_id: order_by + server_plugin_runtime: order_by server_region: order_by server_type: order_by source: order_by @@ -30841,6 +34034,32 @@ type mutation_root { """ delete_e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ + delete data from the table: "e_event_media_access" + """ + delete_e_event_media_access( + """filter the rows which have to be deleted""" + where: e_event_media_access_bool_exp! + ): e_event_media_access_mutation_response + + """ + delete single row from the table: "e_event_media_access" + """ + delete_e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + delete data from the table: "e_event_visibility" + """ + delete_e_event_visibility( + """filter the rows which have to be deleted""" + where: e_event_visibility_bool_exp! + ): e_event_visibility_mutation_response + + """ + delete single row from the table: "e_event_visibility" + """ + delete_e_event_visibility_by_pk(value: String!): e_event_visibility + """ delete data from the table: "e_friend_status" """ @@ -31270,6 +34489,110 @@ type mutation_root { """ delete_e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + delete data from the table: "event_match_links" + """ + delete_event_match_links( + """filter the rows which have to be deleted""" + where: event_match_links_bool_exp! + ): event_match_links_mutation_response + + """ + delete single row from the table: "event_match_links" + """ + delete_event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + + """ + delete data from the table: "event_media" + """ + delete_event_media( + """filter the rows which have to be deleted""" + where: event_media_bool_exp! + ): event_media_mutation_response + + """ + delete single row from the table: "event_media" + """ + delete_event_media_by_pk(id: uuid!): event_media + + """ + delete data from the table: "event_media_players" + """ + delete_event_media_players( + """filter the rows which have to be deleted""" + where: event_media_players_bool_exp! + ): event_media_players_mutation_response + + """ + delete single row from the table: "event_media_players" + """ + delete_event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + + """ + delete data from the table: "event_organizers" + """ + delete_event_organizers( + """filter the rows which have to be deleted""" + where: event_organizers_bool_exp! + ): event_organizers_mutation_response + + """ + delete single row from the table: "event_organizers" + """ + delete_event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + delete data from the table: "event_players" + """ + delete_event_players( + """filter the rows which have to be deleted""" + where: event_players_bool_exp! + ): event_players_mutation_response + + """ + delete single row from the table: "event_players" + """ + delete_event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + delete data from the table: "event_teams" + """ + delete_event_teams( + """filter the rows which have to be deleted""" + where: event_teams_bool_exp! + ): event_teams_mutation_response + + """ + delete single row from the table: "event_teams" + """ + delete_event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + delete data from the table: "event_tournaments" + """ + delete_event_tournaments( + """filter the rows which have to be deleted""" + where: event_tournaments_bool_exp! + ): event_tournaments_mutation_response + + """ + delete single row from the table: "event_tournaments" + """ + delete_event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + delete data from the table: "events" + """ + delete_events( + """filter the rows which have to be deleted""" + where: events_bool_exp! + ): events_mutation_response + + """ + delete single row from the table: "events" + """ + delete_events_by_pk(id: uuid!): events + """ delete data from the table: "friends" """ @@ -32734,6 +36057,50 @@ type mutation_root { on_conflict: e_draft_game_status_on_conflict ): e_draft_game_status + """ + insert data into the table: "e_event_media_access" + """ + insert_e_event_media_access( + """the rows to be inserted""" + objects: [e_event_media_access_insert_input!]! + + """upsert condition""" + on_conflict: e_event_media_access_on_conflict + ): e_event_media_access_mutation_response + + """ + insert a single row into the table: "e_event_media_access" + """ + insert_e_event_media_access_one( + """the row to be inserted""" + object: e_event_media_access_insert_input! + + """upsert condition""" + on_conflict: e_event_media_access_on_conflict + ): e_event_media_access + + """ + insert data into the table: "e_event_visibility" + """ + insert_e_event_visibility( + """the rows to be inserted""" + objects: [e_event_visibility_insert_input!]! + + """upsert condition""" + on_conflict: e_event_visibility_on_conflict + ): e_event_visibility_mutation_response + + """ + insert a single row into the table: "e_event_visibility" + """ + insert_e_event_visibility_one( + """the row to be inserted""" + object: e_event_visibility_insert_input! + + """upsert condition""" + on_conflict: e_event_visibility_on_conflict + ): e_event_visibility + """ insert data into the table: "e_friend_status" """ @@ -33460,6 +36827,182 @@ type mutation_root { on_conflict: e_winning_reasons_on_conflict ): e_winning_reasons + """ + insert data into the table: "event_match_links" + """ + insert_event_match_links( + """the rows to be inserted""" + objects: [event_match_links_insert_input!]! + + """upsert condition""" + on_conflict: event_match_links_on_conflict + ): event_match_links_mutation_response + + """ + insert a single row into the table: "event_match_links" + """ + insert_event_match_links_one( + """the row to be inserted""" + object: event_match_links_insert_input! + + """upsert condition""" + on_conflict: event_match_links_on_conflict + ): event_match_links + + """ + insert data into the table: "event_media" + """ + insert_event_media( + """the rows to be inserted""" + objects: [event_media_insert_input!]! + + """upsert condition""" + on_conflict: event_media_on_conflict + ): event_media_mutation_response + + """ + insert a single row into the table: "event_media" + """ + insert_event_media_one( + """the row to be inserted""" + object: event_media_insert_input! + + """upsert condition""" + on_conflict: event_media_on_conflict + ): event_media + + """ + insert data into the table: "event_media_players" + """ + insert_event_media_players( + """the rows to be inserted""" + objects: [event_media_players_insert_input!]! + + """upsert condition""" + on_conflict: event_media_players_on_conflict + ): event_media_players_mutation_response + + """ + insert a single row into the table: "event_media_players" + """ + insert_event_media_players_one( + """the row to be inserted""" + object: event_media_players_insert_input! + + """upsert condition""" + on_conflict: event_media_players_on_conflict + ): event_media_players + + """ + insert data into the table: "event_organizers" + """ + insert_event_organizers( + """the rows to be inserted""" + objects: [event_organizers_insert_input!]! + + """upsert condition""" + on_conflict: event_organizers_on_conflict + ): event_organizers_mutation_response + + """ + insert a single row into the table: "event_organizers" + """ + insert_event_organizers_one( + """the row to be inserted""" + object: event_organizers_insert_input! + + """upsert condition""" + on_conflict: event_organizers_on_conflict + ): event_organizers + + """ + insert data into the table: "event_players" + """ + insert_event_players( + """the rows to be inserted""" + objects: [event_players_insert_input!]! + + """upsert condition""" + on_conflict: event_players_on_conflict + ): event_players_mutation_response + + """ + insert a single row into the table: "event_players" + """ + insert_event_players_one( + """the row to be inserted""" + object: event_players_insert_input! + + """upsert condition""" + on_conflict: event_players_on_conflict + ): event_players + + """ + insert data into the table: "event_teams" + """ + insert_event_teams( + """the rows to be inserted""" + objects: [event_teams_insert_input!]! + + """upsert condition""" + on_conflict: event_teams_on_conflict + ): event_teams_mutation_response + + """ + insert a single row into the table: "event_teams" + """ + insert_event_teams_one( + """the row to be inserted""" + object: event_teams_insert_input! + + """upsert condition""" + on_conflict: event_teams_on_conflict + ): event_teams + + """ + insert data into the table: "event_tournaments" + """ + insert_event_tournaments( + """the rows to be inserted""" + objects: [event_tournaments_insert_input!]! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict + ): event_tournaments_mutation_response + + """ + insert a single row into the table: "event_tournaments" + """ + insert_event_tournaments_one( + """the row to be inserted""" + object: event_tournaments_insert_input! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict + ): event_tournaments + + """ + insert data into the table: "events" + """ + insert_events( + """the rows to be inserted""" + objects: [events_insert_input!]! + + """upsert condition""" + on_conflict: events_on_conflict + ): events_mutation_response + + """ + insert a single row into the table: "events" + """ + insert_events_one( + """the row to be inserted""" + object: events_insert_input! + + """upsert condition""" + on_conflict: events_on_conflict + ): events + """ insert data into the table: "friends" """ @@ -36198,6 +39741,62 @@ type mutation_root { updates: [e_draft_game_status_updates!]! ): [e_draft_game_status_mutation_response] + """ + update data of the table: "e_event_media_access" + """ + update_e_event_media_access( + """sets the columns of the filtered rows to the given values""" + _set: e_event_media_access_set_input + + """filter the rows which have to be updated""" + where: e_event_media_access_bool_exp! + ): e_event_media_access_mutation_response + + """ + update single row of the table: "e_event_media_access" + """ + update_e_event_media_access_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_event_media_access_set_input + pk_columns: e_event_media_access_pk_columns_input! + ): e_event_media_access + + """ + update multiples rows of table: "e_event_media_access" + """ + update_e_event_media_access_many( + """updates to execute, in order""" + updates: [e_event_media_access_updates!]! + ): [e_event_media_access_mutation_response] + + """ + update data of the table: "e_event_visibility" + """ + update_e_event_visibility( + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + + """filter the rows which have to be updated""" + where: e_event_visibility_bool_exp! + ): e_event_visibility_mutation_response + + """ + update single row of the table: "e_event_visibility" + """ + update_e_event_visibility_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + pk_columns: e_event_visibility_pk_columns_input! + ): e_event_visibility + + """ + update multiples rows of table: "e_event_visibility" + """ + update_e_event_visibility_many( + """updates to execute, in order""" + updates: [e_event_visibility_updates!]! + ): [e_event_visibility_mutation_response] + """ update data of the table: "e_friend_status" """ @@ -37122,6 +40721,260 @@ type mutation_root { updates: [e_winning_reasons_updates!]! ): [e_winning_reasons_mutation_response] + """ + update data of the table: "event_match_links" + """ + update_event_match_links( + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + + """filter the rows which have to be updated""" + where: event_match_links_bool_exp! + ): event_match_links_mutation_response + + """ + update single row of the table: "event_match_links" + """ + update_event_match_links_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + pk_columns: event_match_links_pk_columns_input! + ): event_match_links + + """ + update multiples rows of table: "event_match_links" + """ + update_event_match_links_many( + """updates to execute, in order""" + updates: [event_match_links_updates!]! + ): [event_match_links_mutation_response] + + """ + update data of the table: "event_media" + """ + update_event_media( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + + """filter the rows which have to be updated""" + where: event_media_bool_exp! + ): event_media_mutation_response + + """ + update single row of the table: "event_media" + """ + update_event_media_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + pk_columns: event_media_pk_columns_input! + ): event_media + + """ + update multiples rows of table: "event_media" + """ + update_event_media_many( + """updates to execute, in order""" + updates: [event_media_updates!]! + ): [event_media_mutation_response] + + """ + update data of the table: "event_media_players" + """ + update_event_media_players( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + + """filter the rows which have to be updated""" + where: event_media_players_bool_exp! + ): event_media_players_mutation_response + + """ + update single row of the table: "event_media_players" + """ + update_event_media_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + pk_columns: event_media_players_pk_columns_input! + ): event_media_players + + """ + update multiples rows of table: "event_media_players" + """ + update_event_media_players_many( + """updates to execute, in order""" + updates: [event_media_players_updates!]! + ): [event_media_players_mutation_response] + + """ + update data of the table: "event_organizers" + """ + update_event_organizers( + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + + """filter the rows which have to be updated""" + where: event_organizers_bool_exp! + ): event_organizers_mutation_response + + """ + update single row of the table: "event_organizers" + """ + update_event_organizers_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + pk_columns: event_organizers_pk_columns_input! + ): event_organizers + + """ + update multiples rows of table: "event_organizers" + """ + update_event_organizers_many( + """updates to execute, in order""" + updates: [event_organizers_updates!]! + ): [event_organizers_mutation_response] + + """ + update data of the table: "event_players" + """ + update_event_players( + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + + """filter the rows which have to be updated""" + where: event_players_bool_exp! + ): event_players_mutation_response + + """ + update single row of the table: "event_players" + """ + update_event_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + pk_columns: event_players_pk_columns_input! + ): event_players + + """ + update multiples rows of table: "event_players" + """ + update_event_players_many( + """updates to execute, in order""" + updates: [event_players_updates!]! + ): [event_players_mutation_response] + + """ + update data of the table: "event_teams" + """ + update_event_teams( + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + + """filter the rows which have to be updated""" + where: event_teams_bool_exp! + ): event_teams_mutation_response + + """ + update single row of the table: "event_teams" + """ + update_event_teams_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + pk_columns: event_teams_pk_columns_input! + ): event_teams + + """ + update multiples rows of table: "event_teams" + """ + update_event_teams_many( + """updates to execute, in order""" + updates: [event_teams_updates!]! + ): [event_teams_mutation_response] + + """ + update data of the table: "event_tournaments" + """ + update_event_tournaments( + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + + """filter the rows which have to be updated""" + where: event_tournaments_bool_exp! + ): event_tournaments_mutation_response + + """ + update single row of the table: "event_tournaments" + """ + update_event_tournaments_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + pk_columns: event_tournaments_pk_columns_input! + ): event_tournaments + + """ + update multiples rows of table: "event_tournaments" + """ + update_event_tournaments_many( + """updates to execute, in order""" + updates: [event_tournaments_updates!]! + ): [event_tournaments_mutation_response] + + """ + update data of the table: "events" + """ + update_events( + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: events_set_input + + """filter the rows which have to be updated""" + where: events_bool_exp! + ): events_mutation_response + + """ + update single row of the table: "events" + """ + update_events_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: events_set_input + pk_columns: events_pk_columns_input! + ): events + + """ + update multiples rows of table: "events" + """ + update_events_many( + """updates to execute, in order""" + updates: [events_updates!]! + ): [events_mutation_response] + """ update data of the table: "friends" """ @@ -62665,6 +66518,96 @@ type query_root { """ e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ + fetch data from the table: "e_event_media_access" + """ + e_event_media_access( + """distinct select on columns""" + distinct_on: [e_event_media_access_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_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch aggregated fields from the table: "e_event_media_access" + """ + e_event_media_access_aggregate( + """distinct select on columns""" + distinct_on: [e_event_media_access_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_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): e_event_media_access_aggregate! + + """ + fetch data from the table: "e_event_media_access" using primary key columns + """ + e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + fetch data from the table: "e_event_visibility" + """ + e_event_visibility( + """distinct select on columns""" + distinct_on: [e_event_visibility_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_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! + + """ + fetch aggregated fields from the table: "e_event_visibility" + """ + e_event_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_event_visibility_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_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): e_event_visibility_aggregate! + + """ + fetch data from the table: "e_event_visibility" using primary key columns + """ + e_event_visibility_by_pk(value: String!): e_event_visibility + """ fetch data from the table: "e_friend_status" """ @@ -64130,6 +68073,358 @@ type query_root { """ e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + fetch data from the table: "event_match_links" + """ + event_match_links( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch aggregated fields from the table: "event_match_links" + """ + event_match_links_aggregate( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): event_match_links_aggregate! + + """ + fetch data from the table: "event_match_links" using primary key columns + """ + event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + + """ + fetch data from the table: "event_media" + """ + event_media( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch aggregated fields from the table: "event_media" + """ + event_media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + + """fetch data from the table: "event_media" using primary key columns""" + event_media_by_pk(id: uuid!): event_media + + """ + fetch data from the table: "event_media_players" + """ + event_media_players( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch aggregated fields from the table: "event_media_players" + """ + event_media_players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + + """ + fetch data from the table: "event_media_players" using primary key columns + """ + event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + + """ + fetch data from the table: "event_organizers" + """ + event_organizers( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch aggregated fields from the table: "event_organizers" + """ + event_organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """ + fetch data from the table: "event_organizers" using primary key columns + """ + event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + fetch data from the table: "event_players" + """ + event_players( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch aggregated fields from the table: "event_players" + """ + event_players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + + """fetch data from the table: "event_players" using primary key columns""" + event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + fetch data from the table: "event_teams" + """ + event_teams( + """distinct select on columns""" + distinct_on: [event_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch aggregated fields from the table: "event_teams" + """ + event_teams_aggregate( + """distinct select on columns""" + distinct_on: [event_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """fetch data from the table: "event_teams" using primary key columns""" + event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + fetch data from the table: "event_tournaments" + """ + event_tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch aggregated fields from the table: "event_tournaments" + """ + event_tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + + """ + fetch data from the table: "event_tournaments" using primary key columns + """ + event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + fetch data from the table: "events" + """ + events( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + + """ + fetch aggregated fields from the table: "events" + """ + events_aggregate( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): events_aggregate! + + """fetch data from the table: "events" using primary key columns""" + events_by_pk(id: uuid!): events + """ fetch data from the table: "friends" """ @@ -64351,6 +68646,56 @@ type query_root { """Get TimescaleDB statistics""" getTimescaleStats: TimescaleStats! + """ + execute function "get_event_leaderboard" which returns "leaderboard_entries" + """ + get_event_leaderboard( + """ + input parameters for function "get_event_leaderboard" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_event_leaderboard_aggregate( + """ + input parameters for function "get_event_leaderboard_aggregate" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + """ execute function "get_leaderboard" which returns "leaderboard_entries" """ @@ -68244,6 +72589,46 @@ type query_root { """fetch data from the table: "tournaments" using primary key columns""" tournaments_by_pk(id: uuid!): tournaments + """ + fetch data from the table: "v_event_player_stats" + """ + v_event_player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """ + fetch aggregated fields from the table: "v_event_player_stats" + """ + v_event_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + """ fetch data from the table: "v_gpu_pool_status" """ @@ -72729,6 +77114,124 @@ type subscription_root { where: e_draft_game_status_bool_exp ): [e_draft_game_status!]! + """ + fetch data from the table: "e_event_media_access" + """ + e_event_media_access( + """distinct select on columns""" + distinct_on: [e_event_media_access_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_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch aggregated fields from the table: "e_event_media_access" + """ + e_event_media_access_aggregate( + """distinct select on columns""" + distinct_on: [e_event_media_access_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_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): e_event_media_access_aggregate! + + """ + fetch data from the table: "e_event_media_access" using primary key columns + """ + e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + fetch data from the table in a streaming manner: "e_event_media_access" + """ + e_event_media_access_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_event_media_access_stream_cursor_input]! + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch data from the table: "e_event_visibility" + """ + e_event_visibility( + """distinct select on columns""" + distinct_on: [e_event_visibility_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_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! + + """ + fetch aggregated fields from the table: "e_event_visibility" + """ + e_event_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_event_visibility_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_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): e_event_visibility_aggregate! + + """ + fetch data from the table: "e_event_visibility" using primary key columns + """ + e_event_visibility_by_pk(value: String!): e_event_visibility + + """ + fetch data from the table in a streaming manner: "e_event_visibility" + """ + e_event_visibility_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_event_visibility_stream_cursor_input]! + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! + """ fetch data from the table: "e_friend_status" """ @@ -74656,6 +79159,470 @@ type subscription_root { where: e_winning_reasons_bool_exp ): [e_winning_reasons!]! + """ + fetch data from the table: "event_match_links" + """ + event_match_links( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch aggregated fields from the table: "event_match_links" + """ + event_match_links_aggregate( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): event_match_links_aggregate! + + """ + fetch data from the table: "event_match_links" using primary key columns + """ + event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + + """ + fetch data from the table in a streaming manner: "event_match_links" + """ + event_match_links_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_match_links_stream_cursor_input]! + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch data from the table: "event_media" + """ + event_media( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch aggregated fields from the table: "event_media" + """ + event_media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + + """fetch data from the table: "event_media" using primary key columns""" + event_media_by_pk(id: uuid!): event_media + + """ + fetch data from the table: "event_media_players" + """ + event_media_players( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch aggregated fields from the table: "event_media_players" + """ + event_media_players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + + """ + fetch data from the table: "event_media_players" using primary key columns + """ + event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + + """ + fetch data from the table in a streaming manner: "event_media_players" + """ + event_media_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_media_players_stream_cursor_input]! + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch data from the table in a streaming manner: "event_media" + """ + event_media_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_media_stream_cursor_input]! + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch data from the table: "event_organizers" + """ + event_organizers( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch aggregated fields from the table: "event_organizers" + """ + event_organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """ + fetch data from the table: "event_organizers" using primary key columns + """ + event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + fetch data from the table in a streaming manner: "event_organizers" + """ + event_organizers_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_organizers_stream_cursor_input]! + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch data from the table: "event_players" + """ + event_players( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch aggregated fields from the table: "event_players" + """ + event_players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + + """fetch data from the table: "event_players" using primary key columns""" + event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + fetch data from the table in a streaming manner: "event_players" + """ + event_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_players_stream_cursor_input]! + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch data from the table: "event_teams" + """ + event_teams( + """distinct select on columns""" + distinct_on: [event_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch aggregated fields from the table: "event_teams" + """ + event_teams_aggregate( + """distinct select on columns""" + distinct_on: [event_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """fetch data from the table: "event_teams" using primary key columns""" + event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + fetch data from the table in a streaming manner: "event_teams" + """ + event_teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_teams_stream_cursor_input]! + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch data from the table: "event_tournaments" + """ + event_tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch aggregated fields from the table: "event_tournaments" + """ + event_tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + + """ + fetch data from the table: "event_tournaments" using primary key columns + """ + event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + fetch data from the table in a streaming manner: "event_tournaments" + """ + event_tournaments_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_tournaments_stream_cursor_input]! + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch data from the table: "events" + """ + events( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + + """ + fetch aggregated fields from the table: "events" + """ + events_aggregate( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): events_aggregate! + + """fetch data from the table: "events" using primary key columns""" + events_by_pk(id: uuid!): events + + """ + fetch data from the table in a streaming manner: "events" + """ + events_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [events_stream_cursor_input]! + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + """ fetch data from the table: "friends" """ @@ -74884,6 +79851,56 @@ type subscription_root { where: gamedata_signature_validations_bool_exp ): [gamedata_signature_validations!]! + """ + execute function "get_event_leaderboard" which returns "leaderboard_entries" + """ + get_event_leaderboard( + """ + input parameters for function "get_event_leaderboard" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_event_leaderboard_aggregate( + """ + input parameters for function "get_event_leaderboard_aggregate" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + """ execute function "get_leaderboard" which returns "leaderboard_entries" """ @@ -79969,6 +84986,60 @@ type subscription_root { where: tournaments_bool_exp ): [tournaments!]! + """ + fetch data from the table: "v_event_player_stats" + """ + v_event_player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """ + fetch aggregated fields from the table: "v_event_player_stats" + """ + v_event_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + + """ + fetch data from the table in a streaming manner: "v_event_player_stats" + """ + v_event_player_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_event_player_stats_stream_cursor_input]! + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + """ fetch data from the table: "v_gpu_pool_status" """ @@ -92079,6 +97150,621 @@ input uuid_comparison_exp { _nin: [uuid!] } +""" +columns and relationships of "v_event_player_stats" +""" +type v_event_player_stats { + assists: Int + deaths: Int + + """An object relationship""" + event: events + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + + """An object relationship""" + player: players + player_steam_id: bigint +} + +""" +aggregated selection of "v_event_player_stats" +""" +type v_event_player_stats_aggregate { + aggregate: v_event_player_stats_aggregate_fields + nodes: [v_event_player_stats!]! +} + +input v_event_player_stats_aggregate_bool_exp { + avg: v_event_player_stats_aggregate_bool_exp_avg + corr: v_event_player_stats_aggregate_bool_exp_corr + count: v_event_player_stats_aggregate_bool_exp_count + covar_samp: v_event_player_stats_aggregate_bool_exp_covar_samp + max: v_event_player_stats_aggregate_bool_exp_max + min: v_event_player_stats_aggregate_bool_exp_min + stddev_samp: v_event_player_stats_aggregate_bool_exp_stddev_samp + sum: v_event_player_stats_aggregate_bool_exp_sum + var_samp: v_event_player_stats_aggregate_bool_exp_var_samp +} + +input v_event_player_stats_aggregate_bool_exp_avg { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_corr { + arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_corr_arguments { + X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! + Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! +} + +input v_event_player_stats_aggregate_bool_exp_count { + arguments: [v_event_player_stats_select_column!] + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: Int_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_covar_samp { + arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_covar_samp_arguments { + X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_event_player_stats_aggregate_bool_exp_max { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_min { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_stddev_samp { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_sum { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_var_samp { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_event_player_stats" +""" +type v_event_player_stats_aggregate_fields { + avg: v_event_player_stats_avg_fields + count(columns: [v_event_player_stats_select_column!], distinct: Boolean): Int! + max: v_event_player_stats_max_fields + min: v_event_player_stats_min_fields + stddev: v_event_player_stats_stddev_fields + stddev_pop: v_event_player_stats_stddev_pop_fields + stddev_samp: v_event_player_stats_stddev_samp_fields + sum: v_event_player_stats_sum_fields + var_pop: v_event_player_stats_var_pop_fields + var_samp: v_event_player_stats_var_samp_fields + variance: v_event_player_stats_variance_fields +} + +""" +order by aggregate values of table "v_event_player_stats" +""" +input v_event_player_stats_aggregate_order_by { + avg: v_event_player_stats_avg_order_by + count: order_by + max: v_event_player_stats_max_order_by + min: v_event_player_stats_min_order_by + stddev: v_event_player_stats_stddev_order_by + stddev_pop: v_event_player_stats_stddev_pop_order_by + stddev_samp: v_event_player_stats_stddev_samp_order_by + sum: v_event_player_stats_sum_order_by + var_pop: v_event_player_stats_var_pop_order_by + var_samp: v_event_player_stats_var_samp_order_by + variance: v_event_player_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_event_player_stats" +""" +input v_event_player_stats_arr_rel_insert_input { + data: [v_event_player_stats_insert_input!]! +} + +"""aggregate avg on columns""" +type v_event_player_stats_avg_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_avg_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. +""" +input v_event_player_stats_bool_exp { + _and: [v_event_player_stats_bool_exp!] + _not: v_event_player_stats_bool_exp + _or: [v_event_player_stats_bool_exp!] + assists: Int_comparison_exp + deaths: Int_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + headshot_percentage: float8_comparison_exp + headshots: Int_comparison_exp + kdr: float8_comparison_exp + kills: Int_comparison_exp + matches_played: Int_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp +} + +""" +input type for inserting data into table "v_event_player_stats" +""" +input v_event_player_stats_insert_input { + assists: Int + deaths: Int + event: events_obj_rel_insert_input + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player: players_obj_rel_insert_input + player_steam_id: bigint +} + +"""aggregate max on columns""" +type v_event_player_stats_max_fields { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by max() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_max_order_by { + assists: order_by + deaths: order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate min on columns""" +type v_event_player_stats_min_fields { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by min() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_min_order_by { + assists: order_by + deaths: order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""Ordering options when selecting data from "v_event_player_stats".""" +input v_event_player_stats_order_by { + assists: order_by + deaths: order_by + event: events_order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player: players_order_by + player_steam_id: order_by +} + +""" +select columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + event_id + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kdr + + """column name""" + kills + + """column name""" + matches_played + + """column name""" + player_steam_id +} + +""" +select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +"""aggregate stddev on columns""" +type v_event_player_stats_stddev_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type v_event_player_stats_stddev_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type v_event_player_stats_stddev_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "v_event_player_stats" +""" +input v_event_player_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_event_player_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_event_player_stats_stream_cursor_value_input { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +"""aggregate sum on columns""" +type v_event_player_stats_sum_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by sum() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_sum_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_pop on columns""" +type v_event_player_stats_var_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_var_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type v_event_player_stats_var_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_var_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type v_event_player_stats_variance_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_variance_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + """ columns and relationships of "v_gpu_pool_status" """ diff --git a/generated/schema.ts b/generated/schema.ts index 118e445a3..bf5c679e8 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -2380,6 +2380,136 @@ export type e_draft_game_status_select_column = 'description' | 'value' export type e_draft_game_status_update_column = 'description' | 'value' +/** columns and relationships of "e_event_media_access" */ +export interface e_event_media_access { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_event_media_access' +} + + +/** aggregated selection of "e_event_media_access" */ +export interface e_event_media_access_aggregate { + aggregate: (e_event_media_access_aggregate_fields | null) + nodes: e_event_media_access[] + __typename: 'e_event_media_access_aggregate' +} + + +/** aggregate fields of "e_event_media_access" */ +export interface e_event_media_access_aggregate_fields { + count: Scalars['Int'] + max: (e_event_media_access_max_fields | null) + min: (e_event_media_access_min_fields | null) + __typename: 'e_event_media_access_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_event_media_access" */ +export type e_event_media_access_constraint = 'e_event_media_access_pkey' + +export type e_event_media_access_enum = 'Involved' | 'Organizers' + + +/** aggregate max on columns */ +export interface e_event_media_access_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_media_access_max_fields' +} + + +/** aggregate min on columns */ +export interface e_event_media_access_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_media_access_min_fields' +} + + +/** response of any mutation on the table "e_event_media_access" */ +export interface e_event_media_access_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_event_media_access[] + __typename: 'e_event_media_access_mutation_response' +} + + +/** select columns of table "e_event_media_access" */ +export type e_event_media_access_select_column = 'description' | 'value' + + +/** update columns of table "e_event_media_access" */ +export type e_event_media_access_update_column = 'description' | 'value' + + +/** columns and relationships of "e_event_visibility" */ +export interface e_event_visibility { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_event_visibility' +} + + +/** aggregated selection of "e_event_visibility" */ +export interface e_event_visibility_aggregate { + aggregate: (e_event_visibility_aggregate_fields | null) + nodes: e_event_visibility[] + __typename: 'e_event_visibility_aggregate' +} + + +/** aggregate fields of "e_event_visibility" */ +export interface e_event_visibility_aggregate_fields { + count: Scalars['Int'] + max: (e_event_visibility_max_fields | null) + min: (e_event_visibility_min_fields | null) + __typename: 'e_event_visibility_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_event_visibility" */ +export type e_event_visibility_constraint = 'e_event_visibility_pkey' + +export type e_event_visibility_enum = 'Friends' | 'Private' | 'Public' + + +/** aggregate max on columns */ +export interface e_event_visibility_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_visibility_max_fields' +} + + +/** aggregate min on columns */ +export interface e_event_visibility_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_visibility_min_fields' +} + + +/** response of any mutation on the table "e_event_visibility" */ +export interface e_event_visibility_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_event_visibility[] + __typename: 'e_event_visibility_mutation_response' +} + + +/** select columns of table "e_event_visibility" */ +export type e_event_visibility_select_column = 'description' | 'value' + + +/** update columns of table "e_event_visibility" */ +export type e_event_visibility_update_column = 'description' | 'value' + + /** columns and relationships of "e_friend_status" */ export interface e_friend_status { description: Scalars['String'] @@ -4585,5167 +4715,5218 @@ export type e_winning_reasons_select_column = 'description' | 'value' export type e_winning_reasons_update_column = 'description' | 'value' -/** columns and relationships of "friends" */ -export interface friends { +/** columns and relationships of "event_match_links" */ +export interface event_match_links { + created_at: Scalars['timestamptz'] /** An object relationship */ - e_status: e_friend_status - other_player_steam_id: Scalars['bigint'] - player_steam_id: Scalars['bigint'] - status: e_friend_status_enum - __typename: 'friends' + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + __typename: 'event_match_links' } -/** aggregated selection of "friends" */ -export interface friends_aggregate { - aggregate: (friends_aggregate_fields | null) - nodes: friends[] - __typename: 'friends_aggregate' +/** aggregated selection of "event_match_links" */ +export interface event_match_links_aggregate { + aggregate: (event_match_links_aggregate_fields | null) + nodes: event_match_links[] + __typename: 'event_match_links_aggregate' } -/** aggregate fields of "friends" */ -export interface friends_aggregate_fields { - avg: (friends_avg_fields | null) +/** aggregate fields of "event_match_links" */ +export interface event_match_links_aggregate_fields { count: Scalars['Int'] - max: (friends_max_fields | null) - min: (friends_min_fields | null) - stddev: (friends_stddev_fields | null) - stddev_pop: (friends_stddev_pop_fields | null) - stddev_samp: (friends_stddev_samp_fields | null) - sum: (friends_sum_fields | null) - var_pop: (friends_var_pop_fields | null) - var_samp: (friends_var_samp_fields | null) - variance: (friends_variance_fields | null) - __typename: 'friends_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface friends_avg_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_avg_fields' + max: (event_match_links_max_fields | null) + min: (event_match_links_min_fields | null) + __typename: 'event_match_links_aggregate_fields' } -/** unique or primary key constraints on table "friends" */ -export type friends_constraint = 'friends_pkey' | 'friends_player_steam_id_other_player_steam_id_key' +/** unique or primary key constraints on table "event_match_links" */ +export type event_match_links_constraint = 'event_match_links_pkey' /** aggregate max on columns */ -export interface friends_max_fields { - other_player_steam_id: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'friends_max_fields' +export interface event_match_links_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'event_match_links_max_fields' } /** aggregate min on columns */ -export interface friends_min_fields { - other_player_steam_id: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'friends_min_fields' +export interface event_match_links_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'event_match_links_min_fields' } -/** response of any mutation on the table "friends" */ -export interface friends_mutation_response { +/** response of any mutation on the table "event_match_links" */ +export interface event_match_links_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: friends[] - __typename: 'friends_mutation_response' + returning: event_match_links[] + __typename: 'event_match_links_mutation_response' } -/** select columns of table "friends" */ -export type friends_select_column = 'other_player_steam_id' | 'player_steam_id' | 'status' +/** select columns of table "event_match_links" */ +export type event_match_links_select_column = 'created_at' | 'event_id' | 'match_id' -/** aggregate stddev on columns */ -export interface friends_stddev_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_stddev_fields' +/** update columns of table "event_match_links" */ +export type event_match_links_update_column = 'created_at' | 'event_id' | 'match_id' + + +/** columns and relationships of "event_media" */ +export interface event_media { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + external_url: (Scalars['String'] | null) + filename: (Scalars['String'] | null) + id: Scalars['uuid'] + mime_type: (Scalars['String'] | null) + /** An array relationship */ + players: event_media_players[] + /** An aggregate relationship */ + players_aggregate: event_media_players_aggregate + size: Scalars['bigint'] + thumbnail_filename: (Scalars['String'] | null) + title: (Scalars['String'] | null) + /** An object relationship */ + uploader: players + uploader_steam_id: Scalars['bigint'] + __typename: 'event_media' } -/** aggregate stddev_pop on columns */ -export interface friends_stddev_pop_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_stddev_pop_fields' +/** aggregated selection of "event_media" */ +export interface event_media_aggregate { + aggregate: (event_media_aggregate_fields | null) + nodes: event_media[] + __typename: 'event_media_aggregate' } -/** aggregate stddev_samp on columns */ -export interface friends_stddev_samp_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_stddev_samp_fields' +/** aggregate fields of "event_media" */ +export interface event_media_aggregate_fields { + avg: (event_media_avg_fields | null) + count: Scalars['Int'] + max: (event_media_max_fields | null) + min: (event_media_min_fields | null) + stddev: (event_media_stddev_fields | null) + stddev_pop: (event_media_stddev_pop_fields | null) + stddev_samp: (event_media_stddev_samp_fields | null) + sum: (event_media_sum_fields | null) + var_pop: (event_media_var_pop_fields | null) + var_samp: (event_media_var_samp_fields | null) + variance: (event_media_variance_fields | null) + __typename: 'event_media_aggregate_fields' } -/** aggregate sum on columns */ -export interface friends_sum_fields { - other_player_steam_id: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'friends_sum_fields' +/** aggregate avg on columns */ +export interface event_media_avg_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_avg_fields' } -/** update columns of table "friends" */ -export type friends_update_column = 'other_player_steam_id' | 'player_steam_id' | 'status' +/** unique or primary key constraints on table "event_media" */ +export type event_media_constraint = 'event_media_event_id_filename_key' | 'event_media_pkey' -/** aggregate var_pop on columns */ -export interface friends_var_pop_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_var_pop_fields' +/** aggregate max on columns */ +export interface event_media_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + external_url: (Scalars['String'] | null) + filename: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + mime_type: (Scalars['String'] | null) + size: (Scalars['bigint'] | null) + thumbnail_filename: (Scalars['String'] | null) + title: (Scalars['String'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_max_fields' } -/** aggregate var_samp on columns */ -export interface friends_var_samp_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_var_samp_fields' +/** aggregate min on columns */ +export interface event_media_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + external_url: (Scalars['String'] | null) + filename: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + mime_type: (Scalars['String'] | null) + size: (Scalars['bigint'] | null) + thumbnail_filename: (Scalars['String'] | null) + title: (Scalars['String'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_min_fields' } -/** aggregate variance on columns */ -export interface friends_variance_fields { - other_player_steam_id: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'friends_variance_fields' +/** response of any mutation on the table "event_media" */ +export interface event_media_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_media[] + __typename: 'event_media_mutation_response' } -/** columns and relationships of "game_server_nodes" */ -export interface game_server_nodes { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Int'] | null) - cpu_cores_per_socket: (Scalars['Int'] | null) - cpu_frequency_info: (Scalars['jsonb'] | null) - cpu_governor_info: (Scalars['jsonb'] | null) - cpu_sockets: (Scalars['Int'] | null) - cpu_threads_per_core: (Scalars['Int'] | null) - cs2_launch_options: Scalars['jsonb'] - cs2_video_settings: Scalars['jsonb'] - csgo_build_id: (Scalars['Int'] | null) - demo_network_limiter: (Scalars['Int'] | null) - disk_available_gb: (Scalars['Int'] | null) - disk_used_percent: (Scalars['Int'] | null) - /** An object relationship */ - e_region: (server_regions | null) - /** An object relationship */ - e_status: (e_game_server_node_statuses | null) - enabled: Scalars['Boolean'] - enabled_for_match_making: Scalars['Boolean'] - end_port_range: (Scalars['Int'] | null) - gpu: Scalars['Boolean'] - gpu_demos_enabled: Scalars['Boolean'] - gpu_info: (Scalars['jsonb'] | null) - gpu_rendering_enabled: Scalars['Boolean'] - gpu_streaming_enabled: Scalars['Boolean'] - id: Scalars['String'] - label: (Scalars['String'] | null) - lan_ip: (Scalars['inet'] | null) - node_ip: (Scalars['inet'] | null) - offline_at: (Scalars['timestamptz'] | null) - pin_build_id: (Scalars['Int'] | null) - pin_plugin_runtime: (Scalars['String'] | null) - pin_plugin_version: (Scalars['String'] | null) +/** columns and relationships of "event_media_players" */ +export interface event_media_players { + created_at: Scalars['timestamptz'] /** An object relationship */ - pinned_version: (game_versions | null) - /** A computed field, executes function "game_server_node_plugin_supported" */ - plugin_supported: (Scalars['Boolean'] | null) - public_ip: (Scalars['inet'] | null) - region: (Scalars['String'] | null) - /** An array relationship */ - servers: servers[] - /** An aggregate relationship */ - servers_aggregate: servers_aggregate - shader_bake_progress: (Scalars['numeric'] | null) - shader_bake_progress_stage: (Scalars['String'] | null) - shader_bake_status: (Scalars['String'] | null) - shader_bake_status_history: Scalars['jsonb'] - start_port_range: (Scalars['Int'] | null) - status: (e_game_server_node_statuses_enum | null) - supports_cpu_pinning: Scalars['Boolean'] - supports_low_latency: Scalars['Boolean'] - token: (Scalars['String'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - update_status: (Scalars['String'] | null) + media: event_media + media_id: Scalars['uuid'] /** An object relationship */ - version: (game_versions | null) - __typename: 'game_server_nodes' + player: players + steam_id: Scalars['bigint'] + __typename: 'event_media_players' } -/** aggregated selection of "game_server_nodes" */ -export interface game_server_nodes_aggregate { - aggregate: (game_server_nodes_aggregate_fields | null) - nodes: game_server_nodes[] - __typename: 'game_server_nodes_aggregate' +/** aggregated selection of "event_media_players" */ +export interface event_media_players_aggregate { + aggregate: (event_media_players_aggregate_fields | null) + nodes: event_media_players[] + __typename: 'event_media_players_aggregate' } -/** aggregate fields of "game_server_nodes" */ -export interface game_server_nodes_aggregate_fields { - avg: (game_server_nodes_avg_fields | null) +/** aggregate fields of "event_media_players" */ +export interface event_media_players_aggregate_fields { + avg: (event_media_players_avg_fields | null) count: Scalars['Int'] - max: (game_server_nodes_max_fields | null) - min: (game_server_nodes_min_fields | null) - stddev: (game_server_nodes_stddev_fields | null) - stddev_pop: (game_server_nodes_stddev_pop_fields | null) - stddev_samp: (game_server_nodes_stddev_samp_fields | null) - sum: (game_server_nodes_sum_fields | null) - var_pop: (game_server_nodes_var_pop_fields | null) - var_samp: (game_server_nodes_var_samp_fields | null) - variance: (game_server_nodes_variance_fields | null) - __typename: 'game_server_nodes_aggregate_fields' + max: (event_media_players_max_fields | null) + min: (event_media_players_min_fields | null) + stddev: (event_media_players_stddev_fields | null) + stddev_pop: (event_media_players_stddev_pop_fields | null) + stddev_samp: (event_media_players_stddev_samp_fields | null) + sum: (event_media_players_sum_fields | null) + var_pop: (event_media_players_var_pop_fields | null) + var_samp: (event_media_players_var_samp_fields | null) + variance: (event_media_players_variance_fields | null) + __typename: 'event_media_players_aggregate_fields' } /** aggregate avg on columns */ -export interface game_server_nodes_avg_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Float'] | null) - cpu_cores_per_socket: (Scalars['Float'] | null) - cpu_sockets: (Scalars['Float'] | null) - cpu_threads_per_core: (Scalars['Float'] | null) - csgo_build_id: (Scalars['Float'] | null) - demo_network_limiter: (Scalars['Float'] | null) - disk_available_gb: (Scalars['Float'] | null) - disk_used_percent: (Scalars['Float'] | null) - end_port_range: (Scalars['Float'] | null) - pin_build_id: (Scalars['Float'] | null) - shader_bake_progress: (Scalars['Float'] | null) - start_port_range: (Scalars['Float'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_avg_fields' +export interface event_media_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_avg_fields' } -/** unique or primary key constraints on table "game_server_nodes" */ -export type game_server_nodes_constraint = 'game_server_nodes_pkey' +/** unique or primary key constraints on table "event_media_players" */ +export type event_media_players_constraint = 'event_media_players_pkey' /** aggregate max on columns */ -export interface game_server_nodes_max_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Int'] | null) - cpu_cores_per_socket: (Scalars['Int'] | null) - cpu_sockets: (Scalars['Int'] | null) - cpu_threads_per_core: (Scalars['Int'] | null) - csgo_build_id: (Scalars['Int'] | null) - demo_network_limiter: (Scalars['Int'] | null) - disk_available_gb: (Scalars['Int'] | null) - disk_used_percent: (Scalars['Int'] | null) - end_port_range: (Scalars['Int'] | null) - id: (Scalars['String'] | null) - label: (Scalars['String'] | null) - offline_at: (Scalars['timestamptz'] | null) - pin_build_id: (Scalars['Int'] | null) - pin_plugin_runtime: (Scalars['String'] | null) - pin_plugin_version: (Scalars['String'] | null) - region: (Scalars['String'] | null) - shader_bake_progress: (Scalars['numeric'] | null) - shader_bake_progress_stage: (Scalars['String'] | null) - shader_bake_status: (Scalars['String'] | null) - start_port_range: (Scalars['Int'] | null) - token: (Scalars['String'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - update_status: (Scalars['String'] | null) - __typename: 'game_server_nodes_max_fields' +export interface event_media_players_max_fields { + created_at: (Scalars['timestamptz'] | null) + media_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_max_fields' } /** aggregate min on columns */ -export interface game_server_nodes_min_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Int'] | null) - cpu_cores_per_socket: (Scalars['Int'] | null) - cpu_sockets: (Scalars['Int'] | null) - cpu_threads_per_core: (Scalars['Int'] | null) - csgo_build_id: (Scalars['Int'] | null) - demo_network_limiter: (Scalars['Int'] | null) - disk_available_gb: (Scalars['Int'] | null) - disk_used_percent: (Scalars['Int'] | null) - end_port_range: (Scalars['Int'] | null) - id: (Scalars['String'] | null) - label: (Scalars['String'] | null) - offline_at: (Scalars['timestamptz'] | null) - pin_build_id: (Scalars['Int'] | null) - pin_plugin_runtime: (Scalars['String'] | null) - pin_plugin_version: (Scalars['String'] | null) - region: (Scalars['String'] | null) - shader_bake_progress: (Scalars['numeric'] | null) - shader_bake_progress_stage: (Scalars['String'] | null) - shader_bake_status: (Scalars['String'] | null) - start_port_range: (Scalars['Int'] | null) - token: (Scalars['String'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - update_status: (Scalars['String'] | null) - __typename: 'game_server_nodes_min_fields' +export interface event_media_players_min_fields { + created_at: (Scalars['timestamptz'] | null) + media_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_min_fields' } -/** response of any mutation on the table "game_server_nodes" */ -export interface game_server_nodes_mutation_response { +/** response of any mutation on the table "event_media_players" */ +export interface event_media_players_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: game_server_nodes[] - __typename: 'game_server_nodes_mutation_response' + returning: event_media_players[] + __typename: 'event_media_players_mutation_response' } -/** select columns of table "game_server_nodes" */ -export type game_server_nodes_select_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' - - -/** select "game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_nodes" */ -export type game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns = 'enabled' | 'enabled_for_match_making' | 'gpu' | 'gpu_demos_enabled' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'supports_cpu_pinning' | 'supports_low_latency' - - -/** select "game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_server_nodes" */ -export type game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns = 'enabled' | 'enabled_for_match_making' | 'gpu' | 'gpu_demos_enabled' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'supports_cpu_pinning' | 'supports_low_latency' +/** select columns of table "event_media_players" */ +export type event_media_players_select_column = 'created_at' | 'media_id' | 'steam_id' /** aggregate stddev on columns */ -export interface game_server_nodes_stddev_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Float'] | null) - cpu_cores_per_socket: (Scalars['Float'] | null) - cpu_sockets: (Scalars['Float'] | null) - cpu_threads_per_core: (Scalars['Float'] | null) - csgo_build_id: (Scalars['Float'] | null) - demo_network_limiter: (Scalars['Float'] | null) - disk_available_gb: (Scalars['Float'] | null) - disk_used_percent: (Scalars['Float'] | null) - end_port_range: (Scalars['Float'] | null) - pin_build_id: (Scalars['Float'] | null) - shader_bake_progress: (Scalars['Float'] | null) - start_port_range: (Scalars['Float'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_stddev_fields' +export interface event_media_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface game_server_nodes_stddev_pop_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Float'] | null) - cpu_cores_per_socket: (Scalars['Float'] | null) - cpu_sockets: (Scalars['Float'] | null) - cpu_threads_per_core: (Scalars['Float'] | null) - csgo_build_id: (Scalars['Float'] | null) - demo_network_limiter: (Scalars['Float'] | null) - disk_available_gb: (Scalars['Float'] | null) - disk_used_percent: (Scalars['Float'] | null) - end_port_range: (Scalars['Float'] | null) - pin_build_id: (Scalars['Float'] | null) - shader_bake_progress: (Scalars['Float'] | null) - start_port_range: (Scalars['Float'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_stddev_pop_fields' +export interface event_media_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface game_server_nodes_stddev_samp_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Float'] | null) - cpu_cores_per_socket: (Scalars['Float'] | null) - cpu_sockets: (Scalars['Float'] | null) - cpu_threads_per_core: (Scalars['Float'] | null) - csgo_build_id: (Scalars['Float'] | null) - demo_network_limiter: (Scalars['Float'] | null) - disk_available_gb: (Scalars['Float'] | null) - disk_used_percent: (Scalars['Float'] | null) - end_port_range: (Scalars['Float'] | null) - pin_build_id: (Scalars['Float'] | null) - shader_bake_progress: (Scalars['Float'] | null) - start_port_range: (Scalars['Float'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_stddev_samp_fields' +export interface event_media_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_samp_fields' } /** aggregate sum on columns */ -export interface game_server_nodes_sum_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Int'] | null) - cpu_cores_per_socket: (Scalars['Int'] | null) - cpu_sockets: (Scalars['Int'] | null) - cpu_threads_per_core: (Scalars['Int'] | null) - csgo_build_id: (Scalars['Int'] | null) - demo_network_limiter: (Scalars['Int'] | null) - disk_available_gb: (Scalars['Int'] | null) - disk_used_percent: (Scalars['Int'] | null) - end_port_range: (Scalars['Int'] | null) - pin_build_id: (Scalars['Int'] | null) - shader_bake_progress: (Scalars['numeric'] | null) - start_port_range: (Scalars['Int'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_sum_fields' +export interface event_media_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_sum_fields' } -/** update columns of table "game_server_nodes" */ -export type game_server_nodes_update_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' +/** update columns of table "event_media_players" */ +export type event_media_players_update_column = 'created_at' | 'media_id' | 'steam_id' /** aggregate var_pop on columns */ -export interface game_server_nodes_var_pop_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Float'] | null) - cpu_cores_per_socket: (Scalars['Float'] | null) - cpu_sockets: (Scalars['Float'] | null) - cpu_threads_per_core: (Scalars['Float'] | null) - csgo_build_id: (Scalars['Float'] | null) - demo_network_limiter: (Scalars['Float'] | null) - disk_available_gb: (Scalars['Float'] | null) - disk_used_percent: (Scalars['Float'] | null) - end_port_range: (Scalars['Float'] | null) - pin_build_id: (Scalars['Float'] | null) - shader_bake_progress: (Scalars['Float'] | null) - start_port_range: (Scalars['Float'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_var_pop_fields' +export interface event_media_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_var_pop_fields' } /** aggregate var_samp on columns */ -export interface game_server_nodes_var_samp_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Float'] | null) - cpu_cores_per_socket: (Scalars['Float'] | null) - cpu_sockets: (Scalars['Float'] | null) - cpu_threads_per_core: (Scalars['Float'] | null) - csgo_build_id: (Scalars['Float'] | null) - demo_network_limiter: (Scalars['Float'] | null) - disk_available_gb: (Scalars['Float'] | null) - disk_used_percent: (Scalars['Float'] | null) - end_port_range: (Scalars['Float'] | null) - pin_build_id: (Scalars['Float'] | null) - shader_bake_progress: (Scalars['Float'] | null) - start_port_range: (Scalars['Float'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_var_samp_fields' +export interface event_media_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_var_samp_fields' } /** aggregate variance on columns */ -export interface game_server_nodes_variance_fields { - /** A computed field, executes function "available_node_server_count" */ - available_server_count: (Scalars['Int'] | null) - build_id: (Scalars['Float'] | null) - cpu_cores_per_socket: (Scalars['Float'] | null) - cpu_sockets: (Scalars['Float'] | null) - cpu_threads_per_core: (Scalars['Float'] | null) - csgo_build_id: (Scalars['Float'] | null) - demo_network_limiter: (Scalars['Float'] | null) - disk_available_gb: (Scalars['Float'] | null) - disk_used_percent: (Scalars['Float'] | null) - end_port_range: (Scalars['Float'] | null) - pin_build_id: (Scalars['Float'] | null) - shader_bake_progress: (Scalars['Float'] | null) - start_port_range: (Scalars['Float'] | null) - /** A computed field, executes function "total_node_server_count" */ - total_server_count: (Scalars['Int'] | null) - __typename: 'game_server_nodes_variance_fields' +export interface event_media_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_variance_fields' } -/** columns and relationships of "game_versions" */ -export interface game_versions { - build_id: Scalars['Int'] - current: (Scalars['Boolean'] | null) - cvars: Scalars['Boolean'] - description: Scalars['String'] - downloads: (Scalars['jsonb'] | null) - updated_at: Scalars['timestamptz'] - version: Scalars['String'] - __typename: 'game_versions' +/** select columns of table "event_media" */ +export type event_media_select_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' + + +/** aggregate stddev on columns */ +export interface event_media_stddev_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_fields' } -/** aggregated selection of "game_versions" */ -export interface game_versions_aggregate { - aggregate: (game_versions_aggregate_fields | null) - nodes: game_versions[] - __typename: 'game_versions_aggregate' +/** aggregate stddev_pop on columns */ +export interface event_media_stddev_pop_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_pop_fields' } -/** aggregate fields of "game_versions" */ -export interface game_versions_aggregate_fields { - avg: (game_versions_avg_fields | null) +/** aggregate stddev_samp on columns */ +export interface event_media_stddev_samp_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_media_sum_fields { + size: (Scalars['bigint'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_sum_fields' +} + + +/** update columns of table "event_media" */ +export type event_media_update_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' + + +/** aggregate var_pop on columns */ +export interface event_media_var_pop_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_media_var_samp_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_media_variance_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_variance_fields' +} + + +/** columns and relationships of "event_organizers" */ +export interface event_organizers { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + organizer: players + steam_id: Scalars['bigint'] + __typename: 'event_organizers' +} + + +/** aggregated selection of "event_organizers" */ +export interface event_organizers_aggregate { + aggregate: (event_organizers_aggregate_fields | null) + nodes: event_organizers[] + __typename: 'event_organizers_aggregate' +} + + +/** aggregate fields of "event_organizers" */ +export interface event_organizers_aggregate_fields { + avg: (event_organizers_avg_fields | null) count: Scalars['Int'] - max: (game_versions_max_fields | null) - min: (game_versions_min_fields | null) - stddev: (game_versions_stddev_fields | null) - stddev_pop: (game_versions_stddev_pop_fields | null) - stddev_samp: (game_versions_stddev_samp_fields | null) - sum: (game_versions_sum_fields | null) - var_pop: (game_versions_var_pop_fields | null) - var_samp: (game_versions_var_samp_fields | null) - variance: (game_versions_variance_fields | null) - __typename: 'game_versions_aggregate_fields' + max: (event_organizers_max_fields | null) + min: (event_organizers_min_fields | null) + stddev: (event_organizers_stddev_fields | null) + stddev_pop: (event_organizers_stddev_pop_fields | null) + stddev_samp: (event_organizers_stddev_samp_fields | null) + sum: (event_organizers_sum_fields | null) + var_pop: (event_organizers_var_pop_fields | null) + var_samp: (event_organizers_var_samp_fields | null) + variance: (event_organizers_variance_fields | null) + __typename: 'event_organizers_aggregate_fields' } /** aggregate avg on columns */ -export interface game_versions_avg_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_avg_fields' +export interface event_organizers_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_avg_fields' } -/** unique or primary key constraints on table "game_versions" */ -export type game_versions_constraint = 'game_versions_pkey' | 'idx_game_versions_current' +/** unique or primary key constraints on table "event_organizers" */ +export type event_organizers_constraint = 'event_organizers_pkey' /** aggregate max on columns */ -export interface game_versions_max_fields { - build_id: (Scalars['Int'] | null) - description: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - version: (Scalars['String'] | null) - __typename: 'game_versions_max_fields' +export interface event_organizers_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_max_fields' } /** aggregate min on columns */ -export interface game_versions_min_fields { - build_id: (Scalars['Int'] | null) - description: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - version: (Scalars['String'] | null) - __typename: 'game_versions_min_fields' +export interface event_organizers_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_min_fields' } -/** response of any mutation on the table "game_versions" */ -export interface game_versions_mutation_response { +/** response of any mutation on the table "event_organizers" */ +export interface event_organizers_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: game_versions[] - __typename: 'game_versions_mutation_response' + returning: event_organizers[] + __typename: 'event_organizers_mutation_response' } -/** select columns of table "game_versions" */ -export type game_versions_select_column = 'build_id' | 'current' | 'cvars' | 'description' | 'downloads' | 'updated_at' | 'version' +/** select columns of table "event_organizers" */ +export type event_organizers_select_column = 'created_at' | 'event_id' | 'steam_id' /** aggregate stddev on columns */ -export interface game_versions_stddev_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_fields' +export interface event_organizers_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface game_versions_stddev_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_pop_fields' +export interface event_organizers_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface game_versions_stddev_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_stddev_samp_fields' +export interface event_organizers_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_samp_fields' } /** aggregate sum on columns */ -export interface game_versions_sum_fields { - build_id: (Scalars['Int'] | null) - __typename: 'game_versions_sum_fields' +export interface event_organizers_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_sum_fields' } -/** update columns of table "game_versions" */ -export type game_versions_update_column = 'build_id' | 'current' | 'cvars' | 'description' | 'downloads' | 'updated_at' | 'version' +/** update columns of table "event_organizers" */ +export type event_organizers_update_column = 'created_at' | 'event_id' | 'steam_id' /** aggregate var_pop on columns */ -export interface game_versions_var_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_var_pop_fields' +export interface event_organizers_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_var_pop_fields' } /** aggregate var_samp on columns */ -export interface game_versions_var_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_var_samp_fields' +export interface event_organizers_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_var_samp_fields' } /** aggregate variance on columns */ -export interface game_versions_variance_fields { - build_id: (Scalars['Float'] | null) - __typename: 'game_versions_variance_fields' +export interface event_organizers_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_variance_fields' } -/** columns and relationships of "gamedata_signature_validations" */ -export interface gamedata_signature_validations { - branch: Scalars['String'] - build_id: Scalars['Int'] +/** columns and relationships of "event_players" */ +export interface event_players { + created_at: Scalars['timestamptz'] /** An object relationship */ - game_version: game_versions - id: Scalars['uuid'] - results: (Scalars['jsonb'] | null) - status: Scalars['String'] - validated_at: Scalars['timestamptz'] - __typename: 'gamedata_signature_validations' + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + __typename: 'event_players' } -/** aggregated selection of "gamedata_signature_validations" */ -export interface gamedata_signature_validations_aggregate { - aggregate: (gamedata_signature_validations_aggregate_fields | null) - nodes: gamedata_signature_validations[] - __typename: 'gamedata_signature_validations_aggregate' +/** aggregated selection of "event_players" */ +export interface event_players_aggregate { + aggregate: (event_players_aggregate_fields | null) + nodes: event_players[] + __typename: 'event_players_aggregate' } -/** aggregate fields of "gamedata_signature_validations" */ -export interface gamedata_signature_validations_aggregate_fields { - avg: (gamedata_signature_validations_avg_fields | null) +/** aggregate fields of "event_players" */ +export interface event_players_aggregate_fields { + avg: (event_players_avg_fields | null) count: Scalars['Int'] - max: (gamedata_signature_validations_max_fields | null) - min: (gamedata_signature_validations_min_fields | null) - stddev: (gamedata_signature_validations_stddev_fields | null) - stddev_pop: (gamedata_signature_validations_stddev_pop_fields | null) - stddev_samp: (gamedata_signature_validations_stddev_samp_fields | null) - sum: (gamedata_signature_validations_sum_fields | null) - var_pop: (gamedata_signature_validations_var_pop_fields | null) - var_samp: (gamedata_signature_validations_var_samp_fields | null) - variance: (gamedata_signature_validations_variance_fields | null) - __typename: 'gamedata_signature_validations_aggregate_fields' + max: (event_players_max_fields | null) + min: (event_players_min_fields | null) + stddev: (event_players_stddev_fields | null) + stddev_pop: (event_players_stddev_pop_fields | null) + stddev_samp: (event_players_stddev_samp_fields | null) + sum: (event_players_sum_fields | null) + var_pop: (event_players_var_pop_fields | null) + var_samp: (event_players_var_samp_fields | null) + variance: (event_players_variance_fields | null) + __typename: 'event_players_aggregate_fields' } /** aggregate avg on columns */ -export interface gamedata_signature_validations_avg_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_avg_fields' +export interface event_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_avg_fields' } -/** unique or primary key constraints on table "gamedata_signature_validations" */ -export type gamedata_signature_validations_constraint = 'gamedata_signature_validations_build_branch_idx' | 'gamedata_signature_validations_pkey' +/** unique or primary key constraints on table "event_players" */ +export type event_players_constraint = 'event_players_pkey' /** aggregate max on columns */ -export interface gamedata_signature_validations_max_fields { - branch: (Scalars['String'] | null) - build_id: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - status: (Scalars['String'] | null) - validated_at: (Scalars['timestamptz'] | null) - __typename: 'gamedata_signature_validations_max_fields' +export interface event_players_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_max_fields' } /** aggregate min on columns */ -export interface gamedata_signature_validations_min_fields { - branch: (Scalars['String'] | null) - build_id: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - status: (Scalars['String'] | null) - validated_at: (Scalars['timestamptz'] | null) - __typename: 'gamedata_signature_validations_min_fields' +export interface event_players_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_min_fields' } -/** response of any mutation on the table "gamedata_signature_validations" */ -export interface gamedata_signature_validations_mutation_response { +/** response of any mutation on the table "event_players" */ +export interface event_players_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: gamedata_signature_validations[] - __typename: 'gamedata_signature_validations_mutation_response' + returning: event_players[] + __typename: 'event_players_mutation_response' } -/** select columns of table "gamedata_signature_validations" */ -export type gamedata_signature_validations_select_column = 'branch' | 'build_id' | 'id' | 'results' | 'status' | 'validated_at' +/** select columns of table "event_players" */ +export type event_players_select_column = 'created_at' | 'event_id' | 'steam_id' /** aggregate stddev on columns */ -export interface gamedata_signature_validations_stddev_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_stddev_fields' +export interface event_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface gamedata_signature_validations_stddev_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_stddev_pop_fields' +export interface event_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface gamedata_signature_validations_stddev_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_stddev_samp_fields' +export interface event_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_samp_fields' } /** aggregate sum on columns */ -export interface gamedata_signature_validations_sum_fields { - build_id: (Scalars['Int'] | null) - __typename: 'gamedata_signature_validations_sum_fields' +export interface event_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_sum_fields' } -/** update columns of table "gamedata_signature_validations" */ -export type gamedata_signature_validations_update_column = 'branch' | 'build_id' | 'id' | 'results' | 'status' | 'validated_at' +/** update columns of table "event_players" */ +export type event_players_update_column = 'created_at' | 'event_id' | 'steam_id' /** aggregate var_pop on columns */ -export interface gamedata_signature_validations_var_pop_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_var_pop_fields' +export interface event_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_var_pop_fields' } /** aggregate var_samp on columns */ -export interface gamedata_signature_validations_var_samp_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_var_samp_fields' +export interface event_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_var_samp_fields' } /** aggregate variance on columns */ -export interface gamedata_signature_validations_variance_fields { - build_id: (Scalars['Float'] | null) - __typename: 'gamedata_signature_validations_variance_fields' +export interface event_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_variance_fields' } -/** columns and relationships of "leaderboard_entries" */ -export interface leaderboard_entries { - matches_played: (Scalars['Int'] | null) - player_avatar_url: (Scalars['String'] | null) - player_country: (Scalars['String'] | null) - player_name: Scalars['String'] - player_steam_id: Scalars['String'] - secondary_value: (Scalars['float8'] | null) - tertiary_value: (Scalars['float8'] | null) - value: Scalars['float8'] - __typename: 'leaderboard_entries' +/** columns and relationships of "event_teams" */ +export interface event_teams { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'event_teams' } -export interface leaderboard_entries_aggregate { - aggregate: (leaderboard_entries_aggregate_fields | null) - nodes: leaderboard_entries[] - __typename: 'leaderboard_entries_aggregate' + +/** aggregated selection of "event_teams" */ +export interface event_teams_aggregate { + aggregate: (event_teams_aggregate_fields | null) + nodes: event_teams[] + __typename: 'event_teams_aggregate' } -/** aggregate fields of "leaderboard_entries" */ -export interface leaderboard_entries_aggregate_fields { - avg: (leaderboard_entries_avg_fields | null) +/** aggregate fields of "event_teams" */ +export interface event_teams_aggregate_fields { count: Scalars['Int'] - max: (leaderboard_entries_max_fields | null) - min: (leaderboard_entries_min_fields | null) - stddev: (leaderboard_entries_stddev_fields | null) - stddev_pop: (leaderboard_entries_stddev_pop_fields | null) - stddev_samp: (leaderboard_entries_stddev_samp_fields | null) - sum: (leaderboard_entries_sum_fields | null) - var_pop: (leaderboard_entries_var_pop_fields | null) - var_samp: (leaderboard_entries_var_samp_fields | null) - variance: (leaderboard_entries_variance_fields | null) - __typename: 'leaderboard_entries_aggregate_fields' + max: (event_teams_max_fields | null) + min: (event_teams_min_fields | null) + __typename: 'event_teams_aggregate_fields' } -/** aggregate avg on columns */ -export interface leaderboard_entries_avg_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_avg_fields' -} +/** unique or primary key constraints on table "event_teams" */ +export type event_teams_constraint = 'event_teams_pkey' /** aggregate max on columns */ -export interface leaderboard_entries_max_fields { - matches_played: (Scalars['Int'] | null) - player_avatar_url: (Scalars['String'] | null) - player_country: (Scalars['String'] | null) - player_name: (Scalars['String'] | null) - player_steam_id: (Scalars['String'] | null) - secondary_value: (Scalars['float8'] | null) - tertiary_value: (Scalars['float8'] | null) - value: (Scalars['float8'] | null) - __typename: 'leaderboard_entries_max_fields' +export interface event_teams_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'event_teams_max_fields' } /** aggregate min on columns */ -export interface leaderboard_entries_min_fields { - matches_played: (Scalars['Int'] | null) - player_avatar_url: (Scalars['String'] | null) - player_country: (Scalars['String'] | null) - player_name: (Scalars['String'] | null) - player_steam_id: (Scalars['String'] | null) - secondary_value: (Scalars['float8'] | null) - tertiary_value: (Scalars['float8'] | null) - value: (Scalars['float8'] | null) - __typename: 'leaderboard_entries_min_fields' +export interface event_teams_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'event_teams_min_fields' } -/** response of any mutation on the table "leaderboard_entries" */ -export interface leaderboard_entries_mutation_response { +/** response of any mutation on the table "event_teams" */ +export interface event_teams_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: leaderboard_entries[] - __typename: 'leaderboard_entries_mutation_response' + returning: event_teams[] + __typename: 'event_teams_mutation_response' } -/** select columns of table "leaderboard_entries" */ -export type leaderboard_entries_select_column = 'matches_played' | 'player_avatar_url' | 'player_country' | 'player_name' | 'player_steam_id' | 'secondary_value' | 'tertiary_value' | 'value' +/** select columns of table "event_teams" */ +export type event_teams_select_column = 'created_at' | 'event_id' | 'team_id' -/** aggregate stddev on columns */ -export interface leaderboard_entries_stddev_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_stddev_fields' -} +/** update columns of table "event_teams" */ +export type event_teams_update_column = 'created_at' | 'event_id' | 'team_id' -/** aggregate stddev_pop on columns */ -export interface leaderboard_entries_stddev_pop_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_stddev_pop_fields' +/** columns and relationships of "event_tournaments" */ +export interface event_tournaments { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'event_tournaments' } -/** aggregate stddev_samp on columns */ -export interface leaderboard_entries_stddev_samp_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_stddev_samp_fields' +/** aggregated selection of "event_tournaments" */ +export interface event_tournaments_aggregate { + aggregate: (event_tournaments_aggregate_fields | null) + nodes: event_tournaments[] + __typename: 'event_tournaments_aggregate' } -/** aggregate sum on columns */ -export interface leaderboard_entries_sum_fields { - matches_played: (Scalars['Int'] | null) - secondary_value: (Scalars['float8'] | null) - tertiary_value: (Scalars['float8'] | null) - value: (Scalars['float8'] | null) - __typename: 'leaderboard_entries_sum_fields' +/** aggregate fields of "event_tournaments" */ +export interface event_tournaments_aggregate_fields { + count: Scalars['Int'] + max: (event_tournaments_max_fields | null) + min: (event_tournaments_min_fields | null) + __typename: 'event_tournaments_aggregate_fields' } -/** aggregate var_pop on columns */ -export interface leaderboard_entries_var_pop_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_var_pop_fields' +/** unique or primary key constraints on table "event_tournaments" */ +export type event_tournaments_constraint = 'event_tournaments_pkey' + + +/** aggregate max on columns */ +export interface event_tournaments_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'event_tournaments_max_fields' } -/** aggregate var_samp on columns */ -export interface leaderboard_entries_var_samp_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_var_samp_fields' +/** aggregate min on columns */ +export interface event_tournaments_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'event_tournaments_min_fields' } -/** aggregate variance on columns */ -export interface leaderboard_entries_variance_fields { - matches_played: (Scalars['Float'] | null) - secondary_value: (Scalars['Float'] | null) - tertiary_value: (Scalars['Float'] | null) - value: (Scalars['Float'] | null) - __typename: 'leaderboard_entries_variance_fields' +/** response of any mutation on the table "event_tournaments" */ +export interface event_tournaments_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_tournaments[] + __typename: 'event_tournaments_mutation_response' } -/** columns and relationships of "league_divisions" */ -export interface league_divisions { +/** select columns of table "event_tournaments" */ +export type event_tournaments_select_column = 'created_at' | 'event_id' | 'tournament_id' + + +/** update columns of table "event_tournaments" */ +export type event_tournaments_update_column = 'created_at' | 'event_id' | 'tournament_id' + + +/** columns and relationships of "events" */ +export interface events { + /** An object relationship */ + banner: (event_media | null) + banner_media_id: (Scalars['uuid'] | null) + /** A computed field, executes function "can_upload_event_media" */ + can_upload_media: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_view_event" */ + can_view: (Scalars['Boolean'] | null) created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + hide_creator_organizer: Scalars['Boolean'] id: Scalars['uuid'] + /** A computed field, executes function "is_event_organizer" */ + is_organizer: (Scalars['Boolean'] | null) + /** An array relationship */ + media: event_media[] + media_access: e_event_media_access_enum + /** An aggregate relationship */ + media_aggregate: event_media_aggregate name: Scalars['String'] + /** An object relationship */ + organizer: players + organizer_steam_id: Scalars['bigint'] /** An array relationship */ - season_divisions: league_season_divisions[] + organizers: event_organizers[] /** An aggregate relationship */ - season_divisions_aggregate: league_season_divisions_aggregate - tier: Scalars['smallint'] - __typename: 'league_divisions' + organizers_aggregate: event_organizers_aggregate + /** An array relationship */ + player_stats: v_event_player_stats[] + /** An aggregate relationship */ + player_stats_aggregate: v_event_player_stats_aggregate + /** An array relationship */ + players: event_players[] + /** An aggregate relationship */ + players_aggregate: event_players_aggregate + starts_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + teams: event_teams[] + /** An aggregate relationship */ + teams_aggregate: event_teams_aggregate + /** An array relationship */ + tournaments: event_tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: event_tournaments_aggregate + visibility: e_event_visibility_enum + __typename: 'events' } -/** aggregated selection of "league_divisions" */ -export interface league_divisions_aggregate { - aggregate: (league_divisions_aggregate_fields | null) - nodes: league_divisions[] - __typename: 'league_divisions_aggregate' +/** aggregated selection of "events" */ +export interface events_aggregate { + aggregate: (events_aggregate_fields | null) + nodes: events[] + __typename: 'events_aggregate' } -/** aggregate fields of "league_divisions" */ -export interface league_divisions_aggregate_fields { - avg: (league_divisions_avg_fields | null) +/** aggregate fields of "events" */ +export interface events_aggregate_fields { + avg: (events_avg_fields | null) count: Scalars['Int'] - max: (league_divisions_max_fields | null) - min: (league_divisions_min_fields | null) - stddev: (league_divisions_stddev_fields | null) - stddev_pop: (league_divisions_stddev_pop_fields | null) - stddev_samp: (league_divisions_stddev_samp_fields | null) - sum: (league_divisions_sum_fields | null) - var_pop: (league_divisions_var_pop_fields | null) - var_samp: (league_divisions_var_samp_fields | null) - variance: (league_divisions_variance_fields | null) - __typename: 'league_divisions_aggregate_fields' + max: (events_max_fields | null) + min: (events_min_fields | null) + stddev: (events_stddev_fields | null) + stddev_pop: (events_stddev_pop_fields | null) + stddev_samp: (events_stddev_samp_fields | null) + sum: (events_sum_fields | null) + var_pop: (events_var_pop_fields | null) + var_samp: (events_var_samp_fields | null) + variance: (events_variance_fields | null) + __typename: 'events_aggregate_fields' } /** aggregate avg on columns */ -export interface league_divisions_avg_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_avg_fields' +export interface events_avg_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_avg_fields' } -/** unique or primary key constraints on table "league_divisions" */ -export type league_divisions_constraint = 'league_divisions_name_key' | 'league_divisions_pkey' | 'league_divisions_tier_key' +/** unique or primary key constraints on table "events" */ +export type events_constraint = 'events_pkey' /** aggregate max on columns */ -export interface league_divisions_max_fields { +export interface events_max_fields { + banner_media_id: (Scalars['uuid'] | null) created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_max_fields' + organizer_steam_id: (Scalars['bigint'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'events_max_fields' } /** aggregate min on columns */ -export interface league_divisions_min_fields { +export interface events_min_fields { + banner_media_id: (Scalars['uuid'] | null) created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_min_fields' + organizer_steam_id: (Scalars['bigint'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'events_min_fields' } -/** response of any mutation on the table "league_divisions" */ -export interface league_divisions_mutation_response { +/** response of any mutation on the table "events" */ +export interface events_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_divisions[] - __typename: 'league_divisions_mutation_response' + returning: events[] + __typename: 'events_mutation_response' } -/** select columns of table "league_divisions" */ -export type league_divisions_select_column = 'created_at' | 'id' | 'name' | 'tier' +/** select columns of table "events" */ +export type events_select_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' /** aggregate stddev on columns */ -export interface league_divisions_stddev_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_fields' +export interface events_stddev_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface league_divisions_stddev_pop_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_pop_fields' +export interface events_stddev_pop_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface league_divisions_stddev_samp_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_samp_fields' +export interface events_stddev_samp_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_samp_fields' } /** aggregate sum on columns */ -export interface league_divisions_sum_fields { - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_sum_fields' +export interface events_sum_fields { + organizer_steam_id: (Scalars['bigint'] | null) + __typename: 'events_sum_fields' } -/** update columns of table "league_divisions" */ -export type league_divisions_update_column = 'created_at' | 'id' | 'name' | 'tier' +/** update columns of table "events" */ +export type events_update_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' /** aggregate var_pop on columns */ -export interface league_divisions_var_pop_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_pop_fields' +export interface events_var_pop_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_var_pop_fields' } /** aggregate var_samp on columns */ -export interface league_divisions_var_samp_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_samp_fields' +export interface events_var_samp_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_var_samp_fields' } /** aggregate variance on columns */ -export interface league_divisions_variance_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_variance_fields' +export interface events_variance_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_variance_fields' } -/** columns and relationships of "league_match_weeks" */ -export interface league_match_weeks { - closes_at: Scalars['timestamptz'] - created_at: Scalars['timestamptz'] - default_match_at: Scalars['timestamptz'] - id: Scalars['uuid'] - league_season_id: Scalars['uuid'] - opens_at: Scalars['timestamptz'] +/** columns and relationships of "friends" */ +export interface friends { /** An object relationship */ - season: league_seasons - week_number: Scalars['Int'] - __typename: 'league_match_weeks' + e_status: e_friend_status + other_player_steam_id: Scalars['bigint'] + player_steam_id: Scalars['bigint'] + status: e_friend_status_enum + __typename: 'friends' } -/** aggregated selection of "league_match_weeks" */ -export interface league_match_weeks_aggregate { - aggregate: (league_match_weeks_aggregate_fields | null) - nodes: league_match_weeks[] - __typename: 'league_match_weeks_aggregate' +/** aggregated selection of "friends" */ +export interface friends_aggregate { + aggregate: (friends_aggregate_fields | null) + nodes: friends[] + __typename: 'friends_aggregate' } -/** aggregate fields of "league_match_weeks" */ -export interface league_match_weeks_aggregate_fields { - avg: (league_match_weeks_avg_fields | null) +/** aggregate fields of "friends" */ +export interface friends_aggregate_fields { + avg: (friends_avg_fields | null) count: Scalars['Int'] - max: (league_match_weeks_max_fields | null) - min: (league_match_weeks_min_fields | null) - stddev: (league_match_weeks_stddev_fields | null) - stddev_pop: (league_match_weeks_stddev_pop_fields | null) - stddev_samp: (league_match_weeks_stddev_samp_fields | null) - sum: (league_match_weeks_sum_fields | null) - var_pop: (league_match_weeks_var_pop_fields | null) - var_samp: (league_match_weeks_var_samp_fields | null) - variance: (league_match_weeks_variance_fields | null) - __typename: 'league_match_weeks_aggregate_fields' + max: (friends_max_fields | null) + min: (friends_min_fields | null) + stddev: (friends_stddev_fields | null) + stddev_pop: (friends_stddev_pop_fields | null) + stddev_samp: (friends_stddev_samp_fields | null) + sum: (friends_sum_fields | null) + var_pop: (friends_var_pop_fields | null) + var_samp: (friends_var_samp_fields | null) + variance: (friends_variance_fields | null) + __typename: 'friends_aggregate_fields' } /** aggregate avg on columns */ -export interface league_match_weeks_avg_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_avg_fields' +export interface friends_avg_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_avg_fields' } -/** unique or primary key constraints on table "league_match_weeks" */ -export type league_match_weeks_constraint = 'league_match_weeks_league_season_id_week_number_key' | 'league_match_weeks_pkey' +/** unique or primary key constraints on table "friends" */ +export type friends_constraint = 'friends_pkey' | 'friends_player_steam_id_other_player_steam_id_key' /** aggregate max on columns */ -export interface league_match_weeks_max_fields { - closes_at: (Scalars['timestamptz'] | null) - created_at: (Scalars['timestamptz'] | null) - default_match_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - opens_at: (Scalars['timestamptz'] | null) - week_number: (Scalars['Int'] | null) - __typename: 'league_match_weeks_max_fields' +export interface friends_max_fields { + other_player_steam_id: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'friends_max_fields' } /** aggregate min on columns */ -export interface league_match_weeks_min_fields { - closes_at: (Scalars['timestamptz'] | null) - created_at: (Scalars['timestamptz'] | null) - default_match_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - opens_at: (Scalars['timestamptz'] | null) - week_number: (Scalars['Int'] | null) - __typename: 'league_match_weeks_min_fields' +export interface friends_min_fields { + other_player_steam_id: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'friends_min_fields' } -/** response of any mutation on the table "league_match_weeks" */ -export interface league_match_weeks_mutation_response { +/** response of any mutation on the table "friends" */ +export interface friends_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_match_weeks[] - __typename: 'league_match_weeks_mutation_response' + returning: friends[] + __typename: 'friends_mutation_response' } -/** select columns of table "league_match_weeks" */ -export type league_match_weeks_select_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'league_season_id' | 'opens_at' | 'week_number' +/** select columns of table "friends" */ +export type friends_select_column = 'other_player_steam_id' | 'player_steam_id' | 'status' /** aggregate stddev on columns */ -export interface league_match_weeks_stddev_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_stddev_fields' +export interface friends_stddev_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface league_match_weeks_stddev_pop_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_stddev_pop_fields' +export interface friends_stddev_pop_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface league_match_weeks_stddev_samp_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_stddev_samp_fields' +export interface friends_stddev_samp_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_stddev_samp_fields' } /** aggregate sum on columns */ -export interface league_match_weeks_sum_fields { - week_number: (Scalars['Int'] | null) - __typename: 'league_match_weeks_sum_fields' +export interface friends_sum_fields { + other_player_steam_id: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'friends_sum_fields' } -/** update columns of table "league_match_weeks" */ -export type league_match_weeks_update_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'league_season_id' | 'opens_at' | 'week_number' +/** update columns of table "friends" */ +export type friends_update_column = 'other_player_steam_id' | 'player_steam_id' | 'status' /** aggregate var_pop on columns */ -export interface league_match_weeks_var_pop_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_var_pop_fields' +export interface friends_var_pop_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_var_pop_fields' } /** aggregate var_samp on columns */ -export interface league_match_weeks_var_samp_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_var_samp_fields' +export interface friends_var_samp_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_var_samp_fields' } /** aggregate variance on columns */ -export interface league_match_weeks_variance_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_variance_fields' +export interface friends_variance_fields { + other_player_steam_id: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'friends_variance_fields' } -/** columns and relationships of "league_relegation_playoffs" */ -export interface league_relegation_playoffs { - created_at: Scalars['timestamptz'] +/** columns and relationships of "game_server_nodes" */ +export interface game_server_nodes { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Int'] | null) + cpu_cores_per_socket: (Scalars['Int'] | null) + cpu_frequency_info: (Scalars['jsonb'] | null) + cpu_governor_info: (Scalars['jsonb'] | null) + cpu_sockets: (Scalars['Int'] | null) + cpu_threads_per_core: (Scalars['Int'] | null) + cs2_launch_options: Scalars['jsonb'] + cs2_video_settings: Scalars['jsonb'] + csgo_build_id: (Scalars['Int'] | null) + demo_network_limiter: (Scalars['Int'] | null) + disk_available_gb: (Scalars['Int'] | null) + disk_used_percent: (Scalars['Int'] | null) /** An object relationship */ - higher_division: league_divisions - higher_division_id: Scalars['uuid'] - higher_slots: Scalars['Int'] - id: Scalars['uuid'] - league_season_id: Scalars['uuid'] + e_region: (server_regions | null) /** An object relationship */ - lower_division: league_divisions - lower_division_id: Scalars['uuid'] - resolved_at: (Scalars['timestamptz'] | null) + e_status: (e_game_server_node_statuses | null) + enabled: Scalars['Boolean'] + enabled_for_match_making: Scalars['Boolean'] + end_port_range: (Scalars['Int'] | null) + gpu: Scalars['Boolean'] + gpu_demos_enabled: Scalars['Boolean'] + gpu_info: (Scalars['jsonb'] | null) + gpu_rendering_enabled: Scalars['Boolean'] + gpu_streaming_enabled: Scalars['Boolean'] + id: Scalars['String'] + label: (Scalars['String'] | null) + lan_ip: (Scalars['inet'] | null) + node_ip: (Scalars['inet'] | null) + offline_at: (Scalars['timestamptz'] | null) + pin_build_id: (Scalars['Int'] | null) + pin_plugin_runtime: (Scalars['String'] | null) + pin_plugin_version: (Scalars['String'] | null) /** An object relationship */ - season: league_seasons + pinned_version: (game_versions | null) + /** A computed field, executes function "game_server_node_plugin_supported" */ + plugin_supported: (Scalars['Boolean'] | null) + public_ip: (Scalars['inet'] | null) + region: (Scalars['String'] | null) + /** An array relationship */ + servers: servers[] + /** An aggregate relationship */ + servers_aggregate: servers_aggregate + shader_bake_progress: (Scalars['numeric'] | null) + shader_bake_progress_stage: (Scalars['String'] | null) + shader_bake_status: (Scalars['String'] | null) + shader_bake_status_history: Scalars['jsonb'] + start_port_range: (Scalars['Int'] | null) + status: (e_game_server_node_statuses_enum | null) + supports_cpu_pinning: Scalars['Boolean'] + supports_low_latency: Scalars['Boolean'] + token: (Scalars['String'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + update_status: (Scalars['String'] | null) /** An object relationship */ - tournament: (tournaments | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_relegation_playoffs' + version: (game_versions | null) + __typename: 'game_server_nodes' } -/** aggregated selection of "league_relegation_playoffs" */ -export interface league_relegation_playoffs_aggregate { - aggregate: (league_relegation_playoffs_aggregate_fields | null) - nodes: league_relegation_playoffs[] - __typename: 'league_relegation_playoffs_aggregate' +/** aggregated selection of "game_server_nodes" */ +export interface game_server_nodes_aggregate { + aggregate: (game_server_nodes_aggregate_fields | null) + nodes: game_server_nodes[] + __typename: 'game_server_nodes_aggregate' } -/** aggregate fields of "league_relegation_playoffs" */ -export interface league_relegation_playoffs_aggregate_fields { - avg: (league_relegation_playoffs_avg_fields | null) +/** aggregate fields of "game_server_nodes" */ +export interface game_server_nodes_aggregate_fields { + avg: (game_server_nodes_avg_fields | null) count: Scalars['Int'] - max: (league_relegation_playoffs_max_fields | null) - min: (league_relegation_playoffs_min_fields | null) - stddev: (league_relegation_playoffs_stddev_fields | null) - stddev_pop: (league_relegation_playoffs_stddev_pop_fields | null) - stddev_samp: (league_relegation_playoffs_stddev_samp_fields | null) - sum: (league_relegation_playoffs_sum_fields | null) - var_pop: (league_relegation_playoffs_var_pop_fields | null) - var_samp: (league_relegation_playoffs_var_samp_fields | null) - variance: (league_relegation_playoffs_variance_fields | null) - __typename: 'league_relegation_playoffs_aggregate_fields' + max: (game_server_nodes_max_fields | null) + min: (game_server_nodes_min_fields | null) + stddev: (game_server_nodes_stddev_fields | null) + stddev_pop: (game_server_nodes_stddev_pop_fields | null) + stddev_samp: (game_server_nodes_stddev_samp_fields | null) + sum: (game_server_nodes_sum_fields | null) + var_pop: (game_server_nodes_var_pop_fields | null) + var_samp: (game_server_nodes_var_samp_fields | null) + variance: (game_server_nodes_variance_fields | null) + __typename: 'game_server_nodes_aggregate_fields' } /** aggregate avg on columns */ -export interface league_relegation_playoffs_avg_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_avg_fields' +export interface game_server_nodes_avg_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_avg_fields' } -/** unique or primary key constraints on table "league_relegation_playoffs" */ -export type league_relegation_playoffs_constraint = 'league_relegation_playoffs_league_season_id_higher_division_key' | 'league_relegation_playoffs_pkey' +/** unique or primary key constraints on table "game_server_nodes" */ +export type game_server_nodes_constraint = 'game_server_nodes_pkey' /** aggregate max on columns */ -export interface league_relegation_playoffs_max_fields { - created_at: (Scalars['timestamptz'] | null) - higher_division_id: (Scalars['uuid'] | null) - higher_slots: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - lower_division_id: (Scalars['uuid'] | null) - resolved_at: (Scalars['timestamptz'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_relegation_playoffs_max_fields' +export interface game_server_nodes_max_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Int'] | null) + cpu_cores_per_socket: (Scalars['Int'] | null) + cpu_sockets: (Scalars['Int'] | null) + cpu_threads_per_core: (Scalars['Int'] | null) + csgo_build_id: (Scalars['Int'] | null) + demo_network_limiter: (Scalars['Int'] | null) + disk_available_gb: (Scalars['Int'] | null) + disk_used_percent: (Scalars['Int'] | null) + end_port_range: (Scalars['Int'] | null) + id: (Scalars['String'] | null) + label: (Scalars['String'] | null) + offline_at: (Scalars['timestamptz'] | null) + pin_build_id: (Scalars['Int'] | null) + pin_plugin_runtime: (Scalars['String'] | null) + pin_plugin_version: (Scalars['String'] | null) + region: (Scalars['String'] | null) + shader_bake_progress: (Scalars['numeric'] | null) + shader_bake_progress_stage: (Scalars['String'] | null) + shader_bake_status: (Scalars['String'] | null) + start_port_range: (Scalars['Int'] | null) + token: (Scalars['String'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + update_status: (Scalars['String'] | null) + __typename: 'game_server_nodes_max_fields' } /** aggregate min on columns */ -export interface league_relegation_playoffs_min_fields { - created_at: (Scalars['timestamptz'] | null) - higher_division_id: (Scalars['uuid'] | null) - higher_slots: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - lower_division_id: (Scalars['uuid'] | null) - resolved_at: (Scalars['timestamptz'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_relegation_playoffs_min_fields' +export interface game_server_nodes_min_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Int'] | null) + cpu_cores_per_socket: (Scalars['Int'] | null) + cpu_sockets: (Scalars['Int'] | null) + cpu_threads_per_core: (Scalars['Int'] | null) + csgo_build_id: (Scalars['Int'] | null) + demo_network_limiter: (Scalars['Int'] | null) + disk_available_gb: (Scalars['Int'] | null) + disk_used_percent: (Scalars['Int'] | null) + end_port_range: (Scalars['Int'] | null) + id: (Scalars['String'] | null) + label: (Scalars['String'] | null) + offline_at: (Scalars['timestamptz'] | null) + pin_build_id: (Scalars['Int'] | null) + pin_plugin_runtime: (Scalars['String'] | null) + pin_plugin_version: (Scalars['String'] | null) + region: (Scalars['String'] | null) + shader_bake_progress: (Scalars['numeric'] | null) + shader_bake_progress_stage: (Scalars['String'] | null) + shader_bake_status: (Scalars['String'] | null) + start_port_range: (Scalars['Int'] | null) + token: (Scalars['String'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + update_status: (Scalars['String'] | null) + __typename: 'game_server_nodes_min_fields' } -/** response of any mutation on the table "league_relegation_playoffs" */ -export interface league_relegation_playoffs_mutation_response { +/** response of any mutation on the table "game_server_nodes" */ +export interface game_server_nodes_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_relegation_playoffs[] - __typename: 'league_relegation_playoffs_mutation_response' + returning: game_server_nodes[] + __typename: 'game_server_nodes_mutation_response' } -/** select columns of table "league_relegation_playoffs" */ -export type league_relegation_playoffs_select_column = 'created_at' | 'higher_division_id' | 'higher_slots' | 'id' | 'league_season_id' | 'lower_division_id' | 'resolved_at' | 'tournament_id' +/** select columns of table "game_server_nodes" */ +export type game_server_nodes_select_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' + + +/** select "game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns" columns of table "game_server_nodes" */ +export type game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_and_arguments_columns = 'enabled' | 'enabled_for_match_making' | 'gpu' | 'gpu_demos_enabled' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'supports_cpu_pinning' | 'supports_low_latency' + + +/** select "game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns" columns of table "game_server_nodes" */ +export type game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns = 'enabled' | 'enabled_for_match_making' | 'gpu' | 'gpu_demos_enabled' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'supports_cpu_pinning' | 'supports_low_latency' /** aggregate stddev on columns */ -export interface league_relegation_playoffs_stddev_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_stddev_fields' +export interface game_server_nodes_stddev_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface league_relegation_playoffs_stddev_pop_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_stddev_pop_fields' +export interface game_server_nodes_stddev_pop_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface league_relegation_playoffs_stddev_samp_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_stddev_samp_fields' +export interface game_server_nodes_stddev_samp_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_stddev_samp_fields' } /** aggregate sum on columns */ -export interface league_relegation_playoffs_sum_fields { - higher_slots: (Scalars['Int'] | null) - __typename: 'league_relegation_playoffs_sum_fields' +export interface game_server_nodes_sum_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Int'] | null) + cpu_cores_per_socket: (Scalars['Int'] | null) + cpu_sockets: (Scalars['Int'] | null) + cpu_threads_per_core: (Scalars['Int'] | null) + csgo_build_id: (Scalars['Int'] | null) + demo_network_limiter: (Scalars['Int'] | null) + disk_available_gb: (Scalars['Int'] | null) + disk_used_percent: (Scalars['Int'] | null) + end_port_range: (Scalars['Int'] | null) + pin_build_id: (Scalars['Int'] | null) + shader_bake_progress: (Scalars['numeric'] | null) + start_port_range: (Scalars['Int'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_sum_fields' } -/** update columns of table "league_relegation_playoffs" */ -export type league_relegation_playoffs_update_column = 'created_at' | 'higher_division_id' | 'higher_slots' | 'id' | 'league_season_id' | 'lower_division_id' | 'resolved_at' | 'tournament_id' +/** update columns of table "game_server_nodes" */ +export type game_server_nodes_update_column = 'build_id' | 'cpu_cores_per_socket' | 'cpu_frequency_info' | 'cpu_governor_info' | 'cpu_sockets' | 'cpu_threads_per_core' | 'cs2_launch_options' | 'cs2_video_settings' | 'csgo_build_id' | 'demo_network_limiter' | 'disk_available_gb' | 'disk_used_percent' | 'enabled' | 'enabled_for_match_making' | 'end_port_range' | 'gpu' | 'gpu_demos_enabled' | 'gpu_info' | 'gpu_rendering_enabled' | 'gpu_streaming_enabled' | 'id' | 'label' | 'lan_ip' | 'node_ip' | 'offline_at' | 'pin_build_id' | 'pin_plugin_runtime' | 'pin_plugin_version' | 'public_ip' | 'region' | 'shader_bake_progress' | 'shader_bake_progress_stage' | 'shader_bake_status' | 'shader_bake_status_history' | 'start_port_range' | 'status' | 'supports_cpu_pinning' | 'supports_low_latency' | 'token' | 'update_status' /** aggregate var_pop on columns */ -export interface league_relegation_playoffs_var_pop_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_var_pop_fields' +export interface game_server_nodes_var_pop_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_var_pop_fields' } /** aggregate var_samp on columns */ -export interface league_relegation_playoffs_var_samp_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_var_samp_fields' +export interface game_server_nodes_var_samp_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_var_samp_fields' } /** aggregate variance on columns */ -export interface league_relegation_playoffs_variance_fields { - higher_slots: (Scalars['Float'] | null) - __typename: 'league_relegation_playoffs_variance_fields' +export interface game_server_nodes_variance_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_variance_fields' } -/** columns and relationships of "league_scheduling_proposals" */ -export interface league_scheduling_proposals { - /** An object relationship */ - bracket: tournament_brackets - created_at: Scalars['timestamptz'] - /** An object relationship */ - e_proposal_status: e_league_proposal_statuses - id: Scalars['uuid'] - message: (Scalars['String'] | null) - /** An object relationship */ - proposed_by: players - proposed_by_league_team_season_id: (Scalars['uuid'] | null) - proposed_by_steam_id: Scalars['bigint'] - proposed_time: Scalars['timestamptz'] - /** An object relationship */ - responded_by: (players | null) - responded_by_steam_id: (Scalars['bigint'] | null) - status: e_league_proposal_statuses_enum - /** An object relationship */ - team_season: (league_team_seasons | null) - tournament_bracket_id: Scalars['uuid'] - __typename: 'league_scheduling_proposals' +/** columns and relationships of "game_versions" */ +export interface game_versions { + build_id: Scalars['Int'] + current: (Scalars['Boolean'] | null) + cvars: Scalars['Boolean'] + description: Scalars['String'] + downloads: (Scalars['jsonb'] | null) + updated_at: Scalars['timestamptz'] + version: Scalars['String'] + __typename: 'game_versions' } -/** aggregated selection of "league_scheduling_proposals" */ -export interface league_scheduling_proposals_aggregate { - aggregate: (league_scheduling_proposals_aggregate_fields | null) - nodes: league_scheduling_proposals[] - __typename: 'league_scheduling_proposals_aggregate' +/** aggregated selection of "game_versions" */ +export interface game_versions_aggregate { + aggregate: (game_versions_aggregate_fields | null) + nodes: game_versions[] + __typename: 'game_versions_aggregate' } -/** aggregate fields of "league_scheduling_proposals" */ -export interface league_scheduling_proposals_aggregate_fields { - avg: (league_scheduling_proposals_avg_fields | null) +/** aggregate fields of "game_versions" */ +export interface game_versions_aggregate_fields { + avg: (game_versions_avg_fields | null) count: Scalars['Int'] - max: (league_scheduling_proposals_max_fields | null) - min: (league_scheduling_proposals_min_fields | null) - stddev: (league_scheduling_proposals_stddev_fields | null) - stddev_pop: (league_scheduling_proposals_stddev_pop_fields | null) - stddev_samp: (league_scheduling_proposals_stddev_samp_fields | null) - sum: (league_scheduling_proposals_sum_fields | null) - var_pop: (league_scheduling_proposals_var_pop_fields | null) - var_samp: (league_scheduling_proposals_var_samp_fields | null) - variance: (league_scheduling_proposals_variance_fields | null) - __typename: 'league_scheduling_proposals_aggregate_fields' + max: (game_versions_max_fields | null) + min: (game_versions_min_fields | null) + stddev: (game_versions_stddev_fields | null) + stddev_pop: (game_versions_stddev_pop_fields | null) + stddev_samp: (game_versions_stddev_samp_fields | null) + sum: (game_versions_sum_fields | null) + var_pop: (game_versions_var_pop_fields | null) + var_samp: (game_versions_var_samp_fields | null) + variance: (game_versions_variance_fields | null) + __typename: 'game_versions_aggregate_fields' } /** aggregate avg on columns */ -export interface league_scheduling_proposals_avg_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_avg_fields' +export interface game_versions_avg_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_avg_fields' } -/** unique or primary key constraints on table "league_scheduling_proposals" */ -export type league_scheduling_proposals_constraint = 'league_scheduling_proposals_pkey' +/** unique or primary key constraints on table "game_versions" */ +export type game_versions_constraint = 'game_versions_pkey' | 'idx_game_versions_current' /** aggregate max on columns */ -export interface league_scheduling_proposals_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - proposed_by_league_team_season_id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_time: (Scalars['timestamptz'] | null) - responded_by_steam_id: (Scalars['bigint'] | null) - tournament_bracket_id: (Scalars['uuid'] | null) - __typename: 'league_scheduling_proposals_max_fields' +export interface game_versions_max_fields { + build_id: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'game_versions_max_fields' } /** aggregate min on columns */ -export interface league_scheduling_proposals_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - proposed_by_league_team_season_id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_time: (Scalars['timestamptz'] | null) - responded_by_steam_id: (Scalars['bigint'] | null) - tournament_bracket_id: (Scalars['uuid'] | null) - __typename: 'league_scheduling_proposals_min_fields' +export interface game_versions_min_fields { + build_id: (Scalars['Int'] | null) + description: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + version: (Scalars['String'] | null) + __typename: 'game_versions_min_fields' } -/** response of any mutation on the table "league_scheduling_proposals" */ -export interface league_scheduling_proposals_mutation_response { +/** response of any mutation on the table "game_versions" */ +export interface game_versions_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_scheduling_proposals[] - __typename: 'league_scheduling_proposals_mutation_response' + returning: game_versions[] + __typename: 'game_versions_mutation_response' } -/** select columns of table "league_scheduling_proposals" */ -export type league_scheduling_proposals_select_column = 'created_at' | 'id' | 'message' | 'proposed_by_league_team_season_id' | 'proposed_by_steam_id' | 'proposed_time' | 'responded_by_steam_id' | 'status' | 'tournament_bracket_id' +/** select columns of table "game_versions" */ +export type game_versions_select_column = 'build_id' | 'current' | 'cvars' | 'description' | 'downloads' | 'updated_at' | 'version' /** aggregate stddev on columns */ -export interface league_scheduling_proposals_stddev_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_stddev_fields' +export interface game_versions_stddev_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface league_scheduling_proposals_stddev_pop_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_stddev_pop_fields' +export interface game_versions_stddev_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface league_scheduling_proposals_stddev_samp_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_stddev_samp_fields' +export interface game_versions_stddev_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_stddev_samp_fields' } /** aggregate sum on columns */ -export interface league_scheduling_proposals_sum_fields { - proposed_by_steam_id: (Scalars['bigint'] | null) - responded_by_steam_id: (Scalars['bigint'] | null) - __typename: 'league_scheduling_proposals_sum_fields' +export interface game_versions_sum_fields { + build_id: (Scalars['Int'] | null) + __typename: 'game_versions_sum_fields' } -/** update columns of table "league_scheduling_proposals" */ -export type league_scheduling_proposals_update_column = 'created_at' | 'id' | 'message' | 'proposed_by_league_team_season_id' | 'proposed_by_steam_id' | 'proposed_time' | 'responded_by_steam_id' | 'status' | 'tournament_bracket_id' +/** update columns of table "game_versions" */ +export type game_versions_update_column = 'build_id' | 'current' | 'cvars' | 'description' | 'downloads' | 'updated_at' | 'version' /** aggregate var_pop on columns */ -export interface league_scheduling_proposals_var_pop_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_var_pop_fields' +export interface game_versions_var_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_var_pop_fields' } /** aggregate var_samp on columns */ -export interface league_scheduling_proposals_var_samp_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_var_samp_fields' +export interface game_versions_var_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_var_samp_fields' } /** aggregate variance on columns */ -export interface league_scheduling_proposals_variance_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - responded_by_steam_id: (Scalars['Float'] | null) - __typename: 'league_scheduling_proposals_variance_fields' +export interface game_versions_variance_fields { + build_id: (Scalars['Float'] | null) + __typename: 'game_versions_variance_fields' } -/** columns and relationships of "league_season_divisions" */ -export interface league_season_divisions { - created_at: Scalars['timestamptz'] +/** columns and relationships of "gamedata_signature_validations" */ +export interface gamedata_signature_validations { + branch: Scalars['String'] + build_id: Scalars['Int'] /** An object relationship */ - division: league_divisions + game_version: game_versions id: Scalars['uuid'] - league_division_id: Scalars['uuid'] - league_season_id: Scalars['uuid'] - /** An object relationship */ - season: league_seasons - /** An array relationship */ - standings: v_league_division_standings[] - /** An aggregate relationship */ - standings_aggregate: v_league_division_standings_aggregate - /** An object relationship */ - tournament: (tournaments | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_season_divisions' + results: (Scalars['jsonb'] | null) + status: Scalars['String'] + validated_at: Scalars['timestamptz'] + __typename: 'gamedata_signature_validations' } -/** aggregated selection of "league_season_divisions" */ -export interface league_season_divisions_aggregate { - aggregate: (league_season_divisions_aggregate_fields | null) - nodes: league_season_divisions[] - __typename: 'league_season_divisions_aggregate' +/** aggregated selection of "gamedata_signature_validations" */ +export interface gamedata_signature_validations_aggregate { + aggregate: (gamedata_signature_validations_aggregate_fields | null) + nodes: gamedata_signature_validations[] + __typename: 'gamedata_signature_validations_aggregate' } -/** aggregate fields of "league_season_divisions" */ -export interface league_season_divisions_aggregate_fields { +/** aggregate fields of "gamedata_signature_validations" */ +export interface gamedata_signature_validations_aggregate_fields { + avg: (gamedata_signature_validations_avg_fields | null) count: Scalars['Int'] - max: (league_season_divisions_max_fields | null) - min: (league_season_divisions_min_fields | null) - __typename: 'league_season_divisions_aggregate_fields' + max: (gamedata_signature_validations_max_fields | null) + min: (gamedata_signature_validations_min_fields | null) + stddev: (gamedata_signature_validations_stddev_fields | null) + stddev_pop: (gamedata_signature_validations_stddev_pop_fields | null) + stddev_samp: (gamedata_signature_validations_stddev_samp_fields | null) + sum: (gamedata_signature_validations_sum_fields | null) + var_pop: (gamedata_signature_validations_var_pop_fields | null) + var_samp: (gamedata_signature_validations_var_samp_fields | null) + variance: (gamedata_signature_validations_variance_fields | null) + __typename: 'gamedata_signature_validations_aggregate_fields' } -/** unique or primary key constraints on table "league_season_divisions" */ -export type league_season_divisions_constraint = 'league_season_divisions_league_season_id_league_division_id_key' | 'league_season_divisions_pkey' | 'league_season_divisions_tournament_id_key' +/** aggregate avg on columns */ +export interface gamedata_signature_validations_avg_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_avg_fields' +} + + +/** unique or primary key constraints on table "gamedata_signature_validations" */ +export type gamedata_signature_validations_constraint = 'gamedata_signature_validations_build_branch_idx' | 'gamedata_signature_validations_pkey' /** aggregate max on columns */ -export interface league_season_divisions_max_fields { - created_at: (Scalars['timestamptz'] | null) +export interface gamedata_signature_validations_max_fields { + branch: (Scalars['String'] | null) + build_id: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_season_divisions_max_fields' + status: (Scalars['String'] | null) + validated_at: (Scalars['timestamptz'] | null) + __typename: 'gamedata_signature_validations_max_fields' } /** aggregate min on columns */ -export interface league_season_divisions_min_fields { - created_at: (Scalars['timestamptz'] | null) +export interface gamedata_signature_validations_min_fields { + branch: (Scalars['String'] | null) + build_id: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'league_season_divisions_min_fields' + status: (Scalars['String'] | null) + validated_at: (Scalars['timestamptz'] | null) + __typename: 'gamedata_signature_validations_min_fields' } -/** response of any mutation on the table "league_season_divisions" */ -export interface league_season_divisions_mutation_response { +/** response of any mutation on the table "gamedata_signature_validations" */ +export interface gamedata_signature_validations_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_season_divisions[] - __typename: 'league_season_divisions_mutation_response' + returning: gamedata_signature_validations[] + __typename: 'gamedata_signature_validations_mutation_response' } -/** select columns of table "league_season_divisions" */ -export type league_season_divisions_select_column = 'created_at' | 'id' | 'league_division_id' | 'league_season_id' | 'tournament_id' +/** select columns of table "gamedata_signature_validations" */ +export type gamedata_signature_validations_select_column = 'branch' | 'build_id' | 'id' | 'results' | 'status' | 'validated_at' -/** update columns of table "league_season_divisions" */ -export type league_season_divisions_update_column = 'created_at' | 'id' | 'league_division_id' | 'league_season_id' | 'tournament_id' +/** aggregate stddev on columns */ +export interface gamedata_signature_validations_stddev_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_stddev_fields' +} -/** columns and relationships of "league_seasons" */ -export interface league_seasons { - auto_regular_season_format: Scalars['Boolean'] - /** A computed field, executes function "can_register_for_league_season" */ - can_register: (Scalars['Boolean'] | null) - created_at: Scalars['timestamptz'] - created_by_steam_id: (Scalars['bigint'] | null) - default_best_of: Scalars['Int'] - direct_promote_count: Scalars['Int'] - direct_relegate_count: Scalars['Int'] - /** An object relationship */ - e_league_season_status: e_league_season_statuses - games_per_week: Scalars['Int'] - id: Scalars['uuid'] - /** A computed field, executes function "is_league_season_admin" */ - is_league_admin: (Scalars['Boolean'] | null) - /** A computed field, executes function "league_season_is_roster_locked" */ - is_roster_locked: (Scalars['Boolean'] | null) - match_options_id: (Scalars['uuid'] | null) - /** An array relationship */ - match_weeks: league_match_weeks[] - /** An aggregate relationship */ - match_weeks_aggregate: league_match_weeks_aggregate - match_weeks_count: Scalars['Int'] - max_roster_size: (Scalars['Int'] | null) - min_roster_size: Scalars['Int'] - /** An array relationship */ - movements: league_team_movements[] - /** An aggregate relationship */ - movements_aggregate: league_team_movements_aggregate - /** A computed field, executes function "league_season_my_registration" */ - my_registration: (league_team_seasons[] | null) - name: Scalars['String'] - /** An object relationship */ - options: (match_options | null) - /** An array relationship */ - player_stats: v_league_season_player_stats[] - /** An aggregate relationship */ - player_stats_aggregate: v_league_season_player_stats_aggregate - playoff_best_of: Scalars['Int'] - playoff_round_best_of: Scalars['jsonb'] - playoff_seats: Scalars['Int'] - playoff_stage_type: e_tournament_stage_types_enum - playoff_third_place_match: Scalars['Boolean'] - promote_count: Scalars['Int'] - regular_season_stage_type: e_tournament_stage_types_enum - relegate_count: Scalars['Int'] - relegation_down_count: Scalars['Int'] - /** An array relationship */ - relegation_playoffs: league_relegation_playoffs[] - /** An aggregate relationship */ - relegation_playoffs_aggregate: league_relegation_playoffs_aggregate - relegation_up_count: Scalars['Int'] - roster_lock_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - season_divisions: league_season_divisions[] - /** An aggregate relationship */ - season_divisions_aggregate: league_season_divisions_aggregate - season_number: (Scalars['Int'] | null) - signup_closes_at: (Scalars['timestamptz'] | null) - signup_opens_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - standings: v_league_division_standings[] - /** An aggregate relationship */ - standings_aggregate: v_league_division_standings_aggregate - starts_at: (Scalars['timestamptz'] | null) - status: e_league_season_statuses_enum - /** An array relationship */ - team_seasons: league_team_seasons[] - /** An aggregate relationship */ - team_seasons_aggregate: league_team_seasons_aggregate - week_best_of: Scalars['jsonb'] - __typename: 'league_seasons' +/** aggregate stddev_pop on columns */ +export interface gamedata_signature_validations_stddev_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_stddev_pop_fields' } -/** aggregated selection of "league_seasons" */ -export interface league_seasons_aggregate { - aggregate: (league_seasons_aggregate_fields | null) - nodes: league_seasons[] - __typename: 'league_seasons_aggregate' +/** aggregate stddev_samp on columns */ +export interface gamedata_signature_validations_stddev_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_stddev_samp_fields' } -/** aggregate fields of "league_seasons" */ -export interface league_seasons_aggregate_fields { - avg: (league_seasons_avg_fields | null) - count: Scalars['Int'] - max: (league_seasons_max_fields | null) - min: (league_seasons_min_fields | null) - stddev: (league_seasons_stddev_fields | null) - stddev_pop: (league_seasons_stddev_pop_fields | null) - stddev_samp: (league_seasons_stddev_samp_fields | null) - sum: (league_seasons_sum_fields | null) - var_pop: (league_seasons_var_pop_fields | null) - var_samp: (league_seasons_var_samp_fields | null) - variance: (league_seasons_variance_fields | null) - __typename: 'league_seasons_aggregate_fields' +/** aggregate sum on columns */ +export interface gamedata_signature_validations_sum_fields { + build_id: (Scalars['Int'] | null) + __typename: 'gamedata_signature_validations_sum_fields' } -/** aggregate avg on columns */ -export interface league_seasons_avg_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_avg_fields' -} +/** update columns of table "gamedata_signature_validations" */ +export type gamedata_signature_validations_update_column = 'branch' | 'build_id' | 'id' | 'results' | 'status' | 'validated_at' -/** unique or primary key constraints on table "league_seasons" */ -export type league_seasons_constraint = 'league_seasons_name_key' | 'league_seasons_pkey' | 'league_seasons_season_number_key' +/** aggregate var_pop on columns */ +export interface gamedata_signature_validations_var_pop_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_var_pop_fields' +} -/** aggregate max on columns */ -export interface league_seasons_max_fields { - created_at: (Scalars['timestamptz'] | null) - created_by_steam_id: (Scalars['bigint'] | null) - default_best_of: (Scalars['Int'] | null) - direct_promote_count: (Scalars['Int'] | null) - direct_relegate_count: (Scalars['Int'] | null) - games_per_week: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - match_weeks_count: (Scalars['Int'] | null) - max_roster_size: (Scalars['Int'] | null) - min_roster_size: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - playoff_best_of: (Scalars['Int'] | null) - playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) - relegation_down_count: (Scalars['Int'] | null) - relegation_up_count: (Scalars['Int'] | null) - roster_lock_at: (Scalars['timestamptz'] | null) - season_number: (Scalars['Int'] | null) - signup_closes_at: (Scalars['timestamptz'] | null) - signup_opens_at: (Scalars['timestamptz'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'league_seasons_max_fields' +/** aggregate var_samp on columns */ +export interface gamedata_signature_validations_var_samp_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_var_samp_fields' } -/** aggregate min on columns */ -export interface league_seasons_min_fields { - created_at: (Scalars['timestamptz'] | null) - created_by_steam_id: (Scalars['bigint'] | null) - default_best_of: (Scalars['Int'] | null) - direct_promote_count: (Scalars['Int'] | null) - direct_relegate_count: (Scalars['Int'] | null) - games_per_week: (Scalars['Int'] | null) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | null) - match_weeks_count: (Scalars['Int'] | null) - max_roster_size: (Scalars['Int'] | null) - min_roster_size: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - playoff_best_of: (Scalars['Int'] | null) - playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) - relegation_down_count: (Scalars['Int'] | null) - relegation_up_count: (Scalars['Int'] | null) - roster_lock_at: (Scalars['timestamptz'] | null) - season_number: (Scalars['Int'] | null) - signup_closes_at: (Scalars['timestamptz'] | null) - signup_opens_at: (Scalars['timestamptz'] | null) - starts_at: (Scalars['timestamptz'] | null) - __typename: 'league_seasons_min_fields' +/** aggregate variance on columns */ +export interface gamedata_signature_validations_variance_fields { + build_id: (Scalars['Float'] | null) + __typename: 'gamedata_signature_validations_variance_fields' } -/** response of any mutation on the table "league_seasons" */ -export interface league_seasons_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: league_seasons[] - __typename: 'league_seasons_mutation_response' +/** columns and relationships of "leaderboard_entries" */ +export interface leaderboard_entries { + matches_played: (Scalars['Int'] | null) + player_avatar_url: (Scalars['String'] | null) + player_country: (Scalars['String'] | null) + player_name: Scalars['String'] + player_steam_id: Scalars['String'] + secondary_value: (Scalars['float8'] | null) + tertiary_value: (Scalars['float8'] | null) + value: Scalars['float8'] + __typename: 'leaderboard_entries' +} + +export interface leaderboard_entries_aggregate { + aggregate: (leaderboard_entries_aggregate_fields | null) + nodes: leaderboard_entries[] + __typename: 'leaderboard_entries_aggregate' } -/** select columns of table "league_seasons" */ -export type league_seasons_select_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' +/** aggregate fields of "leaderboard_entries" */ +export interface leaderboard_entries_aggregate_fields { + avg: (leaderboard_entries_avg_fields | null) + count: Scalars['Int'] + max: (leaderboard_entries_max_fields | null) + min: (leaderboard_entries_min_fields | null) + stddev: (leaderboard_entries_stddev_fields | null) + stddev_pop: (leaderboard_entries_stddev_pop_fields | null) + stddev_samp: (leaderboard_entries_stddev_samp_fields | null) + sum: (leaderboard_entries_sum_fields | null) + var_pop: (leaderboard_entries_var_pop_fields | null) + var_samp: (leaderboard_entries_var_samp_fields | null) + variance: (leaderboard_entries_variance_fields | null) + __typename: 'leaderboard_entries_aggregate_fields' +} -/** aggregate stddev on columns */ -export interface league_seasons_stddev_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_stddev_fields' +/** aggregate avg on columns */ +export interface leaderboard_entries_avg_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_avg_fields' } -/** aggregate stddev_pop on columns */ -export interface league_seasons_stddev_pop_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_stddev_pop_fields' +/** aggregate max on columns */ +export interface leaderboard_entries_max_fields { + matches_played: (Scalars['Int'] | null) + player_avatar_url: (Scalars['String'] | null) + player_country: (Scalars['String'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['String'] | null) + secondary_value: (Scalars['float8'] | null) + tertiary_value: (Scalars['float8'] | null) + value: (Scalars['float8'] | null) + __typename: 'leaderboard_entries_max_fields' } -/** aggregate stddev_samp on columns */ -export interface league_seasons_stddev_samp_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_stddev_samp_fields' +/** aggregate min on columns */ +export interface leaderboard_entries_min_fields { + matches_played: (Scalars['Int'] | null) + player_avatar_url: (Scalars['String'] | null) + player_country: (Scalars['String'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['String'] | null) + secondary_value: (Scalars['float8'] | null) + tertiary_value: (Scalars['float8'] | null) + value: (Scalars['float8'] | null) + __typename: 'leaderboard_entries_min_fields' } -/** aggregate sum on columns */ -export interface league_seasons_sum_fields { - created_by_steam_id: (Scalars['bigint'] | null) - default_best_of: (Scalars['Int'] | null) - direct_promote_count: (Scalars['Int'] | null) - direct_relegate_count: (Scalars['Int'] | null) - games_per_week: (Scalars['Int'] | null) - match_weeks_count: (Scalars['Int'] | null) - max_roster_size: (Scalars['Int'] | null) - min_roster_size: (Scalars['Int'] | null) - playoff_best_of: (Scalars['Int'] | null) - playoff_seats: (Scalars['Int'] | null) - promote_count: (Scalars['Int'] | null) - relegate_count: (Scalars['Int'] | null) - relegation_down_count: (Scalars['Int'] | null) - relegation_up_count: (Scalars['Int'] | null) - season_number: (Scalars['Int'] | null) - __typename: 'league_seasons_sum_fields' +/** response of any mutation on the table "leaderboard_entries" */ +export interface leaderboard_entries_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: leaderboard_entries[] + __typename: 'leaderboard_entries_mutation_response' } -/** update columns of table "league_seasons" */ -export type league_seasons_update_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' +/** select columns of table "leaderboard_entries" */ +export type leaderboard_entries_select_column = 'matches_played' | 'player_avatar_url' | 'player_country' | 'player_name' | 'player_steam_id' | 'secondary_value' | 'tertiary_value' | 'value' + + +/** aggregate stddev on columns */ +export interface leaderboard_entries_stddev_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface leaderboard_entries_stddev_pop_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface leaderboard_entries_stddev_samp_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface leaderboard_entries_sum_fields { + matches_played: (Scalars['Int'] | null) + secondary_value: (Scalars['float8'] | null) + tertiary_value: (Scalars['float8'] | null) + value: (Scalars['float8'] | null) + __typename: 'leaderboard_entries_sum_fields' +} /** aggregate var_pop on columns */ -export interface league_seasons_var_pop_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_var_pop_fields' +export interface leaderboard_entries_var_pop_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_var_pop_fields' } /** aggregate var_samp on columns */ -export interface league_seasons_var_samp_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_var_samp_fields' +export interface leaderboard_entries_var_samp_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_var_samp_fields' } /** aggregate variance on columns */ -export interface league_seasons_variance_fields { - created_by_steam_id: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - direct_promote_count: (Scalars['Float'] | null) - direct_relegate_count: (Scalars['Float'] | null) - games_per_week: (Scalars['Float'] | null) - match_weeks_count: (Scalars['Float'] | null) - max_roster_size: (Scalars['Float'] | null) - min_roster_size: (Scalars['Float'] | null) - playoff_best_of: (Scalars['Float'] | null) - playoff_seats: (Scalars['Float'] | null) - promote_count: (Scalars['Float'] | null) - relegate_count: (Scalars['Float'] | null) - relegation_down_count: (Scalars['Float'] | null) - relegation_up_count: (Scalars['Float'] | null) - season_number: (Scalars['Float'] | null) - __typename: 'league_seasons_variance_fields' +export interface leaderboard_entries_variance_fields { + matches_played: (Scalars['Float'] | null) + secondary_value: (Scalars['Float'] | null) + tertiary_value: (Scalars['Float'] | null) + value: (Scalars['Float'] | null) + __typename: 'leaderboard_entries_variance_fields' } -/** columns and relationships of "league_team_movements" */ -export interface league_team_movements { - approved_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - approved_by: (players | null) - approved_by_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - computed_to_division: (league_divisions | null) - computed_to_division_id: (Scalars['uuid'] | null) +/** columns and relationships of "league_divisions" */ +export interface league_divisions { created_at: Scalars['timestamptz'] - /** An object relationship */ - e_movement_type: e_league_movement_types - final_rank: (Scalars['Int'] | null) - /** An object relationship */ - final_to_division: (league_divisions | null) - final_to_division_id: (Scalars['uuid'] | null) - /** An object relationship */ - from_division: (league_divisions | null) - from_division_id: (Scalars['uuid'] | null) id: Scalars['uuid'] - league_season_id: Scalars['uuid'] - /** An object relationship */ - league_team: league_teams - league_team_id: Scalars['uuid'] - /** An object relationship */ - season: league_seasons - type: e_league_movement_types_enum - __typename: 'league_team_movements' + name: Scalars['String'] + /** An array relationship */ + season_divisions: league_season_divisions[] + /** An aggregate relationship */ + season_divisions_aggregate: league_season_divisions_aggregate + tier: Scalars['smallint'] + __typename: 'league_divisions' } -/** aggregated selection of "league_team_movements" */ -export interface league_team_movements_aggregate { - aggregate: (league_team_movements_aggregate_fields | null) - nodes: league_team_movements[] - __typename: 'league_team_movements_aggregate' +/** aggregated selection of "league_divisions" */ +export interface league_divisions_aggregate { + aggregate: (league_divisions_aggregate_fields | null) + nodes: league_divisions[] + __typename: 'league_divisions_aggregate' } -/** aggregate fields of "league_team_movements" */ -export interface league_team_movements_aggregate_fields { - avg: (league_team_movements_avg_fields | null) +/** aggregate fields of "league_divisions" */ +export interface league_divisions_aggregate_fields { + avg: (league_divisions_avg_fields | null) count: Scalars['Int'] - max: (league_team_movements_max_fields | null) - min: (league_team_movements_min_fields | null) - stddev: (league_team_movements_stddev_fields | null) - stddev_pop: (league_team_movements_stddev_pop_fields | null) - stddev_samp: (league_team_movements_stddev_samp_fields | null) - sum: (league_team_movements_sum_fields | null) - var_pop: (league_team_movements_var_pop_fields | null) - var_samp: (league_team_movements_var_samp_fields | null) - variance: (league_team_movements_variance_fields | null) - __typename: 'league_team_movements_aggregate_fields' + max: (league_divisions_max_fields | null) + min: (league_divisions_min_fields | null) + stddev: (league_divisions_stddev_fields | null) + stddev_pop: (league_divisions_stddev_pop_fields | null) + stddev_samp: (league_divisions_stddev_samp_fields | null) + sum: (league_divisions_sum_fields | null) + var_pop: (league_divisions_var_pop_fields | null) + var_samp: (league_divisions_var_samp_fields | null) + variance: (league_divisions_variance_fields | null) + __typename: 'league_divisions_aggregate_fields' } /** aggregate avg on columns */ -export interface league_team_movements_avg_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_avg_fields' +export interface league_divisions_avg_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_avg_fields' } -/** unique or primary key constraints on table "league_team_movements" */ -export type league_team_movements_constraint = 'league_team_movements_league_season_id_league_team_id_key' | 'league_team_movements_pkey' +/** unique or primary key constraints on table "league_divisions" */ +export type league_divisions_constraint = 'league_divisions_name_key' | 'league_divisions_pkey' | 'league_divisions_tier_key' /** aggregate max on columns */ -export interface league_team_movements_max_fields { - approved_at: (Scalars['timestamptz'] | null) - approved_by_steam_id: (Scalars['bigint'] | null) - computed_to_division_id: (Scalars['uuid'] | null) +export interface league_divisions_max_fields { created_at: (Scalars['timestamptz'] | null) - final_rank: (Scalars['Int'] | null) - final_to_division_id: (Scalars['uuid'] | null) - from_division_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_movements_max_fields' + name: (Scalars['String'] | null) + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_max_fields' } /** aggregate min on columns */ -export interface league_team_movements_min_fields { - approved_at: (Scalars['timestamptz'] | null) - approved_by_steam_id: (Scalars['bigint'] | null) - computed_to_division_id: (Scalars['uuid'] | null) +export interface league_divisions_min_fields { created_at: (Scalars['timestamptz'] | null) - final_rank: (Scalars['Int'] | null) - final_to_division_id: (Scalars['uuid'] | null) - from_division_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_movements_min_fields' + name: (Scalars['String'] | null) + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_min_fields' } -/** response of any mutation on the table "league_team_movements" */ -export interface league_team_movements_mutation_response { +/** response of any mutation on the table "league_divisions" */ +export interface league_divisions_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_team_movements[] - __typename: 'league_team_movements_mutation_response' + returning: league_divisions[] + __typename: 'league_divisions_mutation_response' } -/** select columns of table "league_team_movements" */ -export type league_team_movements_select_column = 'approved_at' | 'approved_by_steam_id' | 'computed_to_division_id' | 'created_at' | 'final_rank' | 'final_to_division_id' | 'from_division_id' | 'id' | 'league_season_id' | 'league_team_id' | 'type' +/** select columns of table "league_divisions" */ +export type league_divisions_select_column = 'created_at' | 'id' | 'name' | 'tier' /** aggregate stddev on columns */ -export interface league_team_movements_stddev_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_stddev_fields' +export interface league_divisions_stddev_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface league_team_movements_stddev_pop_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_stddev_pop_fields' +export interface league_divisions_stddev_pop_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface league_team_movements_stddev_samp_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_stddev_samp_fields' +export interface league_divisions_stddev_samp_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_stddev_samp_fields' } /** aggregate sum on columns */ -export interface league_team_movements_sum_fields { - approved_by_steam_id: (Scalars['bigint'] | null) - final_rank: (Scalars['Int'] | null) - __typename: 'league_team_movements_sum_fields' +export interface league_divisions_sum_fields { + tier: (Scalars['smallint'] | null) + __typename: 'league_divisions_sum_fields' } -/** update columns of table "league_team_movements" */ -export type league_team_movements_update_column = 'approved_at' | 'approved_by_steam_id' | 'computed_to_division_id' | 'created_at' | 'final_rank' | 'final_to_division_id' | 'from_division_id' | 'id' | 'league_season_id' | 'league_team_id' | 'type' +/** update columns of table "league_divisions" */ +export type league_divisions_update_column = 'created_at' | 'id' | 'name' | 'tier' /** aggregate var_pop on columns */ -export interface league_team_movements_var_pop_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_var_pop_fields' +export interface league_divisions_var_pop_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_var_pop_fields' } /** aggregate var_samp on columns */ -export interface league_team_movements_var_samp_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_var_samp_fields' +export interface league_divisions_var_samp_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_var_samp_fields' } /** aggregate variance on columns */ -export interface league_team_movements_variance_fields { - approved_by_steam_id: (Scalars['Float'] | null) - final_rank: (Scalars['Float'] | null) - __typename: 'league_team_movements_variance_fields' +export interface league_divisions_variance_fields { + tier: (Scalars['Float'] | null) + __typename: 'league_divisions_variance_fields' } -/** columns and relationships of "league_team_rosters" */ -export interface league_team_rosters { - added_at: Scalars['timestamptz'] - league_team_season_id: Scalars['uuid'] - /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - removed_at: (Scalars['timestamptz'] | null) - removed_reason: (Scalars['String'] | null) - status: e_team_roster_statuses_enum +/** columns and relationships of "league_match_weeks" */ +export interface league_match_weeks { + closes_at: Scalars['timestamptz'] + created_at: Scalars['timestamptz'] + default_match_at: Scalars['timestamptz'] + id: Scalars['uuid'] + league_season_id: Scalars['uuid'] + opens_at: Scalars['timestamptz'] /** An object relationship */ - team_season: league_team_seasons - __typename: 'league_team_rosters' + season: league_seasons + week_number: Scalars['Int'] + __typename: 'league_match_weeks' } -/** aggregated selection of "league_team_rosters" */ -export interface league_team_rosters_aggregate { - aggregate: (league_team_rosters_aggregate_fields | null) - nodes: league_team_rosters[] - __typename: 'league_team_rosters_aggregate' +/** aggregated selection of "league_match_weeks" */ +export interface league_match_weeks_aggregate { + aggregate: (league_match_weeks_aggregate_fields | null) + nodes: league_match_weeks[] + __typename: 'league_match_weeks_aggregate' } -/** aggregate fields of "league_team_rosters" */ -export interface league_team_rosters_aggregate_fields { - avg: (league_team_rosters_avg_fields | null) +/** aggregate fields of "league_match_weeks" */ +export interface league_match_weeks_aggregate_fields { + avg: (league_match_weeks_avg_fields | null) count: Scalars['Int'] - max: (league_team_rosters_max_fields | null) - min: (league_team_rosters_min_fields | null) - stddev: (league_team_rosters_stddev_fields | null) - stddev_pop: (league_team_rosters_stddev_pop_fields | null) - stddev_samp: (league_team_rosters_stddev_samp_fields | null) - sum: (league_team_rosters_sum_fields | null) - var_pop: (league_team_rosters_var_pop_fields | null) - var_samp: (league_team_rosters_var_samp_fields | null) - variance: (league_team_rosters_variance_fields | null) - __typename: 'league_team_rosters_aggregate_fields' + max: (league_match_weeks_max_fields | null) + min: (league_match_weeks_min_fields | null) + stddev: (league_match_weeks_stddev_fields | null) + stddev_pop: (league_match_weeks_stddev_pop_fields | null) + stddev_samp: (league_match_weeks_stddev_samp_fields | null) + sum: (league_match_weeks_sum_fields | null) + var_pop: (league_match_weeks_var_pop_fields | null) + var_samp: (league_match_weeks_var_samp_fields | null) + variance: (league_match_weeks_variance_fields | null) + __typename: 'league_match_weeks_aggregate_fields' } /** aggregate avg on columns */ -export interface league_team_rosters_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_avg_fields' +export interface league_match_weeks_avg_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_avg_fields' } -/** unique or primary key constraints on table "league_team_rosters" */ -export type league_team_rosters_constraint = 'league_team_rosters_pkey' +/** unique or primary key constraints on table "league_match_weeks" */ +export type league_match_weeks_constraint = 'league_match_weeks_league_season_id_week_number_key' | 'league_match_weeks_pkey' /** aggregate max on columns */ -export interface league_team_rosters_max_fields { - added_at: (Scalars['timestamptz'] | null) - league_team_season_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - removed_at: (Scalars['timestamptz'] | null) - removed_reason: (Scalars['String'] | null) - __typename: 'league_team_rosters_max_fields' +export interface league_match_weeks_max_fields { + closes_at: (Scalars['timestamptz'] | null) + created_at: (Scalars['timestamptz'] | null) + default_match_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + opens_at: (Scalars['timestamptz'] | null) + week_number: (Scalars['Int'] | null) + __typename: 'league_match_weeks_max_fields' } /** aggregate min on columns */ -export interface league_team_rosters_min_fields { - added_at: (Scalars['timestamptz'] | null) - league_team_season_id: (Scalars['uuid'] | null) - player_steam_id: (Scalars['bigint'] | null) - removed_at: (Scalars['timestamptz'] | null) - removed_reason: (Scalars['String'] | null) - __typename: 'league_team_rosters_min_fields' +export interface league_match_weeks_min_fields { + closes_at: (Scalars['timestamptz'] | null) + created_at: (Scalars['timestamptz'] | null) + default_match_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + opens_at: (Scalars['timestamptz'] | null) + week_number: (Scalars['Int'] | null) + __typename: 'league_match_weeks_min_fields' } -/** response of any mutation on the table "league_team_rosters" */ -export interface league_team_rosters_mutation_response { +/** response of any mutation on the table "league_match_weeks" */ +export interface league_match_weeks_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_team_rosters[] - __typename: 'league_team_rosters_mutation_response' + returning: league_match_weeks[] + __typename: 'league_match_weeks_mutation_response' } -/** select columns of table "league_team_rosters" */ -export type league_team_rosters_select_column = 'added_at' | 'league_team_season_id' | 'player_steam_id' | 'removed_at' | 'removed_reason' | 'status' +/** select columns of table "league_match_weeks" */ +export type league_match_weeks_select_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'league_season_id' | 'opens_at' | 'week_number' /** aggregate stddev on columns */ -export interface league_team_rosters_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_stddev_fields' +export interface league_match_weeks_stddev_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface league_team_rosters_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_stddev_pop_fields' +export interface league_match_weeks_stddev_pop_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface league_team_rosters_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_stddev_samp_fields' +export interface league_match_weeks_stddev_samp_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_stddev_samp_fields' } /** aggregate sum on columns */ -export interface league_team_rosters_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'league_team_rosters_sum_fields' +export interface league_match_weeks_sum_fields { + week_number: (Scalars['Int'] | null) + __typename: 'league_match_weeks_sum_fields' } -/** update columns of table "league_team_rosters" */ -export type league_team_rosters_update_column = 'added_at' | 'league_team_season_id' | 'player_steam_id' | 'removed_at' | 'removed_reason' | 'status' +/** update columns of table "league_match_weeks" */ +export type league_match_weeks_update_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'league_season_id' | 'opens_at' | 'week_number' /** aggregate var_pop on columns */ -export interface league_team_rosters_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_var_pop_fields' -} +export interface league_match_weeks_var_pop_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_var_pop_fields' +} /** aggregate var_samp on columns */ -export interface league_team_rosters_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_var_samp_fields' +export interface league_match_weeks_var_samp_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_var_samp_fields' } /** aggregate variance on columns */ -export interface league_team_rosters_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'league_team_rosters_variance_fields' +export interface league_match_weeks_variance_fields { + week_number: (Scalars['Float'] | null) + __typename: 'league_match_weeks_variance_fields' } -/** columns and relationships of "league_team_seasons" */ -export interface league_team_seasons { - /** An object relationship */ - assigned_division: (league_divisions | null) - assigned_division_id: (Scalars['uuid'] | null) - /** An object relationship */ - captain: (players | null) - captain_steam_id: (Scalars['bigint'] | null) +/** columns and relationships of "league_relegation_playoffs" */ +export interface league_relegation_playoffs { created_at: Scalars['timestamptz'] - decline_reason: (Scalars['String'] | null) /** An object relationship */ - e_registration_status: e_league_registration_statuses + higher_division: league_divisions + higher_division_id: Scalars['uuid'] + higher_slots: Scalars['Int'] id: Scalars['uuid'] league_season_id: Scalars['uuid'] /** An object relationship */ - league_team: league_teams - league_team_id: Scalars['uuid'] - /** An object relationship */ - registered_by: (players | null) - registered_by_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - requested_division: (league_divisions | null) - requested_division_id: (Scalars['uuid'] | null) - /** An array relationship */ - roster: league_team_rosters[] - /** An aggregate relationship */ - roster_aggregate: league_team_rosters_aggregate + lower_division: league_divisions + lower_division_id: Scalars['uuid'] + resolved_at: (Scalars['timestamptz'] | null) /** An object relationship */ season: league_seasons - seed: (Scalars['Int'] | null) - status: e_league_registration_statuses_enum /** An object relationship */ - tournament_team: (tournament_teams | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_seasons' + tournament: (tournaments | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_relegation_playoffs' } -/** aggregated selection of "league_team_seasons" */ -export interface league_team_seasons_aggregate { - aggregate: (league_team_seasons_aggregate_fields | null) - nodes: league_team_seasons[] - __typename: 'league_team_seasons_aggregate' +/** aggregated selection of "league_relegation_playoffs" */ +export interface league_relegation_playoffs_aggregate { + aggregate: (league_relegation_playoffs_aggregate_fields | null) + nodes: league_relegation_playoffs[] + __typename: 'league_relegation_playoffs_aggregate' } -/** aggregate fields of "league_team_seasons" */ -export interface league_team_seasons_aggregate_fields { - avg: (league_team_seasons_avg_fields | null) +/** aggregate fields of "league_relegation_playoffs" */ +export interface league_relegation_playoffs_aggregate_fields { + avg: (league_relegation_playoffs_avg_fields | null) count: Scalars['Int'] - max: (league_team_seasons_max_fields | null) - min: (league_team_seasons_min_fields | null) - stddev: (league_team_seasons_stddev_fields | null) - stddev_pop: (league_team_seasons_stddev_pop_fields | null) - stddev_samp: (league_team_seasons_stddev_samp_fields | null) - sum: (league_team_seasons_sum_fields | null) - var_pop: (league_team_seasons_var_pop_fields | null) - var_samp: (league_team_seasons_var_samp_fields | null) - variance: (league_team_seasons_variance_fields | null) - __typename: 'league_team_seasons_aggregate_fields' + max: (league_relegation_playoffs_max_fields | null) + min: (league_relegation_playoffs_min_fields | null) + stddev: (league_relegation_playoffs_stddev_fields | null) + stddev_pop: (league_relegation_playoffs_stddev_pop_fields | null) + stddev_samp: (league_relegation_playoffs_stddev_samp_fields | null) + sum: (league_relegation_playoffs_sum_fields | null) + var_pop: (league_relegation_playoffs_var_pop_fields | null) + var_samp: (league_relegation_playoffs_var_samp_fields | null) + variance: (league_relegation_playoffs_variance_fields | null) + __typename: 'league_relegation_playoffs_aggregate_fields' } /** aggregate avg on columns */ -export interface league_team_seasons_avg_fields { - captain_steam_id: (Scalars['Float'] | null) - registered_by_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'league_team_seasons_avg_fields' +export interface league_relegation_playoffs_avg_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_avg_fields' } -/** unique or primary key constraints on table "league_team_seasons" */ -export type league_team_seasons_constraint = 'league_team_seasons_league_season_id_league_team_id_key' | 'league_team_seasons_pkey' +/** unique or primary key constraints on table "league_relegation_playoffs" */ +export type league_relegation_playoffs_constraint = 'league_relegation_playoffs_league_season_id_higher_division_key' | 'league_relegation_playoffs_pkey' /** aggregate max on columns */ -export interface league_team_seasons_max_fields { - assigned_division_id: (Scalars['uuid'] | null) - captain_steam_id: (Scalars['bigint'] | null) +export interface league_relegation_playoffs_max_fields { created_at: (Scalars['timestamptz'] | null) - decline_reason: (Scalars['String'] | null) + higher_division_id: (Scalars['uuid'] | null) + higher_slots: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - registered_by_steam_id: (Scalars['bigint'] | null) - requested_division_id: (Scalars['uuid'] | null) - seed: (Scalars['Int'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_seasons_max_fields' + lower_division_id: (Scalars['uuid'] | null) + resolved_at: (Scalars['timestamptz'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_relegation_playoffs_max_fields' } /** aggregate min on columns */ -export interface league_team_seasons_min_fields { - assigned_division_id: (Scalars['uuid'] | null) - captain_steam_id: (Scalars['bigint'] | null) +export interface league_relegation_playoffs_min_fields { created_at: (Scalars['timestamptz'] | null) - decline_reason: (Scalars['String'] | null) + higher_division_id: (Scalars['uuid'] | null) + higher_slots: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - registered_by_steam_id: (Scalars['bigint'] | null) - requested_division_id: (Scalars['uuid'] | null) - seed: (Scalars['Int'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'league_team_seasons_min_fields' + lower_division_id: (Scalars['uuid'] | null) + resolved_at: (Scalars['timestamptz'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_relegation_playoffs_min_fields' } -/** response of any mutation on the table "league_team_seasons" */ -export interface league_team_seasons_mutation_response { +/** response of any mutation on the table "league_relegation_playoffs" */ +export interface league_relegation_playoffs_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_team_seasons[] - __typename: 'league_team_seasons_mutation_response' + returning: league_relegation_playoffs[] + __typename: 'league_relegation_playoffs_mutation_response' } -/** select columns of table "league_team_seasons" */ -export type league_team_seasons_select_column = 'assigned_division_id' | 'captain_steam_id' | 'created_at' | 'decline_reason' | 'id' | 'league_season_id' | 'league_team_id' | 'registered_by_steam_id' | 'requested_division_id' | 'seed' | 'status' | 'tournament_team_id' +/** select columns of table "league_relegation_playoffs" */ +export type league_relegation_playoffs_select_column = 'created_at' | 'higher_division_id' | 'higher_slots' | 'id' | 'league_season_id' | 'lower_division_id' | 'resolved_at' | 'tournament_id' /** aggregate stddev on columns */ -export interface league_team_seasons_stddev_fields { - captain_steam_id: (Scalars['Float'] | null) - registered_by_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'league_team_seasons_stddev_fields' +export interface league_relegation_playoffs_stddev_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface league_team_seasons_stddev_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - registered_by_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'league_team_seasons_stddev_pop_fields' +export interface league_relegation_playoffs_stddev_pop_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface league_team_seasons_stddev_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - registered_by_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'league_team_seasons_stddev_samp_fields' +export interface league_relegation_playoffs_stddev_samp_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_stddev_samp_fields' } /** aggregate sum on columns */ -export interface league_team_seasons_sum_fields { - captain_steam_id: (Scalars['bigint'] | null) - registered_by_steam_id: (Scalars['bigint'] | null) - seed: (Scalars['Int'] | null) - __typename: 'league_team_seasons_sum_fields' +export interface league_relegation_playoffs_sum_fields { + higher_slots: (Scalars['Int'] | null) + __typename: 'league_relegation_playoffs_sum_fields' } -/** update columns of table "league_team_seasons" */ -export type league_team_seasons_update_column = 'assigned_division_id' | 'captain_steam_id' | 'created_at' | 'decline_reason' | 'id' | 'league_season_id' | 'league_team_id' | 'registered_by_steam_id' | 'requested_division_id' | 'seed' | 'status' | 'tournament_team_id' +/** update columns of table "league_relegation_playoffs" */ +export type league_relegation_playoffs_update_column = 'created_at' | 'higher_division_id' | 'higher_slots' | 'id' | 'league_season_id' | 'lower_division_id' | 'resolved_at' | 'tournament_id' /** aggregate var_pop on columns */ -export interface league_team_seasons_var_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - registered_by_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'league_team_seasons_var_pop_fields' +export interface league_relegation_playoffs_var_pop_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_var_pop_fields' } /** aggregate var_samp on columns */ -export interface league_team_seasons_var_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - registered_by_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'league_team_seasons_var_samp_fields' +export interface league_relegation_playoffs_var_samp_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_var_samp_fields' } /** aggregate variance on columns */ -export interface league_team_seasons_variance_fields { - captain_steam_id: (Scalars['Float'] | null) - registered_by_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'league_team_seasons_variance_fields' +export interface league_relegation_playoffs_variance_fields { + higher_slots: (Scalars['Float'] | null) + __typename: 'league_relegation_playoffs_variance_fields' } -/** columns and relationships of "league_teams" */ -export interface league_teams { +/** columns and relationships of "league_scheduling_proposals" */ +export interface league_scheduling_proposals { + /** An object relationship */ + bracket: tournament_brackets created_at: Scalars['timestamptz'] + /** An object relationship */ + e_proposal_status: e_league_proposal_statuses id: Scalars['uuid'] - /** An array relationship */ - movements: league_team_movements[] - /** An aggregate relationship */ - movements_aggregate: league_team_movements_aggregate + message: (Scalars['String'] | null) /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - /** An array relationship */ - team_seasons: league_team_seasons[] - /** An aggregate relationship */ - team_seasons_aggregate: league_team_seasons_aggregate - __typename: 'league_teams' + proposed_by: players + proposed_by_league_team_season_id: (Scalars['uuid'] | null) + proposed_by_steam_id: Scalars['bigint'] + proposed_time: Scalars['timestamptz'] + /** An object relationship */ + responded_by: (players | null) + responded_by_steam_id: (Scalars['bigint'] | null) + status: e_league_proposal_statuses_enum + /** An object relationship */ + team_season: (league_team_seasons | null) + tournament_bracket_id: Scalars['uuid'] + __typename: 'league_scheduling_proposals' } -/** aggregated selection of "league_teams" */ -export interface league_teams_aggregate { - aggregate: (league_teams_aggregate_fields | null) - nodes: league_teams[] - __typename: 'league_teams_aggregate' +/** aggregated selection of "league_scheduling_proposals" */ +export interface league_scheduling_proposals_aggregate { + aggregate: (league_scheduling_proposals_aggregate_fields | null) + nodes: league_scheduling_proposals[] + __typename: 'league_scheduling_proposals_aggregate' } -/** aggregate fields of "league_teams" */ -export interface league_teams_aggregate_fields { +/** aggregate fields of "league_scheduling_proposals" */ +export interface league_scheduling_proposals_aggregate_fields { + avg: (league_scheduling_proposals_avg_fields | null) count: Scalars['Int'] - max: (league_teams_max_fields | null) - min: (league_teams_min_fields | null) - __typename: 'league_teams_aggregate_fields' + max: (league_scheduling_proposals_max_fields | null) + min: (league_scheduling_proposals_min_fields | null) + stddev: (league_scheduling_proposals_stddev_fields | null) + stddev_pop: (league_scheduling_proposals_stddev_pop_fields | null) + stddev_samp: (league_scheduling_proposals_stddev_samp_fields | null) + sum: (league_scheduling_proposals_sum_fields | null) + var_pop: (league_scheduling_proposals_var_pop_fields | null) + var_samp: (league_scheduling_proposals_var_samp_fields | null) + variance: (league_scheduling_proposals_variance_fields | null) + __typename: 'league_scheduling_proposals_aggregate_fields' } -/** unique or primary key constraints on table "league_teams" */ -export type league_teams_constraint = 'league_teams_pkey' | 'league_teams_team_id_key' +/** aggregate avg on columns */ +export interface league_scheduling_proposals_avg_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_avg_fields' +} + + +/** unique or primary key constraints on table "league_scheduling_proposals" */ +export type league_scheduling_proposals_constraint = 'league_scheduling_proposals_pkey' /** aggregate max on columns */ -export interface league_teams_max_fields { +export interface league_scheduling_proposals_max_fields { created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'league_teams_max_fields' + message: (Scalars['String'] | null) + proposed_by_league_team_season_id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_time: (Scalars['timestamptz'] | null) + responded_by_steam_id: (Scalars['bigint'] | null) + tournament_bracket_id: (Scalars['uuid'] | null) + __typename: 'league_scheduling_proposals_max_fields' } /** aggregate min on columns */ -export interface league_teams_min_fields { +export interface league_scheduling_proposals_min_fields { created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'league_teams_min_fields' + message: (Scalars['String'] | null) + proposed_by_league_team_season_id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_time: (Scalars['timestamptz'] | null) + responded_by_steam_id: (Scalars['bigint'] | null) + tournament_bracket_id: (Scalars['uuid'] | null) + __typename: 'league_scheduling_proposals_min_fields' } -/** response of any mutation on the table "league_teams" */ -export interface league_teams_mutation_response { +/** response of any mutation on the table "league_scheduling_proposals" */ +export interface league_scheduling_proposals_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: league_teams[] - __typename: 'league_teams_mutation_response' + returning: league_scheduling_proposals[] + __typename: 'league_scheduling_proposals_mutation_response' } -/** select columns of table "league_teams" */ -export type league_teams_select_column = 'created_at' | 'id' | 'team_id' +/** select columns of table "league_scheduling_proposals" */ +export type league_scheduling_proposals_select_column = 'created_at' | 'id' | 'message' | 'proposed_by_league_team_season_id' | 'proposed_by_steam_id' | 'proposed_time' | 'responded_by_steam_id' | 'status' | 'tournament_bracket_id' -/** update columns of table "league_teams" */ -export type league_teams_update_column = 'created_at' | 'id' | 'team_id' +/** aggregate stddev on columns */ +export interface league_scheduling_proposals_stddev_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_stddev_fields' +} -/** columns and relationships of "lobbies" */ -export interface lobbies { - access: e_lobby_access_enum - created_at: Scalars['timestamptz'] - /** An object relationship */ - e_lobby_access: e_lobby_access - id: Scalars['uuid'] - /** An array relationship */ - players: lobby_players[] - /** An aggregate relationship */ - players_aggregate: lobby_players_aggregate - __typename: 'lobbies' +/** aggregate stddev_pop on columns */ +export interface league_scheduling_proposals_stddev_pop_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_stddev_pop_fields' } -/** aggregated selection of "lobbies" */ -export interface lobbies_aggregate { - aggregate: (lobbies_aggregate_fields | null) - nodes: lobbies[] - __typename: 'lobbies_aggregate' +/** aggregate stddev_samp on columns */ +export interface league_scheduling_proposals_stddev_samp_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_stddev_samp_fields' } -/** aggregate fields of "lobbies" */ -export interface lobbies_aggregate_fields { - count: Scalars['Int'] - max: (lobbies_max_fields | null) - min: (lobbies_min_fields | null) - __typename: 'lobbies_aggregate_fields' +/** aggregate sum on columns */ +export interface league_scheduling_proposals_sum_fields { + proposed_by_steam_id: (Scalars['bigint'] | null) + responded_by_steam_id: (Scalars['bigint'] | null) + __typename: 'league_scheduling_proposals_sum_fields' } -/** unique or primary key constraints on table "lobbies" */ -export type lobbies_constraint = 'lobbies_pkey' +/** update columns of table "league_scheduling_proposals" */ +export type league_scheduling_proposals_update_column = 'created_at' | 'id' | 'message' | 'proposed_by_league_team_season_id' | 'proposed_by_steam_id' | 'proposed_time' | 'responded_by_steam_id' | 'status' | 'tournament_bracket_id' -/** aggregate max on columns */ -export interface lobbies_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - __typename: 'lobbies_max_fields' +/** aggregate var_pop on columns */ +export interface league_scheduling_proposals_var_pop_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_var_pop_fields' } -/** aggregate min on columns */ -export interface lobbies_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - __typename: 'lobbies_min_fields' +/** aggregate var_samp on columns */ +export interface league_scheduling_proposals_var_samp_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_var_samp_fields' } -/** response of any mutation on the table "lobbies" */ -export interface lobbies_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: lobbies[] - __typename: 'lobbies_mutation_response' +/** aggregate variance on columns */ +export interface league_scheduling_proposals_variance_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + responded_by_steam_id: (Scalars['Float'] | null) + __typename: 'league_scheduling_proposals_variance_fields' } -/** select columns of table "lobbies" */ -export type lobbies_select_column = 'access' | 'created_at' | 'id' - - -/** update columns of table "lobbies" */ -export type lobbies_update_column = 'access' | 'created_at' | 'id' - - -/** columns and relationships of "lobby_players" */ -export interface lobby_players { - captain: Scalars['Boolean'] - invited_by_steam_id: (Scalars['bigint'] | null) +/** columns and relationships of "league_season_divisions" */ +export interface league_season_divisions { + created_at: Scalars['timestamptz'] /** An object relationship */ - lobby: lobbies - lobby_id: Scalars['uuid'] + division: league_divisions + id: Scalars['uuid'] + league_division_id: Scalars['uuid'] + league_season_id: Scalars['uuid'] /** An object relationship */ - player: players - status: e_lobby_player_status_enum - steam_id: Scalars['bigint'] - __typename: 'lobby_players' + season: league_seasons + /** An array relationship */ + standings: v_league_division_standings[] + /** An aggregate relationship */ + standings_aggregate: v_league_division_standings_aggregate + /** An object relationship */ + tournament: (tournaments | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_season_divisions' } -/** aggregated selection of "lobby_players" */ -export interface lobby_players_aggregate { - aggregate: (lobby_players_aggregate_fields | null) - nodes: lobby_players[] - __typename: 'lobby_players_aggregate' +/** aggregated selection of "league_season_divisions" */ +export interface league_season_divisions_aggregate { + aggregate: (league_season_divisions_aggregate_fields | null) + nodes: league_season_divisions[] + __typename: 'league_season_divisions_aggregate' } -/** aggregate fields of "lobby_players" */ -export interface lobby_players_aggregate_fields { - avg: (lobby_players_avg_fields | null) +/** aggregate fields of "league_season_divisions" */ +export interface league_season_divisions_aggregate_fields { count: Scalars['Int'] - max: (lobby_players_max_fields | null) - min: (lobby_players_min_fields | null) - stddev: (lobby_players_stddev_fields | null) - stddev_pop: (lobby_players_stddev_pop_fields | null) - stddev_samp: (lobby_players_stddev_samp_fields | null) - sum: (lobby_players_sum_fields | null) - var_pop: (lobby_players_var_pop_fields | null) - var_samp: (lobby_players_var_samp_fields | null) - variance: (lobby_players_variance_fields | null) - __typename: 'lobby_players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface lobby_players_avg_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_avg_fields' + max: (league_season_divisions_max_fields | null) + min: (league_season_divisions_min_fields | null) + __typename: 'league_season_divisions_aggregate_fields' } -/** unique or primary key constraints on table "lobby_players" */ -export type lobby_players_constraint = 'lobby_players_pkey' +/** unique or primary key constraints on table "league_season_divisions" */ +export type league_season_divisions_constraint = 'league_season_divisions_league_season_id_league_division_id_key' | 'league_season_divisions_pkey' | 'league_season_divisions_tournament_id_key' /** aggregate max on columns */ -export interface lobby_players_max_fields { - invited_by_steam_id: (Scalars['bigint'] | null) - lobby_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'lobby_players_max_fields' +export interface league_season_divisions_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_season_divisions_max_fields' } /** aggregate min on columns */ -export interface lobby_players_min_fields { - invited_by_steam_id: (Scalars['bigint'] | null) - lobby_id: (Scalars['uuid'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'lobby_players_min_fields' +export interface league_season_divisions_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'league_season_divisions_min_fields' } -/** response of any mutation on the table "lobby_players" */ -export interface lobby_players_mutation_response { +/** response of any mutation on the table "league_season_divisions" */ +export interface league_season_divisions_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: lobby_players[] - __typename: 'lobby_players_mutation_response' + returning: league_season_divisions[] + __typename: 'league_season_divisions_mutation_response' } -/** select columns of table "lobby_players" */ -export type lobby_players_select_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | 'steam_id' +/** select columns of table "league_season_divisions" */ +export type league_season_divisions_select_column = 'created_at' | 'id' | 'league_division_id' | 'league_season_id' | 'tournament_id' -/** select "lobby_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "lobby_players" */ -export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns = 'captain' +/** update columns of table "league_season_divisions" */ +export type league_season_divisions_update_column = 'created_at' | 'id' | 'league_division_id' | 'league_season_id' | 'tournament_id' -/** select "lobby_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "lobby_players" */ -export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns = 'captain' +/** columns and relationships of "league_seasons" */ +export interface league_seasons { + auto_regular_season_format: Scalars['Boolean'] + /** A computed field, executes function "can_register_for_league_season" */ + can_register: (Scalars['Boolean'] | null) + created_at: Scalars['timestamptz'] + created_by_steam_id: (Scalars['bigint'] | null) + default_best_of: Scalars['Int'] + direct_promote_count: Scalars['Int'] + direct_relegate_count: Scalars['Int'] + /** An object relationship */ + e_league_season_status: e_league_season_statuses + games_per_week: Scalars['Int'] + id: Scalars['uuid'] + /** A computed field, executes function "is_league_season_admin" */ + is_league_admin: (Scalars['Boolean'] | null) + /** A computed field, executes function "league_season_is_roster_locked" */ + is_roster_locked: (Scalars['Boolean'] | null) + match_options_id: (Scalars['uuid'] | null) + /** An array relationship */ + match_weeks: league_match_weeks[] + /** An aggregate relationship */ + match_weeks_aggregate: league_match_weeks_aggregate + match_weeks_count: Scalars['Int'] + max_roster_size: (Scalars['Int'] | null) + min_roster_size: Scalars['Int'] + /** An array relationship */ + movements: league_team_movements[] + /** An aggregate relationship */ + movements_aggregate: league_team_movements_aggregate + /** A computed field, executes function "league_season_my_registration" */ + my_registration: (league_team_seasons[] | null) + name: Scalars['String'] + /** An object relationship */ + options: (match_options | null) + /** An array relationship */ + player_stats: v_league_season_player_stats[] + /** An aggregate relationship */ + player_stats_aggregate: v_league_season_player_stats_aggregate + playoff_best_of: Scalars['Int'] + playoff_round_best_of: Scalars['jsonb'] + playoff_seats: Scalars['Int'] + playoff_stage_type: e_tournament_stage_types_enum + playoff_third_place_match: Scalars['Boolean'] + promote_count: Scalars['Int'] + regular_season_stage_type: e_tournament_stage_types_enum + relegate_count: Scalars['Int'] + relegation_down_count: Scalars['Int'] + /** An array relationship */ + relegation_playoffs: league_relegation_playoffs[] + /** An aggregate relationship */ + relegation_playoffs_aggregate: league_relegation_playoffs_aggregate + relegation_up_count: Scalars['Int'] + roster_lock_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + season_divisions: league_season_divisions[] + /** An aggregate relationship */ + season_divisions_aggregate: league_season_divisions_aggregate + season_number: (Scalars['Int'] | null) + signup_closes_at: (Scalars['timestamptz'] | null) + signup_opens_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + standings: v_league_division_standings[] + /** An aggregate relationship */ + standings_aggregate: v_league_division_standings_aggregate + starts_at: (Scalars['timestamptz'] | null) + status: e_league_season_statuses_enum + /** An array relationship */ + team_seasons: league_team_seasons[] + /** An aggregate relationship */ + team_seasons_aggregate: league_team_seasons_aggregate + week_best_of: Scalars['jsonb'] + __typename: 'league_seasons' +} + + +/** aggregated selection of "league_seasons" */ +export interface league_seasons_aggregate { + aggregate: (league_seasons_aggregate_fields | null) + nodes: league_seasons[] + __typename: 'league_seasons_aggregate' +} + + +/** aggregate fields of "league_seasons" */ +export interface league_seasons_aggregate_fields { + avg: (league_seasons_avg_fields | null) + count: Scalars['Int'] + max: (league_seasons_max_fields | null) + min: (league_seasons_min_fields | null) + stddev: (league_seasons_stddev_fields | null) + stddev_pop: (league_seasons_stddev_pop_fields | null) + stddev_samp: (league_seasons_stddev_samp_fields | null) + sum: (league_seasons_sum_fields | null) + var_pop: (league_seasons_var_pop_fields | null) + var_samp: (league_seasons_var_samp_fields | null) + variance: (league_seasons_variance_fields | null) + __typename: 'league_seasons_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface league_seasons_avg_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_avg_fields' +} + + +/** unique or primary key constraints on table "league_seasons" */ +export type league_seasons_constraint = 'league_seasons_name_key' | 'league_seasons_pkey' | 'league_seasons_season_number_key' + + +/** aggregate max on columns */ +export interface league_seasons_max_fields { + created_at: (Scalars['timestamptz'] | null) + created_by_steam_id: (Scalars['bigint'] | null) + default_best_of: (Scalars['Int'] | null) + direct_promote_count: (Scalars['Int'] | null) + direct_relegate_count: (Scalars['Int'] | null) + games_per_week: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + match_weeks_count: (Scalars['Int'] | null) + max_roster_size: (Scalars['Int'] | null) + min_roster_size: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + playoff_best_of: (Scalars['Int'] | null) + playoff_seats: (Scalars['Int'] | null) + promote_count: (Scalars['Int'] | null) + relegate_count: (Scalars['Int'] | null) + relegation_down_count: (Scalars['Int'] | null) + relegation_up_count: (Scalars['Int'] | null) + roster_lock_at: (Scalars['timestamptz'] | null) + season_number: (Scalars['Int'] | null) + signup_closes_at: (Scalars['timestamptz'] | null) + signup_opens_at: (Scalars['timestamptz'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'league_seasons_max_fields' +} + + +/** aggregate min on columns */ +export interface league_seasons_min_fields { + created_at: (Scalars['timestamptz'] | null) + created_by_steam_id: (Scalars['bigint'] | null) + default_best_of: (Scalars['Int'] | null) + direct_promote_count: (Scalars['Int'] | null) + direct_relegate_count: (Scalars['Int'] | null) + games_per_week: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + match_weeks_count: (Scalars['Int'] | null) + max_roster_size: (Scalars['Int'] | null) + min_roster_size: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + playoff_best_of: (Scalars['Int'] | null) + playoff_seats: (Scalars['Int'] | null) + promote_count: (Scalars['Int'] | null) + relegate_count: (Scalars['Int'] | null) + relegation_down_count: (Scalars['Int'] | null) + relegation_up_count: (Scalars['Int'] | null) + roster_lock_at: (Scalars['timestamptz'] | null) + season_number: (Scalars['Int'] | null) + signup_closes_at: (Scalars['timestamptz'] | null) + signup_opens_at: (Scalars['timestamptz'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'league_seasons_min_fields' +} + + +/** response of any mutation on the table "league_seasons" */ +export interface league_seasons_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: league_seasons[] + __typename: 'league_seasons_mutation_response' +} + + +/** select columns of table "league_seasons" */ +export type league_seasons_select_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' /** aggregate stddev on columns */ -export interface lobby_players_stddev_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_stddev_fields' +export interface league_seasons_stddev_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface lobby_players_stddev_pop_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_stddev_pop_fields' +export interface league_seasons_stddev_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface lobby_players_stddev_samp_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_stddev_samp_fields' +export interface league_seasons_stddev_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_stddev_samp_fields' } /** aggregate sum on columns */ -export interface lobby_players_sum_fields { - invited_by_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'lobby_players_sum_fields' +export interface league_seasons_sum_fields { + created_by_steam_id: (Scalars['bigint'] | null) + default_best_of: (Scalars['Int'] | null) + direct_promote_count: (Scalars['Int'] | null) + direct_relegate_count: (Scalars['Int'] | null) + games_per_week: (Scalars['Int'] | null) + match_weeks_count: (Scalars['Int'] | null) + max_roster_size: (Scalars['Int'] | null) + min_roster_size: (Scalars['Int'] | null) + playoff_best_of: (Scalars['Int'] | null) + playoff_seats: (Scalars['Int'] | null) + promote_count: (Scalars['Int'] | null) + relegate_count: (Scalars['Int'] | null) + relegation_down_count: (Scalars['Int'] | null) + relegation_up_count: (Scalars['Int'] | null) + season_number: (Scalars['Int'] | null) + __typename: 'league_seasons_sum_fields' } -/** update columns of table "lobby_players" */ -export type lobby_players_update_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | 'steam_id' +/** update columns of table "league_seasons" */ +export type league_seasons_update_column = 'auto_regular_season_format' | 'created_at' | 'created_by_steam_id' | 'default_best_of' | 'direct_promote_count' | 'direct_relegate_count' | 'games_per_week' | 'id' | 'match_options_id' | 'match_weeks_count' | 'max_roster_size' | 'min_roster_size' | 'name' | 'playoff_best_of' | 'playoff_round_best_of' | 'playoff_seats' | 'playoff_stage_type' | 'playoff_third_place_match' | 'promote_count' | 'regular_season_stage_type' | 'relegate_count' | 'relegation_down_count' | 'relegation_up_count' | 'roster_lock_at' | 'season_number' | 'signup_closes_at' | 'signup_opens_at' | 'starts_at' | 'status' | 'week_best_of' /** aggregate var_pop on columns */ -export interface lobby_players_var_pop_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_var_pop_fields' +export interface league_seasons_var_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_var_pop_fields' } /** aggregate var_samp on columns */ -export interface lobby_players_var_samp_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_var_samp_fields' +export interface league_seasons_var_samp_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_var_samp_fields' } /** aggregate variance on columns */ -export interface lobby_players_variance_fields { - invited_by_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'lobby_players_variance_fields' +export interface league_seasons_variance_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_variance_fields' } -/** columns and relationships of "map_pools" */ -export interface map_pools { +/** columns and relationships of "league_team_movements" */ +export interface league_team_movements { + approved_at: (Scalars['timestamptz'] | null) /** An object relationship */ - e_type: e_map_pool_types - enabled: Scalars['Boolean'] + approved_by: (players | null) + approved_by_steam_id: (Scalars['bigint'] | null) + /** An object relationship */ + computed_to_division: (league_divisions | null) + computed_to_division_id: (Scalars['uuid'] | null) + created_at: Scalars['timestamptz'] + /** An object relationship */ + e_movement_type: e_league_movement_types + final_rank: (Scalars['Int'] | null) + /** An object relationship */ + final_to_division: (league_divisions | null) + final_to_division_id: (Scalars['uuid'] | null) + /** An object relationship */ + from_division: (league_divisions | null) + from_division_id: (Scalars['uuid'] | null) id: Scalars['uuid'] - /** An array relationship */ - maps: v_pool_maps[] - /** An aggregate relationship */ - maps_aggregate: v_pool_maps_aggregate - seed: Scalars['Boolean'] - type: e_map_pool_types_enum - __typename: 'map_pools' + league_season_id: Scalars['uuid'] + /** An object relationship */ + league_team: league_teams + league_team_id: Scalars['uuid'] + /** An object relationship */ + season: league_seasons + type: e_league_movement_types_enum + __typename: 'league_team_movements' } -/** aggregated selection of "map_pools" */ -export interface map_pools_aggregate { - aggregate: (map_pools_aggregate_fields | null) - nodes: map_pools[] - __typename: 'map_pools_aggregate' +/** aggregated selection of "league_team_movements" */ +export interface league_team_movements_aggregate { + aggregate: (league_team_movements_aggregate_fields | null) + nodes: league_team_movements[] + __typename: 'league_team_movements_aggregate' } -/** aggregate fields of "map_pools" */ -export interface map_pools_aggregate_fields { +/** aggregate fields of "league_team_movements" */ +export interface league_team_movements_aggregate_fields { + avg: (league_team_movements_avg_fields | null) count: Scalars['Int'] - max: (map_pools_max_fields | null) - min: (map_pools_min_fields | null) - __typename: 'map_pools_aggregate_fields' + max: (league_team_movements_max_fields | null) + min: (league_team_movements_min_fields | null) + stddev: (league_team_movements_stddev_fields | null) + stddev_pop: (league_team_movements_stddev_pop_fields | null) + stddev_samp: (league_team_movements_stddev_samp_fields | null) + sum: (league_team_movements_sum_fields | null) + var_pop: (league_team_movements_var_pop_fields | null) + var_samp: (league_team_movements_var_samp_fields | null) + variance: (league_team_movements_variance_fields | null) + __typename: 'league_team_movements_aggregate_fields' } -/** unique or primary key constraints on table "map_pools" */ -export type map_pools_constraint = 'map_pools_pkey' +/** aggregate avg on columns */ +export interface league_team_movements_avg_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_avg_fields' +} + + +/** unique or primary key constraints on table "league_team_movements" */ +export type league_team_movements_constraint = 'league_team_movements_league_season_id_league_team_id_key' | 'league_team_movements_pkey' /** aggregate max on columns */ -export interface map_pools_max_fields { +export interface league_team_movements_max_fields { + approved_at: (Scalars['timestamptz'] | null) + approved_by_steam_id: (Scalars['bigint'] | null) + computed_to_division_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + final_rank: (Scalars['Int'] | null) + final_to_division_id: (Scalars['uuid'] | null) + from_division_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) - __typename: 'map_pools_max_fields' + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_movements_max_fields' } /** aggregate min on columns */ -export interface map_pools_min_fields { +export interface league_team_movements_min_fields { + approved_at: (Scalars['timestamptz'] | null) + approved_by_steam_id: (Scalars['bigint'] | null) + computed_to_division_id: (Scalars['uuid'] | null) + created_at: (Scalars['timestamptz'] | null) + final_rank: (Scalars['Int'] | null) + final_to_division_id: (Scalars['uuid'] | null) + from_division_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) - __typename: 'map_pools_min_fields' + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_movements_min_fields' } -/** response of any mutation on the table "map_pools" */ -export interface map_pools_mutation_response { +/** response of any mutation on the table "league_team_movements" */ +export interface league_team_movements_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: map_pools[] - __typename: 'map_pools_mutation_response' + returning: league_team_movements[] + __typename: 'league_team_movements_mutation_response' } -/** select columns of table "map_pools" */ -export type map_pools_select_column = 'enabled' | 'id' | 'seed' | 'type' +/** select columns of table "league_team_movements" */ +export type league_team_movements_select_column = 'approved_at' | 'approved_by_steam_id' | 'computed_to_division_id' | 'created_at' | 'final_rank' | 'final_to_division_id' | 'from_division_id' | 'id' | 'league_season_id' | 'league_team_id' | 'type' -/** update columns of table "map_pools" */ -export type map_pools_update_column = 'enabled' | 'id' | 'seed' | 'type' +/** aggregate stddev on columns */ +export interface league_team_movements_stddev_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_stddev_fields' +} -/** columns and relationships of "maps" */ -export interface maps { - active_pool: Scalars['Boolean'] - /** An object relationship */ - e_match_type: e_match_types - enabled: Scalars['Boolean'] - id: Scalars['uuid'] - label: (Scalars['String'] | null) - /** An array relationship */ - match_maps: match_maps[] - /** An aggregate relationship */ - match_maps_aggregate: match_maps_aggregate - /** An array relationship */ - match_veto_picks: match_map_veto_picks[] - /** An aggregate relationship */ - match_veto_picks_aggregate: match_map_veto_picks_aggregate - name: Scalars['String'] - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - type: e_match_types_enum - workshop_map_id: (Scalars['String'] | null) - __typename: 'maps' +/** aggregate stddev_pop on columns */ +export interface league_team_movements_stddev_pop_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_stddev_pop_fields' } -/** aggregated selection of "maps" */ -export interface maps_aggregate { - aggregate: (maps_aggregate_fields | null) - nodes: maps[] - __typename: 'maps_aggregate' +/** aggregate stddev_samp on columns */ +export interface league_team_movements_stddev_samp_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_stddev_samp_fields' } -/** aggregate fields of "maps" */ -export interface maps_aggregate_fields { - count: Scalars['Int'] - max: (maps_max_fields | null) - min: (maps_min_fields | null) - __typename: 'maps_aggregate_fields' +/** aggregate sum on columns */ +export interface league_team_movements_sum_fields { + approved_by_steam_id: (Scalars['bigint'] | null) + final_rank: (Scalars['Int'] | null) + __typename: 'league_team_movements_sum_fields' } -/** unique or primary key constraints on table "maps" */ -export type maps_constraint = 'maps_name_type_key' | 'maps_pkey' +/** update columns of table "league_team_movements" */ +export type league_team_movements_update_column = 'approved_at' | 'approved_by_steam_id' | 'computed_to_division_id' | 'created_at' | 'final_rank' | 'final_to_division_id' | 'from_division_id' | 'id' | 'league_season_id' | 'league_team_id' | 'type' -/** aggregate max on columns */ -export interface maps_max_fields { - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'maps_max_fields' +/** aggregate var_pop on columns */ +export interface league_team_movements_var_pop_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_var_pop_fields' } -/** aggregate min on columns */ -export interface maps_min_fields { - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'maps_min_fields' +/** aggregate var_samp on columns */ +export interface league_team_movements_var_samp_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_var_samp_fields' } -/** response of any mutation on the table "maps" */ -export interface maps_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: maps[] - __typename: 'maps_mutation_response' +/** aggregate variance on columns */ +export interface league_team_movements_variance_fields { + approved_by_steam_id: (Scalars['Float'] | null) + final_rank: (Scalars['Float'] | null) + __typename: 'league_team_movements_variance_fields' } -/** select columns of table "maps" */ -export type maps_select_column = 'active_pool' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' - - -/** select "maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "maps" */ -export type maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns = 'active_pool' | 'enabled' - - -/** select "maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "maps" */ -export type maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns = 'active_pool' | 'enabled' - - -/** update columns of table "maps" */ -export type maps_update_column = 'active_pool' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' - - -/** columns and relationships of "match_clips" */ -export interface match_clips { - created_at: Scalars['timestamptz'] - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) - id: Scalars['uuid'] - kills_count: (Scalars['Int'] | null) - /** An object relationship */ - match_map: match_maps - /** An object relationship */ - match_map_demo: (match_map_demos | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: Scalars['uuid'] - /** An array relationship */ - render_jobs: clip_render_jobs[] - /** An aggregate relationship */ - render_jobs_aggregate: clip_render_jobs_aggregate - round: (Scalars['Int'] | null) - size: Scalars['bigint'] +/** columns and relationships of "league_team_rosters" */ +export interface league_team_rosters { + added_at: Scalars['timestamptz'] + league_team_season_id: Scalars['uuid'] /** An object relationship */ - target: (players | null) - target_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url: (Scalars['String'] | null) - thumbnail_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) + player: players + player_steam_id: Scalars['bigint'] + removed_at: (Scalars['timestamptz'] | null) + removed_reason: (Scalars['String'] | null) + status: e_team_roster_statuses_enum /** An object relationship */ - user: (players | null) - user_steam_id: (Scalars['bigint'] | null) - views_count: Scalars['Int'] - visibility: e_match_clip_visibility_enum - __typename: 'match_clips' + team_season: league_team_seasons + __typename: 'league_team_rosters' } -/** aggregated selection of "match_clips" */ -export interface match_clips_aggregate { - aggregate: (match_clips_aggregate_fields | null) - nodes: match_clips[] - __typename: 'match_clips_aggregate' +/** aggregated selection of "league_team_rosters" */ +export interface league_team_rosters_aggregate { + aggregate: (league_team_rosters_aggregate_fields | null) + nodes: league_team_rosters[] + __typename: 'league_team_rosters_aggregate' } -/** aggregate fields of "match_clips" */ -export interface match_clips_aggregate_fields { - avg: (match_clips_avg_fields | null) +/** aggregate fields of "league_team_rosters" */ +export interface league_team_rosters_aggregate_fields { + avg: (league_team_rosters_avg_fields | null) count: Scalars['Int'] - max: (match_clips_max_fields | null) - min: (match_clips_min_fields | null) - stddev: (match_clips_stddev_fields | null) - stddev_pop: (match_clips_stddev_pop_fields | null) - stddev_samp: (match_clips_stddev_samp_fields | null) - sum: (match_clips_sum_fields | null) - var_pop: (match_clips_var_pop_fields | null) - var_samp: (match_clips_var_samp_fields | null) - variance: (match_clips_variance_fields | null) - __typename: 'match_clips_aggregate_fields' + max: (league_team_rosters_max_fields | null) + min: (league_team_rosters_min_fields | null) + stddev: (league_team_rosters_stddev_fields | null) + stddev_pop: (league_team_rosters_stddev_pop_fields | null) + stddev_samp: (league_team_rosters_stddev_samp_fields | null) + sum: (league_team_rosters_sum_fields | null) + var_pop: (league_team_rosters_var_pop_fields | null) + var_samp: (league_team_rosters_var_samp_fields | null) + variance: (league_team_rosters_variance_fields | null) + __typename: 'league_team_rosters_aggregate_fields' } /** aggregate avg on columns */ -export interface match_clips_avg_fields { - duration_ms: (Scalars['Float'] | null) - kills_count: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - target_steam_id: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - views_count: (Scalars['Float'] | null) - __typename: 'match_clips_avg_fields' +export interface league_team_rosters_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_avg_fields' } -/** unique or primary key constraints on table "match_clips" */ -export type match_clips_constraint = 'match_clips_pkey' +/** unique or primary key constraints on table "league_team_rosters" */ +export type league_team_rosters_constraint = 'league_team_rosters_pkey' /** aggregate max on columns */ -export interface match_clips_max_fields { - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - kills_count: (Scalars['Int'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - size: (Scalars['bigint'] | null) - target_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url: (Scalars['String'] | null) - thumbnail_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - user_steam_id: (Scalars['bigint'] | null) - views_count: (Scalars['Int'] | null) - __typename: 'match_clips_max_fields' +export interface league_team_rosters_max_fields { + added_at: (Scalars['timestamptz'] | null) + league_team_season_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + removed_at: (Scalars['timestamptz'] | null) + removed_reason: (Scalars['String'] | null) + __typename: 'league_team_rosters_max_fields' } /** aggregate min on columns */ -export interface match_clips_min_fields { - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "clip_download_url" */ - download_url: (Scalars['String'] | null) - duration_ms: (Scalars['Int'] | null) - file: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - kills_count: (Scalars['Int'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - size: (Scalars['bigint'] | null) - target_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "clip_thumbnail_download_url" */ - thumbnail_download_url: (Scalars['String'] | null) - thumbnail_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - user_steam_id: (Scalars['bigint'] | null) - views_count: (Scalars['Int'] | null) - __typename: 'match_clips_min_fields' +export interface league_team_rosters_min_fields { + added_at: (Scalars['timestamptz'] | null) + league_team_season_id: (Scalars['uuid'] | null) + player_steam_id: (Scalars['bigint'] | null) + removed_at: (Scalars['timestamptz'] | null) + removed_reason: (Scalars['String'] | null) + __typename: 'league_team_rosters_min_fields' } -/** response of any mutation on the table "match_clips" */ -export interface match_clips_mutation_response { +/** response of any mutation on the table "league_team_rosters" */ +export interface league_team_rosters_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_clips[] - __typename: 'match_clips_mutation_response' + returning: league_team_rosters[] + __typename: 'league_team_rosters_mutation_response' } -/** select columns of table "match_clips" */ -export type match_clips_select_column = 'created_at' | 'duration_ms' | 'file' | 'id' | 'kills_count' | 'match_map_demo_id' | 'match_map_id' | 'round' | 'size' | 'target_steam_id' | 'thumbnail_url' | 'title' | 'user_steam_id' | 'views_count' | 'visibility' +/** select columns of table "league_team_rosters" */ +export type league_team_rosters_select_column = 'added_at' | 'league_team_season_id' | 'player_steam_id' | 'removed_at' | 'removed_reason' | 'status' /** aggregate stddev on columns */ -export interface match_clips_stddev_fields { - duration_ms: (Scalars['Float'] | null) - kills_count: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - target_steam_id: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - views_count: (Scalars['Float'] | null) - __typename: 'match_clips_stddev_fields' +export interface league_team_rosters_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_clips_stddev_pop_fields { - duration_ms: (Scalars['Float'] | null) - kills_count: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - target_steam_id: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - views_count: (Scalars['Float'] | null) - __typename: 'match_clips_stddev_pop_fields' +export interface league_team_rosters_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_clips_stddev_samp_fields { - duration_ms: (Scalars['Float'] | null) - kills_count: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - target_steam_id: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - views_count: (Scalars['Float'] | null) - __typename: 'match_clips_stddev_samp_fields' +export interface league_team_rosters_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_clips_sum_fields { - duration_ms: (Scalars['Int'] | null) - kills_count: (Scalars['Int'] | null) - round: (Scalars['Int'] | null) - size: (Scalars['bigint'] | null) - target_steam_id: (Scalars['bigint'] | null) - user_steam_id: (Scalars['bigint'] | null) - views_count: (Scalars['Int'] | null) - __typename: 'match_clips_sum_fields' +export interface league_team_rosters_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'league_team_rosters_sum_fields' } -/** update columns of table "match_clips" */ -export type match_clips_update_column = 'created_at' | 'duration_ms' | 'file' | 'id' | 'kills_count' | 'match_map_demo_id' | 'match_map_id' | 'round' | 'size' | 'target_steam_id' | 'thumbnail_url' | 'title' | 'user_steam_id' | 'views_count' | 'visibility' +/** update columns of table "league_team_rosters" */ +export type league_team_rosters_update_column = 'added_at' | 'league_team_season_id' | 'player_steam_id' | 'removed_at' | 'removed_reason' | 'status' /** aggregate var_pop on columns */ -export interface match_clips_var_pop_fields { - duration_ms: (Scalars['Float'] | null) - kills_count: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - target_steam_id: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - views_count: (Scalars['Float'] | null) - __typename: 'match_clips_var_pop_fields' +export interface league_team_rosters_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_var_pop_fields' } /** aggregate var_samp on columns */ -export interface match_clips_var_samp_fields { - duration_ms: (Scalars['Float'] | null) - kills_count: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - target_steam_id: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - views_count: (Scalars['Float'] | null) - __typename: 'match_clips_var_samp_fields' +export interface league_team_rosters_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_var_samp_fields' } /** aggregate variance on columns */ -export interface match_clips_variance_fields { - duration_ms: (Scalars['Float'] | null) - kills_count: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - target_steam_id: (Scalars['Float'] | null) - user_steam_id: (Scalars['Float'] | null) - views_count: (Scalars['Float'] | null) - __typename: 'match_clips_variance_fields' +export interface league_team_rosters_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'league_team_rosters_variance_fields' } -/** columns and relationships of "match_demo_sessions" */ -export interface match_demo_sessions { +/** columns and relationships of "league_team_seasons" */ +export interface league_team_seasons { + /** An object relationship */ + assigned_division: (league_divisions | null) + assigned_division_id: (Scalars['uuid'] | null) + /** An object relationship */ + captain: (players | null) + captain_steam_id: (Scalars['bigint'] | null) created_at: Scalars['timestamptz'] - error_message: (Scalars['String'] | null) + decline_reason: (Scalars['String'] | null) /** An object relationship */ - game_server_node: (game_server_nodes | null) - game_server_node_id: (Scalars['String'] | null) + e_registration_status: e_league_registration_statuses id: Scalars['uuid'] - k8s_job_name: Scalars['String'] - last_activity_at: Scalars['timestamptz'] - last_status_at: Scalars['timestamptz'] + league_season_id: Scalars['uuid'] /** An object relationship */ - match: matches - match_id: Scalars['uuid'] + league_team: league_teams + league_team_id: Scalars['uuid'] /** An object relationship */ - match_map: match_maps + registered_by: (players | null) + registered_by_steam_id: (Scalars['bigint'] | null) /** An object relationship */ - match_map_demo: (match_map_demos | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: Scalars['uuid'] - status: Scalars['String'] - status_history: Scalars['jsonb'] - stream_url: (Scalars['String'] | null) + requested_division: (league_divisions | null) + requested_division_id: (Scalars['uuid'] | null) + /** An array relationship */ + roster: league_team_rosters[] + /** An aggregate relationship */ + roster_aggregate: league_team_rosters_aggregate /** An object relationship */ - watcher: players - watcher_steam_id: Scalars['bigint'] - __typename: 'match_demo_sessions' + season: league_seasons + seed: (Scalars['Int'] | null) + status: e_league_registration_statuses_enum + /** An object relationship */ + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_seasons' } -/** aggregated selection of "match_demo_sessions" */ -export interface match_demo_sessions_aggregate { - aggregate: (match_demo_sessions_aggregate_fields | null) - nodes: match_demo_sessions[] - __typename: 'match_demo_sessions_aggregate' +/** aggregated selection of "league_team_seasons" */ +export interface league_team_seasons_aggregate { + aggregate: (league_team_seasons_aggregate_fields | null) + nodes: league_team_seasons[] + __typename: 'league_team_seasons_aggregate' } -/** aggregate fields of "match_demo_sessions" */ -export interface match_demo_sessions_aggregate_fields { - avg: (match_demo_sessions_avg_fields | null) +/** aggregate fields of "league_team_seasons" */ +export interface league_team_seasons_aggregate_fields { + avg: (league_team_seasons_avg_fields | null) count: Scalars['Int'] - max: (match_demo_sessions_max_fields | null) - min: (match_demo_sessions_min_fields | null) - stddev: (match_demo_sessions_stddev_fields | null) - stddev_pop: (match_demo_sessions_stddev_pop_fields | null) - stddev_samp: (match_demo_sessions_stddev_samp_fields | null) - sum: (match_demo_sessions_sum_fields | null) - var_pop: (match_demo_sessions_var_pop_fields | null) - var_samp: (match_demo_sessions_var_samp_fields | null) - variance: (match_demo_sessions_variance_fields | null) - __typename: 'match_demo_sessions_aggregate_fields' + max: (league_team_seasons_max_fields | null) + min: (league_team_seasons_min_fields | null) + stddev: (league_team_seasons_stddev_fields | null) + stddev_pop: (league_team_seasons_stddev_pop_fields | null) + stddev_samp: (league_team_seasons_stddev_samp_fields | null) + sum: (league_team_seasons_sum_fields | null) + var_pop: (league_team_seasons_var_pop_fields | null) + var_samp: (league_team_seasons_var_samp_fields | null) + variance: (league_team_seasons_variance_fields | null) + __typename: 'league_team_seasons_aggregate_fields' } /** aggregate avg on columns */ -export interface match_demo_sessions_avg_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_avg_fields' +export interface league_team_seasons_avg_fields { + captain_steam_id: (Scalars['Float'] | null) + registered_by_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'league_team_seasons_avg_fields' } -/** unique or primary key constraints on table "match_demo_sessions" */ -export type match_demo_sessions_constraint = 'match_demo_sessions_per_user_per_map_uniq' | 'match_demo_sessions_pkey' +/** unique or primary key constraints on table "league_team_seasons" */ +export type league_team_seasons_constraint = 'league_team_seasons_league_season_id_league_team_id_key' | 'league_team_seasons_pkey' /** aggregate max on columns */ -export interface match_demo_sessions_max_fields { +export interface league_team_seasons_max_fields { + assigned_division_id: (Scalars['uuid'] | null) + captain_steam_id: (Scalars['bigint'] | null) created_at: (Scalars['timestamptz'] | null) - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) + decline_reason: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - k8s_job_name: (Scalars['String'] | null) - last_activity_at: (Scalars['timestamptz'] | null) - last_status_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - status: (Scalars['String'] | null) - stream_url: (Scalars['String'] | null) - watcher_steam_id: (Scalars['bigint'] | null) - __typename: 'match_demo_sessions_max_fields' + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + registered_by_steam_id: (Scalars['bigint'] | null) + requested_division_id: (Scalars['uuid'] | null) + seed: (Scalars['Int'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_seasons_max_fields' } /** aggregate min on columns */ -export interface match_demo_sessions_min_fields { +export interface league_team_seasons_min_fields { + assigned_division_id: (Scalars['uuid'] | null) + captain_steam_id: (Scalars['bigint'] | null) created_at: (Scalars['timestamptz'] | null) - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) + decline_reason: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - k8s_job_name: (Scalars['String'] | null) - last_activity_at: (Scalars['timestamptz'] | null) - last_status_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_map_demo_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - status: (Scalars['String'] | null) - stream_url: (Scalars['String'] | null) - watcher_steam_id: (Scalars['bigint'] | null) - __typename: 'match_demo_sessions_min_fields' + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + registered_by_steam_id: (Scalars['bigint'] | null) + requested_division_id: (Scalars['uuid'] | null) + seed: (Scalars['Int'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_seasons_min_fields' } -/** response of any mutation on the table "match_demo_sessions" */ -export interface match_demo_sessions_mutation_response { +/** response of any mutation on the table "league_team_seasons" */ +export interface league_team_seasons_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_demo_sessions[] - __typename: 'match_demo_sessions_mutation_response' + returning: league_team_seasons[] + __typename: 'league_team_seasons_mutation_response' } -/** select columns of table "match_demo_sessions" */ -export type match_demo_sessions_select_column = 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_activity_at' | 'last_status_at' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'status' | 'status_history' | 'stream_url' | 'watcher_steam_id' +/** select columns of table "league_team_seasons" */ +export type league_team_seasons_select_column = 'assigned_division_id' | 'captain_steam_id' | 'created_at' | 'decline_reason' | 'id' | 'league_season_id' | 'league_team_id' | 'registered_by_steam_id' | 'requested_division_id' | 'seed' | 'status' | 'tournament_team_id' /** aggregate stddev on columns */ -export interface match_demo_sessions_stddev_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_stddev_fields' +export interface league_team_seasons_stddev_fields { + captain_steam_id: (Scalars['Float'] | null) + registered_by_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'league_team_seasons_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_demo_sessions_stddev_pop_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_stddev_pop_fields' +export interface league_team_seasons_stddev_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + registered_by_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'league_team_seasons_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_demo_sessions_stddev_samp_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_stddev_samp_fields' +export interface league_team_seasons_stddev_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + registered_by_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'league_team_seasons_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_demo_sessions_sum_fields { - watcher_steam_id: (Scalars['bigint'] | null) - __typename: 'match_demo_sessions_sum_fields' +export interface league_team_seasons_sum_fields { + captain_steam_id: (Scalars['bigint'] | null) + registered_by_steam_id: (Scalars['bigint'] | null) + seed: (Scalars['Int'] | null) + __typename: 'league_team_seasons_sum_fields' } -/** update columns of table "match_demo_sessions" */ -export type match_demo_sessions_update_column = 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_activity_at' | 'last_status_at' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'status' | 'status_history' | 'stream_url' | 'watcher_steam_id' +/** update columns of table "league_team_seasons" */ +export type league_team_seasons_update_column = 'assigned_division_id' | 'captain_steam_id' | 'created_at' | 'decline_reason' | 'id' | 'league_season_id' | 'league_team_id' | 'registered_by_steam_id' | 'requested_division_id' | 'seed' | 'status' | 'tournament_team_id' /** aggregate var_pop on columns */ -export interface match_demo_sessions_var_pop_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_var_pop_fields' -} - +export interface league_team_seasons_var_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + registered_by_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'league_team_seasons_var_pop_fields' +} + /** aggregate var_samp on columns */ -export interface match_demo_sessions_var_samp_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_var_samp_fields' +export interface league_team_seasons_var_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + registered_by_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'league_team_seasons_var_samp_fields' } /** aggregate variance on columns */ -export interface match_demo_sessions_variance_fields { - watcher_steam_id: (Scalars['Float'] | null) - __typename: 'match_demo_sessions_variance_fields' +export interface league_team_seasons_variance_fields { + captain_steam_id: (Scalars['Float'] | null) + registered_by_steam_id: (Scalars['Float'] | null) + seed: (Scalars['Float'] | null) + __typename: 'league_team_seasons_variance_fields' } -/** relational table for assigning a players to a match and lineup */ -export interface match_lineup_players { - captain: Scalars['Boolean'] - checked_in: Scalars['Boolean'] - discord_id: (Scalars['String'] | null) +/** columns and relationships of "league_teams" */ +export interface league_teams { + created_at: Scalars['timestamptz'] id: Scalars['uuid'] + /** An array relationship */ + movements: league_team_movements[] + /** An aggregate relationship */ + movements_aggregate: league_team_movements_aggregate /** An object relationship */ - lineup: match_lineups - match_lineup_id: Scalars['uuid'] - placeholder_name: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players' + team: teams + team_id: Scalars['uuid'] + /** An array relationship */ + team_seasons: league_team_seasons[] + /** An aggregate relationship */ + team_seasons_aggregate: league_team_seasons_aggregate + __typename: 'league_teams' } -/** aggregated selection of "match_lineup_players" */ -export interface match_lineup_players_aggregate { - aggregate: (match_lineup_players_aggregate_fields | null) - nodes: match_lineup_players[] - __typename: 'match_lineup_players_aggregate' +/** aggregated selection of "league_teams" */ +export interface league_teams_aggregate { + aggregate: (league_teams_aggregate_fields | null) + nodes: league_teams[] + __typename: 'league_teams_aggregate' } -/** aggregate fields of "match_lineup_players" */ -export interface match_lineup_players_aggregate_fields { - avg: (match_lineup_players_avg_fields | null) +/** aggregate fields of "league_teams" */ +export interface league_teams_aggregate_fields { count: Scalars['Int'] - max: (match_lineup_players_max_fields | null) - min: (match_lineup_players_min_fields | null) - stddev: (match_lineup_players_stddev_fields | null) - stddev_pop: (match_lineup_players_stddev_pop_fields | null) - stddev_samp: (match_lineup_players_stddev_samp_fields | null) - sum: (match_lineup_players_sum_fields | null) - var_pop: (match_lineup_players_var_pop_fields | null) - var_samp: (match_lineup_players_var_samp_fields | null) - variance: (match_lineup_players_variance_fields | null) - __typename: 'match_lineup_players_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface match_lineup_players_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_avg_fields' + max: (league_teams_max_fields | null) + min: (league_teams_min_fields | null) + __typename: 'league_teams_aggregate_fields' } -/** unique or primary key constraints on table "match_lineup_players" */ -export type match_lineup_players_constraint = 'match_lineup_players_match_lineup_id_placeholder_name_key' | 'match_lineup_players_match_lineup_id_steam_id_key' | 'match_members_pkey' +/** unique or primary key constraints on table "league_teams" */ +export type league_teams_constraint = 'league_teams_pkey' | 'league_teams_team_id_key' /** aggregate max on columns */ -export interface match_lineup_players_max_fields { - discord_id: (Scalars['String'] | null) +export interface league_teams_max_fields { + created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_max_fields' + team_id: (Scalars['uuid'] | null) + __typename: 'league_teams_max_fields' } /** aggregate min on columns */ -export interface match_lineup_players_min_fields { - discord_id: (Scalars['String'] | null) +export interface league_teams_min_fields { + created_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_min_fields' + team_id: (Scalars['uuid'] | null) + __typename: 'league_teams_min_fields' } -/** response of any mutation on the table "match_lineup_players" */ -export interface match_lineup_players_mutation_response { +/** response of any mutation on the table "league_teams" */ +export interface league_teams_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_lineup_players[] - __typename: 'match_lineup_players_mutation_response' + returning: league_teams[] + __typename: 'league_teams_mutation_response' } -/** select columns of table "match_lineup_players" */ -export type match_lineup_players_select_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' +/** select columns of table "league_teams" */ +export type league_teams_select_column = 'created_at' | 'id' | 'team_id' -/** select "match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_lineup_players" */ -export type match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns = 'captain' | 'checked_in' +/** update columns of table "league_teams" */ +export type league_teams_update_column = 'created_at' | 'id' | 'team_id' -/** select "match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_lineup_players" */ -export type match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns = 'captain' | 'checked_in' +/** columns and relationships of "lobbies" */ +export interface lobbies { + access: e_lobby_access_enum + created_at: Scalars['timestamptz'] + /** An object relationship */ + e_lobby_access: e_lobby_access + id: Scalars['uuid'] + /** An array relationship */ + players: lobby_players[] + /** An aggregate relationship */ + players_aggregate: lobby_players_aggregate + __typename: 'lobbies' +} -/** aggregate stddev on columns */ -export interface match_lineup_players_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_fields' +/** aggregated selection of "lobbies" */ +export interface lobbies_aggregate { + aggregate: (lobbies_aggregate_fields | null) + nodes: lobbies[] + __typename: 'lobbies_aggregate' } -/** aggregate stddev_pop on columns */ -export interface match_lineup_players_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_pop_fields' +/** aggregate fields of "lobbies" */ +export interface lobbies_aggregate_fields { + count: Scalars['Int'] + max: (lobbies_max_fields | null) + min: (lobbies_min_fields | null) + __typename: 'lobbies_aggregate_fields' } -/** aggregate stddev_samp on columns */ -export interface match_lineup_players_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_stddev_samp_fields' -} +/** unique or primary key constraints on table "lobbies" */ +export type lobbies_constraint = 'lobbies_pkey' -/** aggregate sum on columns */ -export interface match_lineup_players_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_sum_fields' +/** aggregate max on columns */ +export interface lobbies_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + __typename: 'lobbies_max_fields' } -/** update columns of table "match_lineup_players" */ -export type match_lineup_players_update_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' +/** aggregate min on columns */ +export interface lobbies_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + __typename: 'lobbies_min_fields' +} -/** aggregate var_pop on columns */ -export interface match_lineup_players_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_var_pop_fields' +/** response of any mutation on the table "lobbies" */ +export interface lobbies_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: lobbies[] + __typename: 'lobbies_mutation_response' } -/** aggregate var_samp on columns */ -export interface match_lineup_players_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_var_samp_fields' -} +/** select columns of table "lobbies" */ +export type lobbies_select_column = 'access' | 'created_at' | 'id' -/** aggregate variance on columns */ -export interface match_lineup_players_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'match_lineup_players_variance_fields' -} +/** update columns of table "lobbies" */ +export type lobbies_update_column = 'access' | 'created_at' | 'id' -/** relational table for assigning a team to a match and lineup */ -export interface match_lineups { - /** A computed field, executes function "can_pick_map_veto" */ - can_pick_map_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_pick_region_veto" */ - can_pick_region_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_update_lineup" */ - can_update_lineup: (Scalars['Boolean'] | null) - /** An object relationship */ - captain: (v_match_captains | null) - /** An object relationship */ - coach: (players | null) - coach_steam_id: (Scalars['bigint'] | null) - id: Scalars['uuid'] - /** A computed field, executes function "is_on_lineup" */ - is_on_lineup: (Scalars['Boolean'] | null) - /** A computed field, executes function "lineup_is_picking_map_veto" */ - is_picking_map_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "lineup_is_picking_region_veto" */ - is_picking_region_veto: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_match_lineup_ready" */ - is_ready: (Scalars['Boolean'] | null) - /** An array relationship */ - lineup_players: match_lineup_players[] - /** An aggregate relationship */ - lineup_players_aggregate: match_lineup_players_aggregate +/** columns and relationships of "lobby_players" */ +export interface lobby_players { + captain: Scalars['Boolean'] + invited_by_steam_id: (Scalars['bigint'] | null) /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An array relationship */ - match_veto_picks: match_map_veto_picks[] - /** An aggregate relationship */ - match_veto_picks_aggregate: match_map_veto_picks_aggregate - /** A computed field, executes function "get_team_name" */ - name: (Scalars['String'] | null) + lobby: lobbies + lobby_id: Scalars['uuid'] /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - team_name: (Scalars['String'] | null) - __typename: 'match_lineups' + player: players + status: e_lobby_player_status_enum + steam_id: Scalars['bigint'] + __typename: 'lobby_players' } -/** aggregated selection of "match_lineups" */ -export interface match_lineups_aggregate { - aggregate: (match_lineups_aggregate_fields | null) - nodes: match_lineups[] - __typename: 'match_lineups_aggregate' +/** aggregated selection of "lobby_players" */ +export interface lobby_players_aggregate { + aggregate: (lobby_players_aggregate_fields | null) + nodes: lobby_players[] + __typename: 'lobby_players_aggregate' } -/** aggregate fields of "match_lineups" */ -export interface match_lineups_aggregate_fields { - avg: (match_lineups_avg_fields | null) +/** aggregate fields of "lobby_players" */ +export interface lobby_players_aggregate_fields { + avg: (lobby_players_avg_fields | null) count: Scalars['Int'] - max: (match_lineups_max_fields | null) - min: (match_lineups_min_fields | null) - stddev: (match_lineups_stddev_fields | null) - stddev_pop: (match_lineups_stddev_pop_fields | null) - stddev_samp: (match_lineups_stddev_samp_fields | null) - sum: (match_lineups_sum_fields | null) - var_pop: (match_lineups_var_pop_fields | null) - var_samp: (match_lineups_var_samp_fields | null) - variance: (match_lineups_variance_fields | null) - __typename: 'match_lineups_aggregate_fields' + max: (lobby_players_max_fields | null) + min: (lobby_players_min_fields | null) + stddev: (lobby_players_stddev_fields | null) + stddev_pop: (lobby_players_stddev_pop_fields | null) + stddev_samp: (lobby_players_stddev_samp_fields | null) + sum: (lobby_players_sum_fields | null) + var_pop: (lobby_players_var_pop_fields | null) + var_samp: (lobby_players_var_samp_fields | null) + variance: (lobby_players_variance_fields | null) + __typename: 'lobby_players_aggregate_fields' } /** aggregate avg on columns */ -export interface match_lineups_avg_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_avg_fields' +export interface lobby_players_avg_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_avg_fields' } -/** unique or primary key constraints on table "match_lineups" */ -export type match_lineups_constraint = 'match_teams_pkey' +/** unique or primary key constraints on table "lobby_players" */ +export type lobby_players_constraint = 'lobby_players_pkey' /** aggregate max on columns */ -export interface match_lineups_max_fields { - coach_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_team_name" */ - name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - team_name: (Scalars['String'] | null) - __typename: 'match_lineups_max_fields' +export interface lobby_players_max_fields { + invited_by_steam_id: (Scalars['bigint'] | null) + lobby_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'lobby_players_max_fields' } /** aggregate min on columns */ -export interface match_lineups_min_fields { - coach_steam_id: (Scalars['bigint'] | null) - id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_team_name" */ - name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - team_name: (Scalars['String'] | null) - __typename: 'match_lineups_min_fields' +export interface lobby_players_min_fields { + invited_by_steam_id: (Scalars['bigint'] | null) + lobby_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'lobby_players_min_fields' } -/** response of any mutation on the table "match_lineups" */ -export interface match_lineups_mutation_response { +/** response of any mutation on the table "lobby_players" */ +export interface lobby_players_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_lineups[] - __typename: 'match_lineups_mutation_response' + returning: lobby_players[] + __typename: 'lobby_players_mutation_response' } -/** select columns of table "match_lineups" */ -export type match_lineups_select_column = 'coach_steam_id' | 'id' | 'match_id' | 'team_id' | 'team_name' +/** select columns of table "lobby_players" */ +export type lobby_players_select_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | 'steam_id' + + +/** select "lobby_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "lobby_players" */ +export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_and_arguments_columns = 'captain' + + +/** select "lobby_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "lobby_players" */ +export type lobby_players_select_column_lobby_players_aggregate_bool_exp_bool_or_arguments_columns = 'captain' /** aggregate stddev on columns */ -export interface match_lineups_stddev_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_fields' +export interface lobby_players_stddev_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_lineups_stddev_pop_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_pop_fields' +export interface lobby_players_stddev_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_lineups_stddev_samp_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_stddev_samp_fields' +export interface lobby_players_stddev_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_lineups_sum_fields { - coach_steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineups_sum_fields' +export interface lobby_players_sum_fields { + invited_by_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'lobby_players_sum_fields' } -/** update columns of table "match_lineups" */ -export type match_lineups_update_column = 'coach_steam_id' | 'id' | 'match_id' | 'team_id' | 'team_name' +/** update columns of table "lobby_players" */ +export type lobby_players_update_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | 'steam_id' /** aggregate var_pop on columns */ -export interface match_lineups_var_pop_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_var_pop_fields' +export interface lobby_players_var_pop_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_var_pop_fields' } /** aggregate var_samp on columns */ -export interface match_lineups_var_samp_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_var_samp_fields' +export interface lobby_players_var_samp_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_var_samp_fields' } /** aggregate variance on columns */ -export interface match_lineups_variance_fields { - coach_steam_id: (Scalars['Float'] | null) - __typename: 'match_lineups_variance_fields' +export interface lobby_players_variance_fields { + invited_by_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'lobby_players_variance_fields' } -/** columns and relationships of "match_map_demos" */ -export interface match_map_demos { - bombs: (Scalars['jsonb'] | null) - /** An array relationship */ - clip_render_jobs: clip_render_jobs[] - /** An aggregate relationship */ - clip_render_jobs_aggregate: clip_render_jobs_aggregate - created_at: Scalars['timestamptz'] - cs2_build: (Scalars['String'] | null) - /** An array relationship */ - demo_sessions: match_demo_sessions[] - /** An aggregate relationship */ - demo_sessions_aggregate: match_demo_sessions_aggregate - /** A computed field, executes function "demo_download_url" */ - download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) - file: Scalars['String'] - geometry_validated: (Scalars['Boolean'] | null) - id: Scalars['uuid'] - kills: (Scalars['jsonb'] | null) - map_name: (Scalars['String'] | null) +/** columns and relationships of "map_pools" */ +export interface map_pools { /** An object relationship */ - match: matches + e_type: e_map_pool_types + enabled: Scalars['Boolean'] + id: Scalars['uuid'] /** An array relationship */ - match_clips: match_clips[] + maps: v_pool_maps[] /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - match_id: Scalars['uuid'] - /** An object relationship */ - match_map: match_maps - match_map_id: Scalars['uuid'] - metadata_parsed_at: (Scalars['timestamptz'] | null) - playback_file: (Scalars['String'] | null) - playback_size: (Scalars['Int'] | null) - /** A computed field, executes function "demo_playback_url" */ - playback_url: (Scalars['String'] | null) - players: (Scalars['jsonb'] | null) - round_ticks: (Scalars['jsonb'] | null) - size: (Scalars['Int'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Int'] | null) - workshop_id: (Scalars['String'] | null) - __typename: 'match_map_demos' + maps_aggregate: v_pool_maps_aggregate + seed: Scalars['Boolean'] + type: e_map_pool_types_enum + __typename: 'map_pools' } -/** aggregated selection of "match_map_demos" */ -export interface match_map_demos_aggregate { - aggregate: (match_map_demos_aggregate_fields | null) - nodes: match_map_demos[] - __typename: 'match_map_demos_aggregate' +/** aggregated selection of "map_pools" */ +export interface map_pools_aggregate { + aggregate: (map_pools_aggregate_fields | null) + nodes: map_pools[] + __typename: 'map_pools_aggregate' } -/** aggregate fields of "match_map_demos" */ -export interface match_map_demos_aggregate_fields { - avg: (match_map_demos_avg_fields | null) +/** aggregate fields of "map_pools" */ +export interface map_pools_aggregate_fields { count: Scalars['Int'] - max: (match_map_demos_max_fields | null) - min: (match_map_demos_min_fields | null) - stddev: (match_map_demos_stddev_fields | null) - stddev_pop: (match_map_demos_stddev_pop_fields | null) - stddev_samp: (match_map_demos_stddev_samp_fields | null) - sum: (match_map_demos_sum_fields | null) - var_pop: (match_map_demos_var_pop_fields | null) - var_samp: (match_map_demos_var_samp_fields | null) - variance: (match_map_demos_variance_fields | null) - __typename: 'match_map_demos_aggregate_fields' + max: (map_pools_max_fields | null) + min: (map_pools_min_fields | null) + __typename: 'map_pools_aggregate_fields' } -/** aggregate avg on columns */ -export interface match_map_demos_avg_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_avg_fields' -} +/** unique or primary key constraints on table "map_pools" */ +export type map_pools_constraint = 'map_pools_pkey' -/** unique or primary key constraints on table "match_map_demos" */ -export type match_map_demos_constraint = 'match_demos_pkey' | 'match_map_demos_match_map_id_file_key' +/** aggregate max on columns */ +export interface map_pools_max_fields { + id: (Scalars['uuid'] | null) + __typename: 'map_pools_max_fields' +} -/** aggregate max on columns */ -export interface match_map_demos_max_fields { - created_at: (Scalars['timestamptz'] | null) - cs2_build: (Scalars['String'] | null) - /** A computed field, executes function "demo_download_url" */ - download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) - file: (Scalars['String'] | null) +/** aggregate min on columns */ +export interface map_pools_min_fields { id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - metadata_parsed_at: (Scalars['timestamptz'] | null) - playback_file: (Scalars['String'] | null) - playback_size: (Scalars['Int'] | null) - /** A computed field, executes function "demo_playback_url" */ - playback_url: (Scalars['String'] | null) - size: (Scalars['Int'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Int'] | null) - workshop_id: (Scalars['String'] | null) - __typename: 'match_map_demos_max_fields' -} - - -/** aggregate min on columns */ -export interface match_map_demos_min_fields { - created_at: (Scalars['timestamptz'] | null) - cs2_build: (Scalars['String'] | null) - /** A computed field, executes function "demo_download_url" */ - download_url: (Scalars['String'] | null) - duration_seconds: (Scalars['Float'] | null) - file: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - map_name: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - metadata_parsed_at: (Scalars['timestamptz'] | null) - playback_file: (Scalars['String'] | null) - playback_size: (Scalars['Int'] | null) - /** A computed field, executes function "demo_playback_url" */ - playback_url: (Scalars['String'] | null) - size: (Scalars['Int'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Int'] | null) - workshop_id: (Scalars['String'] | null) - __typename: 'match_map_demos_min_fields' + __typename: 'map_pools_min_fields' } -/** response of any mutation on the table "match_map_demos" */ -export interface match_map_demos_mutation_response { +/** response of any mutation on the table "map_pools" */ +export interface map_pools_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_map_demos[] - __typename: 'match_map_demos_mutation_response' + returning: map_pools[] + __typename: 'map_pools_mutation_response' } -/** select columns of table "match_map_demos" */ -export type match_map_demos_select_column = 'bombs' | 'created_at' | 'cs2_build' | 'duration_seconds' | 'file' | 'geometry_validated' | 'id' | 'kills' | 'map_name' | 'match_id' | 'match_map_id' | 'metadata_parsed_at' | 'playback_file' | 'playback_size' | 'players' | 'round_ticks' | 'size' | 'tick_rate' | 'total_ticks' | 'workshop_id' +/** select columns of table "map_pools" */ +export type map_pools_select_column = 'enabled' | 'id' | 'seed' | 'type' -/** select "match_map_demos_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_demos" */ -export type match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns = 'geometry_validated' +/** update columns of table "map_pools" */ +export type map_pools_update_column = 'enabled' | 'id' | 'seed' | 'type' -/** select "match_map_demos_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_demos" */ -export type match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns = 'geometry_validated' +/** columns and relationships of "maps" */ +export interface maps { + active_pool: Scalars['Boolean'] + /** An object relationship */ + e_match_type: e_match_types + enabled: Scalars['Boolean'] + id: Scalars['uuid'] + label: (Scalars['String'] | null) + /** An array relationship */ + match_maps: match_maps[] + /** An aggregate relationship */ + match_maps_aggregate: match_maps_aggregate + /** An array relationship */ + match_veto_picks: match_map_veto_picks[] + /** An aggregate relationship */ + match_veto_picks_aggregate: match_map_veto_picks_aggregate + name: Scalars['String'] + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + type: e_match_types_enum + workshop_map_id: (Scalars['String'] | null) + __typename: 'maps' +} -/** aggregate stddev on columns */ -export interface match_map_demos_stddev_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_stddev_fields' +/** aggregated selection of "maps" */ +export interface maps_aggregate { + aggregate: (maps_aggregate_fields | null) + nodes: maps[] + __typename: 'maps_aggregate' } -/** aggregate stddev_pop on columns */ -export interface match_map_demos_stddev_pop_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_stddev_pop_fields' +/** aggregate fields of "maps" */ +export interface maps_aggregate_fields { + count: Scalars['Int'] + max: (maps_max_fields | null) + min: (maps_min_fields | null) + __typename: 'maps_aggregate_fields' } -/** aggregate stddev_samp on columns */ -export interface match_map_demos_stddev_samp_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_stddev_samp_fields' -} +/** unique or primary key constraints on table "maps" */ +export type maps_constraint = 'maps_name_type_key' | 'maps_pkey' -/** aggregate sum on columns */ -export interface match_map_demos_sum_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Int'] | null) - size: (Scalars['Int'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Int'] | null) - __typename: 'match_map_demos_sum_fields' +/** aggregate max on columns */ +export interface maps_max_fields { + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'maps_max_fields' } -/** update columns of table "match_map_demos" */ -export type match_map_demos_update_column = 'bombs' | 'created_at' | 'cs2_build' | 'file' | 'geometry_validated' | 'id' | 'kills' | 'map_name' | 'match_id' | 'match_map_id' | 'metadata_parsed_at' | 'playback_file' | 'playback_size' | 'players' | 'round_ticks' | 'size' | 'tick_rate' | 'total_ticks' | 'workshop_id' +/** aggregate min on columns */ +export interface maps_min_fields { + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'maps_min_fields' +} -/** aggregate var_pop on columns */ -export interface match_map_demos_var_pop_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_var_pop_fields' +/** response of any mutation on the table "maps" */ +export interface maps_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: maps[] + __typename: 'maps_mutation_response' } -/** aggregate var_samp on columns */ -export interface match_map_demos_var_samp_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_var_samp_fields' -} +/** select columns of table "maps" */ +export type maps_select_column = 'active_pool' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' -/** aggregate variance on columns */ -export interface match_map_demos_variance_fields { - duration_seconds: (Scalars['Float'] | null) - playback_size: (Scalars['Float'] | null) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_variance_fields' -} +/** select "maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "maps" */ +export type maps_select_column_maps_aggregate_bool_exp_bool_and_arguments_columns = 'active_pool' | 'enabled' -/** columns and relationships of "match_map_rounds" */ -export interface match_map_rounds { - /** An array relationship */ - assists: player_assists[] - /** An aggregate relationship */ - assists_aggregate: player_assists_aggregate - backup_file: (Scalars['String'] | null) +/** select "maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "maps" */ +export type maps_select_column_maps_aggregate_bool_exp_bool_or_arguments_columns = 'active_pool' | 'enabled' + + +/** update columns of table "maps" */ +export type maps_update_column = 'active_pool' | 'enabled' | 'id' | 'label' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' + + +/** columns and relationships of "match_clips" */ +export interface match_clips { created_at: Scalars['timestamptz'] - deleted_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "has_backup_file" */ - has_backup_file: (Scalars['Boolean'] | null) + /** A computed field, executes function "clip_download_url" */ + download_url: (Scalars['String'] | null) + duration_ms: (Scalars['Int'] | null) + file: (Scalars['String'] | null) id: Scalars['uuid'] - /** An array relationship */ - kills: player_kills[] - /** An aggregate relationship */ - kills_aggregate: player_kills_aggregate - lineup_1_money: Scalars['Int'] - lineup_1_score: Scalars['Int'] - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Scalars['Int'] - lineup_2_money: Scalars['Int'] - lineup_2_score: Scalars['Int'] - lineup_2_side: e_sides_enum - lineup_2_timeouts_available: Scalars['Int'] + kills_count: (Scalars['Int'] | null) /** An object relationship */ match_map: match_maps + /** An object relationship */ + match_map_demo: (match_map_demos | null) + match_map_demo_id: (Scalars['uuid'] | null) match_map_id: Scalars['uuid'] - round: Scalars['Int'] - time: Scalars['timestamptz'] - winning_reason: (e_winning_reasons_enum | null) - winning_side: Scalars['String'] - __typename: 'match_map_rounds' + /** An array relationship */ + render_jobs: clip_render_jobs[] + /** An aggregate relationship */ + render_jobs_aggregate: clip_render_jobs_aggregate + round: (Scalars['Int'] | null) + size: Scalars['bigint'] + /** An object relationship */ + target: (players | null) + target_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url: (Scalars['String'] | null) + thumbnail_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + /** An object relationship */ + user: (players | null) + user_steam_id: (Scalars['bigint'] | null) + views_count: Scalars['Int'] + visibility: e_match_clip_visibility_enum + __typename: 'match_clips' } -/** aggregated selection of "match_map_rounds" */ -export interface match_map_rounds_aggregate { - aggregate: (match_map_rounds_aggregate_fields | null) - nodes: match_map_rounds[] - __typename: 'match_map_rounds_aggregate' +/** aggregated selection of "match_clips" */ +export interface match_clips_aggregate { + aggregate: (match_clips_aggregate_fields | null) + nodes: match_clips[] + __typename: 'match_clips_aggregate' } -/** aggregate fields of "match_map_rounds" */ -export interface match_map_rounds_aggregate_fields { - avg: (match_map_rounds_avg_fields | null) +/** aggregate fields of "match_clips" */ +export interface match_clips_aggregate_fields { + avg: (match_clips_avg_fields | null) count: Scalars['Int'] - max: (match_map_rounds_max_fields | null) - min: (match_map_rounds_min_fields | null) - stddev: (match_map_rounds_stddev_fields | null) - stddev_pop: (match_map_rounds_stddev_pop_fields | null) - stddev_samp: (match_map_rounds_stddev_samp_fields | null) - sum: (match_map_rounds_sum_fields | null) - var_pop: (match_map_rounds_var_pop_fields | null) - var_samp: (match_map_rounds_var_samp_fields | null) - variance: (match_map_rounds_variance_fields | null) - __typename: 'match_map_rounds_aggregate_fields' + max: (match_clips_max_fields | null) + min: (match_clips_min_fields | null) + stddev: (match_clips_stddev_fields | null) + stddev_pop: (match_clips_stddev_pop_fields | null) + stddev_samp: (match_clips_stddev_samp_fields | null) + sum: (match_clips_sum_fields | null) + var_pop: (match_clips_var_pop_fields | null) + var_samp: (match_clips_var_samp_fields | null) + variance: (match_clips_variance_fields | null) + __typename: 'match_clips_aggregate_fields' } /** aggregate avg on columns */ -export interface match_map_rounds_avg_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) +export interface match_clips_avg_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_avg_fields' + size: (Scalars['Float'] | null) + target_steam_id: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + views_count: (Scalars['Float'] | null) + __typename: 'match_clips_avg_fields' } -/** unique or primary key constraints on table "match_map_rounds" */ -export type match_map_rounds_constraint = 'match_rounds__id_key' | 'match_rounds_match_id_round_key' | 'match_rounds_pkey' +/** unique or primary key constraints on table "match_clips" */ +export type match_clips_constraint = 'match_clips_pkey' /** aggregate max on columns */ -export interface match_map_rounds_max_fields { - backup_file: (Scalars['String'] | null) +export interface match_clips_max_fields { created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "clip_download_url" */ + download_url: (Scalars['String'] | null) + duration_ms: (Scalars['Int'] | null) + file: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - lineup_1_money: (Scalars['Int'] | null) - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - lineup_2_money: (Scalars['Int'] | null) - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) + kills_count: (Scalars['Int'] | null) + match_map_demo_id: (Scalars['uuid'] | null) match_map_id: (Scalars['uuid'] | null) round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - winning_side: (Scalars['String'] | null) - __typename: 'match_map_rounds_max_fields' + size: (Scalars['bigint'] | null) + target_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url: (Scalars['String'] | null) + thumbnail_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + user_steam_id: (Scalars['bigint'] | null) + views_count: (Scalars['Int'] | null) + __typename: 'match_clips_max_fields' } /** aggregate min on columns */ -export interface match_map_rounds_min_fields { - backup_file: (Scalars['String'] | null) +export interface match_clips_min_fields { created_at: (Scalars['timestamptz'] | null) - deleted_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "clip_download_url" */ + download_url: (Scalars['String'] | null) + duration_ms: (Scalars['Int'] | null) + file: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - lineup_1_money: (Scalars['Int'] | null) - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - lineup_2_money: (Scalars['Int'] | null) - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) + kills_count: (Scalars['Int'] | null) + match_map_demo_id: (Scalars['uuid'] | null) match_map_id: (Scalars['uuid'] | null) round: (Scalars['Int'] | null) - time: (Scalars['timestamptz'] | null) - winning_side: (Scalars['String'] | null) - __typename: 'match_map_rounds_min_fields' + size: (Scalars['bigint'] | null) + target_steam_id: (Scalars['bigint'] | null) + /** A computed field, executes function "clip_thumbnail_download_url" */ + thumbnail_download_url: (Scalars['String'] | null) + thumbnail_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + user_steam_id: (Scalars['bigint'] | null) + views_count: (Scalars['Int'] | null) + __typename: 'match_clips_min_fields' } -/** response of any mutation on the table "match_map_rounds" */ -export interface match_map_rounds_mutation_response { +/** response of any mutation on the table "match_clips" */ +export interface match_clips_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_map_rounds[] - __typename: 'match_map_rounds_mutation_response' + returning: match_clips[] + __typename: 'match_clips_mutation_response' } -/** select columns of table "match_map_rounds" */ -export type match_map_rounds_select_column = 'backup_file' | 'created_at' | 'deleted_at' | 'id' | 'lineup_1_money' | 'lineup_1_score' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_money' | 'lineup_2_score' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'match_map_id' | 'round' | 'time' | 'winning_reason' | 'winning_side' +/** select columns of table "match_clips" */ +export type match_clips_select_column = 'created_at' | 'duration_ms' | 'file' | 'id' | 'kills_count' | 'match_map_demo_id' | 'match_map_id' | 'round' | 'size' | 'target_steam_id' | 'thumbnail_url' | 'title' | 'user_steam_id' | 'views_count' | 'visibility' /** aggregate stddev on columns */ -export interface match_map_rounds_stddev_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) +export interface match_clips_stddev_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_fields' + size: (Scalars['Float'] | null) + target_steam_id: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + views_count: (Scalars['Float'] | null) + __typename: 'match_clips_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_map_rounds_stddev_pop_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) +export interface match_clips_stddev_pop_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_pop_fields' + size: (Scalars['Float'] | null) + target_steam_id: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + views_count: (Scalars['Float'] | null) + __typename: 'match_clips_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_map_rounds_stddev_samp_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) +export interface match_clips_stddev_samp_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_stddev_samp_fields' + size: (Scalars['Float'] | null) + target_steam_id: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + views_count: (Scalars['Float'] | null) + __typename: 'match_clips_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_map_rounds_sum_fields { - lineup_1_money: (Scalars['Int'] | null) - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - lineup_2_money: (Scalars['Int'] | null) - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) +export interface match_clips_sum_fields { + duration_ms: (Scalars['Int'] | null) + kills_count: (Scalars['Int'] | null) round: (Scalars['Int'] | null) - __typename: 'match_map_rounds_sum_fields' + size: (Scalars['bigint'] | null) + target_steam_id: (Scalars['bigint'] | null) + user_steam_id: (Scalars['bigint'] | null) + views_count: (Scalars['Int'] | null) + __typename: 'match_clips_sum_fields' } -/** update columns of table "match_map_rounds" */ -export type match_map_rounds_update_column = 'backup_file' | 'created_at' | 'deleted_at' | 'id' | 'lineup_1_money' | 'lineup_1_score' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_money' | 'lineup_2_score' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'match_map_id' | 'round' | 'time' | 'winning_reason' | 'winning_side' +/** update columns of table "match_clips" */ +export type match_clips_update_column = 'created_at' | 'duration_ms' | 'file' | 'id' | 'kills_count' | 'match_map_demo_id' | 'match_map_id' | 'round' | 'size' | 'target_steam_id' | 'thumbnail_url' | 'title' | 'user_steam_id' | 'views_count' | 'visibility' /** aggregate var_pop on columns */ -export interface match_map_rounds_var_pop_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) +export interface match_clips_var_pop_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_var_pop_fields' + size: (Scalars['Float'] | null) + target_steam_id: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + views_count: (Scalars['Float'] | null) + __typename: 'match_clips_var_pop_fields' } /** aggregate var_samp on columns */ -export interface match_map_rounds_var_samp_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) +export interface match_clips_var_samp_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_var_samp_fields' + size: (Scalars['Float'] | null) + target_steam_id: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + views_count: (Scalars['Float'] | null) + __typename: 'match_clips_var_samp_fields' } /** aggregate variance on columns */ -export interface match_map_rounds_variance_fields { - lineup_1_money: (Scalars['Float'] | null) - lineup_1_score: (Scalars['Float'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - lineup_2_money: (Scalars['Float'] | null) - lineup_2_score: (Scalars['Float'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) +export interface match_clips_variance_fields { + duration_ms: (Scalars['Float'] | null) + kills_count: (Scalars['Float'] | null) round: (Scalars['Float'] | null) - __typename: 'match_map_rounds_variance_fields' + size: (Scalars['Float'] | null) + target_steam_id: (Scalars['Float'] | null) + user_steam_id: (Scalars['Float'] | null) + views_count: (Scalars['Float'] | null) + __typename: 'match_clips_variance_fields' } -/** columns and relationships of "match_map_veto_picks" */ -export interface match_map_veto_picks { +/** columns and relationships of "match_demo_sessions" */ +export interface match_demo_sessions { created_at: Scalars['timestamptz'] - id: Scalars['uuid'] + error_message: (Scalars['String'] | null) /** An object relationship */ - map: maps - map_id: Scalars['uuid'] + game_server_node: (game_server_nodes | null) + game_server_node_id: (Scalars['String'] | null) + id: Scalars['uuid'] + k8s_job_name: Scalars['String'] + last_activity_at: Scalars['timestamptz'] + last_status_at: Scalars['timestamptz'] /** An object relationship */ match: matches match_id: Scalars['uuid'] /** An object relationship */ - match_lineup: match_lineups - match_lineup_id: Scalars['uuid'] - side: (Scalars['String'] | null) - type: e_veto_pick_types_enum - __typename: 'match_map_veto_picks' -} - - -/** aggregated selection of "match_map_veto_picks" */ -export interface match_map_veto_picks_aggregate { - aggregate: (match_map_veto_picks_aggregate_fields | null) - nodes: match_map_veto_picks[] - __typename: 'match_map_veto_picks_aggregate' + match_map: match_maps + /** An object relationship */ + match_map_demo: (match_map_demos | null) + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: Scalars['uuid'] + status: Scalars['String'] + status_history: Scalars['jsonb'] + stream_url: (Scalars['String'] | null) + /** An object relationship */ + watcher: players + watcher_steam_id: Scalars['bigint'] + __typename: 'match_demo_sessions' } -/** aggregate fields of "match_map_veto_picks" */ -export interface match_map_veto_picks_aggregate_fields { +/** aggregated selection of "match_demo_sessions" */ +export interface match_demo_sessions_aggregate { + aggregate: (match_demo_sessions_aggregate_fields | null) + nodes: match_demo_sessions[] + __typename: 'match_demo_sessions_aggregate' +} + + +/** aggregate fields of "match_demo_sessions" */ +export interface match_demo_sessions_aggregate_fields { + avg: (match_demo_sessions_avg_fields | null) count: Scalars['Int'] - max: (match_map_veto_picks_max_fields | null) - min: (match_map_veto_picks_min_fields | null) - __typename: 'match_map_veto_picks_aggregate_fields' + max: (match_demo_sessions_max_fields | null) + min: (match_demo_sessions_min_fields | null) + stddev: (match_demo_sessions_stddev_fields | null) + stddev_pop: (match_demo_sessions_stddev_pop_fields | null) + stddev_samp: (match_demo_sessions_stddev_samp_fields | null) + sum: (match_demo_sessions_sum_fields | null) + var_pop: (match_demo_sessions_var_pop_fields | null) + var_samp: (match_demo_sessions_var_samp_fields | null) + variance: (match_demo_sessions_variance_fields | null) + __typename: 'match_demo_sessions_aggregate_fields' } -/** unique or primary key constraints on table "match_map_veto_picks" */ -export type match_map_veto_picks_constraint = 'match_map_veto_picks_map_id_match_id_type_key' | 'match_map_veto_picks_pkey' +/** aggregate avg on columns */ +export interface match_demo_sessions_avg_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_avg_fields' +} + + +/** unique or primary key constraints on table "match_demo_sessions" */ +export type match_demo_sessions_constraint = 'match_demo_sessions_per_user_per_map_uniq' | 'match_demo_sessions_pkey' /** aggregate max on columns */ -export interface match_map_veto_picks_max_fields { +export interface match_demo_sessions_max_fields { created_at: (Scalars['timestamptz'] | null) + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - map_id: (Scalars['uuid'] | null) + k8s_job_name: (Scalars['String'] | null) + last_activity_at: (Scalars['timestamptz'] | null) + last_status_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - __typename: 'match_map_veto_picks_max_fields' + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + status: (Scalars['String'] | null) + stream_url: (Scalars['String'] | null) + watcher_steam_id: (Scalars['bigint'] | null) + __typename: 'match_demo_sessions_max_fields' } /** aggregate min on columns */ -export interface match_map_veto_picks_min_fields { +export interface match_demo_sessions_min_fields { created_at: (Scalars['timestamptz'] | null) + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - map_id: (Scalars['uuid'] | null) + k8s_job_name: (Scalars['String'] | null) + last_activity_at: (Scalars['timestamptz'] | null) + last_status_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - __typename: 'match_map_veto_picks_min_fields' + match_map_demo_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + status: (Scalars['String'] | null) + stream_url: (Scalars['String'] | null) + watcher_steam_id: (Scalars['bigint'] | null) + __typename: 'match_demo_sessions_min_fields' } -/** response of any mutation on the table "match_map_veto_picks" */ -export interface match_map_veto_picks_mutation_response { +/** response of any mutation on the table "match_demo_sessions" */ +export interface match_demo_sessions_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_map_veto_picks[] - __typename: 'match_map_veto_picks_mutation_response' + returning: match_demo_sessions[] + __typename: 'match_demo_sessions_mutation_response' } -/** select columns of table "match_map_veto_picks" */ -export type match_map_veto_picks_select_column = 'created_at' | 'id' | 'map_id' | 'match_id' | 'match_lineup_id' | 'side' | 'type' +/** select columns of table "match_demo_sessions" */ +export type match_demo_sessions_select_column = 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_activity_at' | 'last_status_at' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'status' | 'status_history' | 'stream_url' | 'watcher_steam_id' -/** update columns of table "match_map_veto_picks" */ -export type match_map_veto_picks_update_column = 'created_at' | 'id' | 'map_id' | 'match_id' | 'match_lineup_id' | 'side' | 'type' +/** aggregate stddev on columns */ +export interface match_demo_sessions_stddev_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_stddev_fields' +} -/** columns and relationships of "match_maps" */ -export interface match_maps { - clips_count: Scalars['Int'] - created_at: Scalars['timestamptz'] - /** An array relationship */ - demos: match_map_demos[] - /** An aggregate relationship */ - demos_aggregate: match_map_demos_aggregate - /** A computed field, executes function "match_map_demo_download_url" */ - demos_download_url: (Scalars['String'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** An object relationship */ - e_match_map_status: e_match_map_status - ended_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - flashes: player_flashes[] - /** An aggregate relationship */ - flashes_aggregate: player_flashes_aggregate +/** aggregate stddev_pop on columns */ +export interface match_demo_sessions_stddev_pop_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_demo_sessions_stddev_samp_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_demo_sessions_sum_fields { + watcher_steam_id: (Scalars['bigint'] | null) + __typename: 'match_demo_sessions_sum_fields' +} + + +/** update columns of table "match_demo_sessions" */ +export type match_demo_sessions_update_column = 'created_at' | 'error_message' | 'game_server_node_id' | 'id' | 'k8s_job_name' | 'last_activity_at' | 'last_status_at' | 'match_id' | 'match_map_demo_id' | 'match_map_id' | 'status' | 'status_history' | 'stream_url' | 'watcher_steam_id' + + +/** aggregate var_pop on columns */ +export interface match_demo_sessions_var_pop_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_demo_sessions_var_samp_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_demo_sessions_variance_fields { + watcher_steam_id: (Scalars['Float'] | null) + __typename: 'match_demo_sessions_variance_fields' +} + + +/** relational table for assigning a players to a match and lineup */ +export interface match_lineup_players { + captain: Scalars['Boolean'] + checked_in: Scalars['Boolean'] + discord_id: (Scalars['String'] | null) id: Scalars['uuid'] - /** A computed field, executes function "is_current_match_map" */ - is_current_map: (Scalars['Boolean'] | null) - latest_clip_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_side: e_sides_enum - lineup_1_timeouts_available: Scalars['Int'] - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_side: (e_sides_enum | null) - lineup_2_timeouts_available: Scalars['Int'] /** An object relationship */ - map: maps - map_id: Scalars['uuid'] + lineup: match_lineups + match_lineup_id: Scalars['uuid'] + placeholder_name: (Scalars['String'] | null) /** An object relationship */ - match: matches - /** An array relationship */ - match_clips: match_clips[] - /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - match_id: Scalars['uuid'] - /** An array relationship */ - objectives: player_objectives[] - /** An aggregate relationship */ - objectives_aggregate: player_objectives_aggregate - order: Scalars['Int'] - /** An array relationship */ - player_assists: player_assists[] - /** An aggregate relationship */ - player_assists_aggregate: player_assists_aggregate - /** An array relationship */ - player_damages: player_damages[] - /** An aggregate relationship */ - player_damages_aggregate: player_damages_aggregate - /** An array relationship */ - player_kills: player_kills[] - /** An aggregate relationship */ - player_kills_aggregate: player_kills_aggregate - /** An array relationship */ - player_unused_utilities: player_unused_utility[] - /** An aggregate relationship */ - player_unused_utilities_aggregate: player_unused_utility_aggregate - public_clips_count: Scalars['Int'] - public_latest_clip_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - rounds: match_map_rounds[] - /** An aggregate relationship */ - rounds_aggregate: match_map_rounds_aggregate - started_at: (Scalars['timestamptz'] | null) - status: e_match_map_status_enum - /** An array relationship */ - utility: player_utility[] - /** An aggregate relationship */ - utility_aggregate: player_utility_aggregate - /** An array relationship */ - vetos: match_map_veto_picks[] - /** An aggregate relationship */ - vetos_aggregate: match_map_veto_picks_aggregate - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'match_maps' + player: (players | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players' } -/** aggregated selection of "match_maps" */ -export interface match_maps_aggregate { - aggregate: (match_maps_aggregate_fields | null) - nodes: match_maps[] - __typename: 'match_maps_aggregate' +/** aggregated selection of "match_lineup_players" */ +export interface match_lineup_players_aggregate { + aggregate: (match_lineup_players_aggregate_fields | null) + nodes: match_lineup_players[] + __typename: 'match_lineup_players_aggregate' } -/** aggregate fields of "match_maps" */ -export interface match_maps_aggregate_fields { - avg: (match_maps_avg_fields | null) +/** aggregate fields of "match_lineup_players" */ +export interface match_lineup_players_aggregate_fields { + avg: (match_lineup_players_avg_fields | null) count: Scalars['Int'] - max: (match_maps_max_fields | null) - min: (match_maps_min_fields | null) - stddev: (match_maps_stddev_fields | null) - stddev_pop: (match_maps_stddev_pop_fields | null) - stddev_samp: (match_maps_stddev_samp_fields | null) - sum: (match_maps_sum_fields | null) - var_pop: (match_maps_var_pop_fields | null) - var_samp: (match_maps_var_samp_fields | null) - variance: (match_maps_variance_fields | null) - __typename: 'match_maps_aggregate_fields' + max: (match_lineup_players_max_fields | null) + min: (match_lineup_players_min_fields | null) + stddev: (match_lineup_players_stddev_fields | null) + stddev_pop: (match_lineup_players_stddev_pop_fields | null) + stddev_samp: (match_lineup_players_stddev_samp_fields | null) + sum: (match_lineup_players_sum_fields | null) + var_pop: (match_lineup_players_var_pop_fields | null) + var_samp: (match_lineup_players_var_samp_fields | null) + variance: (match_lineup_players_variance_fields | null) + __typename: 'match_lineup_players_aggregate_fields' } /** aggregate avg on columns */ -export interface match_maps_avg_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_avg_fields' +export interface match_lineup_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_avg_fields' } -/** unique or primary key constraints on table "match_maps" */ -export type match_maps_constraint = 'match_maps_match_id_order_key' | 'match_maps_pkey' +/** unique or primary key constraints on table "match_lineup_players" */ +export type match_lineup_players_constraint = 'match_lineup_players_match_lineup_id_placeholder_name_key' | 'match_lineup_players_match_lineup_id_steam_id_key' | 'match_members_pkey' /** aggregate max on columns */ -export interface match_maps_max_fields { - clips_count: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "match_map_demo_download_url" */ - demos_download_url: (Scalars['String'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - ended_at: (Scalars['timestamptz'] | null) +export interface match_lineup_players_max_fields { + discord_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - latest_clip_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) - map_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - order: (Scalars['Int'] | null) - public_clips_count: (Scalars['Int'] | null) - public_latest_clip_at: (Scalars['timestamptz'] | null) - started_at: (Scalars['timestamptz'] | null) - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'match_maps_max_fields' + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players_max_fields' } /** aggregate min on columns */ -export interface match_maps_min_fields { - clips_count: (Scalars['Int'] | null) - created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "match_map_demo_download_url" */ - demos_download_url: (Scalars['String'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - ended_at: (Scalars['timestamptz'] | null) +export interface match_lineup_players_min_fields { + discord_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - latest_clip_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) - map_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - order: (Scalars['Int'] | null) - public_clips_count: (Scalars['Int'] | null) - public_latest_clip_at: (Scalars['timestamptz'] | null) - started_at: (Scalars['timestamptz'] | null) - winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'match_maps_min_fields' + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players_min_fields' } -/** response of any mutation on the table "match_maps" */ -export interface match_maps_mutation_response { +/** response of any mutation on the table "match_lineup_players" */ +export interface match_lineup_players_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_maps[] - __typename: 'match_maps_mutation_response' + returning: match_lineup_players[] + __typename: 'match_lineup_players_mutation_response' } -/** select columns of table "match_maps" */ -export type match_maps_select_column = 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' +/** select columns of table "match_lineup_players" */ +export type match_lineup_players_select_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' + + +/** select "match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_lineup_players" */ +export type match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_and_arguments_columns = 'captain' | 'checked_in' + + +/** select "match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_lineup_players" */ +export type match_lineup_players_select_column_match_lineup_players_aggregate_bool_exp_bool_or_arguments_columns = 'captain' | 'checked_in' /** aggregate stddev on columns */ -export interface match_maps_stddev_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_stddev_fields' +export interface match_lineup_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_maps_stddev_pop_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_stddev_pop_fields' +export interface match_lineup_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_maps_stddev_samp_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_stddev_samp_fields' +export interface match_lineup_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_maps_sum_fields { - clips_count: (Scalars['Int'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Int'] | null) - order: (Scalars['Int'] | null) - public_clips_count: (Scalars['Int'] | null) - __typename: 'match_maps_sum_fields' +export interface match_lineup_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineup_players_sum_fields' } -/** update columns of table "match_maps" */ -export type match_maps_update_column = 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' +/** update columns of table "match_lineup_players" */ +export type match_lineup_players_update_column = 'captain' | 'checked_in' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' /** aggregate var_pop on columns */ -export interface match_maps_var_pop_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_var_pop_fields' +export interface match_lineup_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_var_pop_fields' } /** aggregate var_samp on columns */ -export interface match_maps_var_samp_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_var_samp_fields' +export interface match_lineup_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_var_samp_fields' } /** aggregate variance on columns */ -export interface match_maps_variance_fields { - clips_count: (Scalars['Float'] | null) - /** A computed field, executes function "match_map_demo_total_size" */ - demos_total_size: (Scalars['Int'] | null) - /** A computed field, executes function "lineup_1_score" */ - lineup_1_score: (Scalars['Int'] | null) - lineup_1_timeouts_available: (Scalars['Float'] | null) - /** A computed field, executes function "lineup_2_score" */ - lineup_2_score: (Scalars['Int'] | null) - lineup_2_timeouts_available: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - public_clips_count: (Scalars['Float'] | null) - __typename: 'match_maps_variance_fields' +export interface match_lineup_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'match_lineup_players_variance_fields' } -/** columns and relationships of "match_options" */ -export interface match_options { - auto_cancel_duration: (Scalars['Int'] | null) - auto_cancellation: Scalars['Boolean'] - best_of: Scalars['Int'] - check_in_setting: e_check_in_settings_enum - coaches: Scalars['Boolean'] - default_models: (Scalars['Boolean'] | null) - /** A computed field, executes function "has_active_matches" */ - has_active_matches: (Scalars['Boolean'] | null) - id: Scalars['uuid'] - invite_code: (Scalars['String'] | null) - knife_round: Scalars['Boolean'] - live_match_timeout: (Scalars['Int'] | null) +/** relational table for assigning a team to a match and lineup */ +export interface match_lineups { + /** A computed field, executes function "can_pick_map_veto" */ + can_pick_map_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_pick_region_veto" */ + can_pick_region_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_update_lineup" */ + can_update_lineup: (Scalars['Boolean'] | null) /** An object relationship */ - map_pool: map_pools - map_pool_id: Scalars['uuid'] - map_veto: Scalars['Boolean'] - match_mode: e_match_mode_enum + captain: (v_match_captains | null) + /** An object relationship */ + coach: (players | null) + coach_steam_id: (Scalars['bigint'] | null) + id: Scalars['uuid'] + /** A computed field, executes function "is_on_lineup" */ + is_on_lineup: (Scalars['Boolean'] | null) + /** A computed field, executes function "lineup_is_picking_map_veto" */ + is_picking_map_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "lineup_is_picking_region_veto" */ + is_picking_region_veto: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_match_lineup_ready" */ + is_ready: (Scalars['Boolean'] | null) /** An array relationship */ - matches: matches[] + lineup_players: match_lineup_players[] /** An aggregate relationship */ - matches_aggregate: matches_aggregate - mr: Scalars['Int'] - number_of_substitutes: Scalars['Int'] - overtime: Scalars['Boolean'] - prefer_dedicated_server: Scalars['Boolean'] - ready_setting: e_ready_settings_enum - region_veto: Scalars['Boolean'] - regions: (Scalars['String'][] | null) - tech_timeout_setting: e_timeout_settings_enum - timeout_setting: e_timeout_settings_enum - /** An object relationship */ - tournament: (tournaments | null) + lineup_players_aggregate: match_lineup_players_aggregate /** An object relationship */ - tournament_bracket: (tournament_brackets | null) + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An array relationship */ + match_veto_picks: match_map_veto_picks[] + /** An aggregate relationship */ + match_veto_picks_aggregate: match_map_veto_picks_aggregate + /** A computed field, executes function "get_team_name" */ + name: (Scalars['String'] | null) /** An object relationship */ - tournament_stage: (tournament_stages | null) - tv_delay: Scalars['Int'] - type: e_match_types_enum - __typename: 'match_options' + team: (teams | null) + team_id: (Scalars['uuid'] | null) + team_name: (Scalars['String'] | null) + __typename: 'match_lineups' } -/** aggregated selection of "match_options" */ -export interface match_options_aggregate { - aggregate: (match_options_aggregate_fields | null) - nodes: match_options[] - __typename: 'match_options_aggregate' +/** aggregated selection of "match_lineups" */ +export interface match_lineups_aggregate { + aggregate: (match_lineups_aggregate_fields | null) + nodes: match_lineups[] + __typename: 'match_lineups_aggregate' } -/** aggregate fields of "match_options" */ -export interface match_options_aggregate_fields { - avg: (match_options_avg_fields | null) +/** aggregate fields of "match_lineups" */ +export interface match_lineups_aggregate_fields { + avg: (match_lineups_avg_fields | null) count: Scalars['Int'] - max: (match_options_max_fields | null) - min: (match_options_min_fields | null) - stddev: (match_options_stddev_fields | null) - stddev_pop: (match_options_stddev_pop_fields | null) - stddev_samp: (match_options_stddev_samp_fields | null) - sum: (match_options_sum_fields | null) - var_pop: (match_options_var_pop_fields | null) - var_samp: (match_options_var_samp_fields | null) - variance: (match_options_variance_fields | null) - __typename: 'match_options_aggregate_fields' + max: (match_lineups_max_fields | null) + min: (match_lineups_min_fields | null) + stddev: (match_lineups_stddev_fields | null) + stddev_pop: (match_lineups_stddev_pop_fields | null) + stddev_samp: (match_lineups_stddev_samp_fields | null) + sum: (match_lineups_sum_fields | null) + var_pop: (match_lineups_var_pop_fields | null) + var_samp: (match_lineups_var_samp_fields | null) + variance: (match_lineups_variance_fields | null) + __typename: 'match_lineups_aggregate_fields' } /** aggregate avg on columns */ -export interface match_options_avg_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - __typename: 'match_options_avg_fields' +export interface match_lineups_avg_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_avg_fields' } -/** unique or primary key constraints on table "match_options" */ -export type match_options_constraint = 'match_options_pkey' +/** unique or primary key constraints on table "match_lineups" */ +export type match_lineups_constraint = 'match_teams_pkey' /** aggregate max on columns */ -export interface match_options_max_fields { - auto_cancel_duration: (Scalars['Int'] | null) - best_of: (Scalars['Int'] | null) +export interface match_lineups_max_fields { + coach_steam_id: (Scalars['bigint'] | null) id: (Scalars['uuid'] | null) - invite_code: (Scalars['String'] | null) - live_match_timeout: (Scalars['Int'] | null) - map_pool_id: (Scalars['uuid'] | null) - mr: (Scalars['Int'] | null) - number_of_substitutes: (Scalars['Int'] | null) - regions: (Scalars['String'][] | null) - tv_delay: (Scalars['Int'] | null) - __typename: 'match_options_max_fields' + match_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_team_name" */ + name: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + team_name: (Scalars['String'] | null) + __typename: 'match_lineups_max_fields' } /** aggregate min on columns */ -export interface match_options_min_fields { - auto_cancel_duration: (Scalars['Int'] | null) - best_of: (Scalars['Int'] | null) +export interface match_lineups_min_fields { + coach_steam_id: (Scalars['bigint'] | null) id: (Scalars['uuid'] | null) - invite_code: (Scalars['String'] | null) - live_match_timeout: (Scalars['Int'] | null) - map_pool_id: (Scalars['uuid'] | null) - mr: (Scalars['Int'] | null) - number_of_substitutes: (Scalars['Int'] | null) - regions: (Scalars['String'][] | null) - tv_delay: (Scalars['Int'] | null) - __typename: 'match_options_min_fields' + match_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_team_name" */ + name: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + team_name: (Scalars['String'] | null) + __typename: 'match_lineups_min_fields' } -/** response of any mutation on the table "match_options" */ -export interface match_options_mutation_response { +/** response of any mutation on the table "match_lineups" */ +export interface match_lineups_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_options[] - __typename: 'match_options_mutation_response' + returning: match_lineups[] + __typename: 'match_lineups_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' +/** select columns of table "match_lineups" */ +export type match_lineups_select_column = 'coach_steam_id' | 'id' | 'match_id' | 'team_id' | 'team_name' /** aggregate stddev on columns */ -export interface match_options_stddev_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - __typename: 'match_options_stddev_fields' +export interface match_lineups_stddev_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_options_stddev_pop_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - __typename: 'match_options_stddev_pop_fields' +export interface match_lineups_stddev_pop_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_options_stddev_samp_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - __typename: 'match_options_stddev_samp_fields' +export interface match_lineups_stddev_samp_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_options_sum_fields { - 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) - __typename: 'match_options_sum_fields' +export interface match_lineups_sum_fields { + coach_steam_id: (Scalars['bigint'] | null) + __typename: 'match_lineups_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' +/** update columns of table "match_lineups" */ +export type match_lineups_update_column = 'coach_steam_id' | 'id' | 'match_id' | 'team_id' | 'team_name' /** aggregate var_pop on columns */ -export interface match_options_var_pop_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - __typename: 'match_options_var_pop_fields' +export interface match_lineups_var_pop_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_var_pop_fields' } /** aggregate var_samp on columns */ -export interface match_options_var_samp_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - __typename: 'match_options_var_samp_fields' +export interface match_lineups_var_samp_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_var_samp_fields' } /** aggregate variance on columns */ -export interface match_options_variance_fields { - auto_cancel_duration: (Scalars['Float'] | null) - best_of: (Scalars['Float'] | null) - live_match_timeout: (Scalars['Float'] | null) - mr: (Scalars['Float'] | null) - number_of_substitutes: (Scalars['Float'] | null) - tv_delay: (Scalars['Float'] | null) - __typename: 'match_options_variance_fields' +export interface match_lineups_variance_fields { + coach_steam_id: (Scalars['Float'] | null) + __typename: 'match_lineups_variance_fields' } -/** columns and relationships of "match_region_veto_picks" */ -export interface match_region_veto_picks { +/** columns and relationships of "match_map_demos" */ +export interface match_map_demos { + bombs: (Scalars['jsonb'] | null) + /** An array relationship */ + clip_render_jobs: clip_render_jobs[] + /** An aggregate relationship */ + clip_render_jobs_aggregate: clip_render_jobs_aggregate created_at: Scalars['timestamptz'] + cs2_build: (Scalars['String'] | null) + /** An array relationship */ + demo_sessions: match_demo_sessions[] + /** An aggregate relationship */ + demo_sessions_aggregate: match_demo_sessions_aggregate + /** A computed field, executes function "demo_download_url" */ + download_url: (Scalars['String'] | null) + duration_seconds: (Scalars['Float'] | null) + file: Scalars['String'] + geometry_validated: (Scalars['Boolean'] | null) id: Scalars['uuid'] + kills: (Scalars['jsonb'] | null) + map_name: (Scalars['String'] | null) /** An object relationship */ match: matches + /** An array relationship */ + match_clips: match_clips[] + /** An aggregate relationship */ + match_clips_aggregate: match_clips_aggregate match_id: Scalars['uuid'] /** An object relationship */ - match_lineup: match_lineups - match_lineup_id: Scalars['uuid'] - region: Scalars['String'] - type: e_veto_pick_types_enum - __typename: 'match_region_veto_picks' + match_map: match_maps + match_map_id: Scalars['uuid'] + metadata_parsed_at: (Scalars['timestamptz'] | null) + playback_file: (Scalars['String'] | null) + playback_size: (Scalars['Int'] | null) + /** A computed field, executes function "demo_playback_url" */ + playback_url: (Scalars['String'] | null) + players: (Scalars['jsonb'] | null) + round_ticks: (Scalars['jsonb'] | null) + size: (Scalars['Int'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Int'] | null) + workshop_id: (Scalars['String'] | null) + __typename: 'match_map_demos' } -/** aggregated selection of "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregate { - aggregate: (match_region_veto_picks_aggregate_fields | null) - nodes: match_region_veto_picks[] - __typename: 'match_region_veto_picks_aggregate' +/** aggregated selection of "match_map_demos" */ +export interface match_map_demos_aggregate { + aggregate: (match_map_demos_aggregate_fields | null) + nodes: match_map_demos[] + __typename: 'match_map_demos_aggregate' } -/** aggregate fields of "match_region_veto_picks" */ -export interface match_region_veto_picks_aggregate_fields { +/** aggregate fields of "match_map_demos" */ +export interface match_map_demos_aggregate_fields { + avg: (match_map_demos_avg_fields | null) count: Scalars['Int'] - max: (match_region_veto_picks_max_fields | null) - min: (match_region_veto_picks_min_fields | null) - __typename: 'match_region_veto_picks_aggregate_fields' + max: (match_map_demos_max_fields | null) + min: (match_map_demos_min_fields | null) + stddev: (match_map_demos_stddev_fields | null) + stddev_pop: (match_map_demos_stddev_pop_fields | null) + stddev_samp: (match_map_demos_stddev_samp_fields | null) + sum: (match_map_demos_sum_fields | null) + var_pop: (match_map_demos_var_pop_fields | null) + var_samp: (match_map_demos_var_samp_fields | null) + variance: (match_map_demos_variance_fields | null) + __typename: 'match_map_demos_aggregate_fields' } -/** unique or primary key constraints on table "match_region_veto_picks" */ -export type match_region_veto_picks_constraint = 'match_region_veto_picks_match_id_region_key' | 'match_region_veto_picks_pkey' +/** aggregate avg on columns */ +export interface match_map_demos_avg_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_avg_fields' +} + + +/** unique or primary key constraints on table "match_map_demos" */ +export type match_map_demos_constraint = 'match_demos_pkey' | 'match_map_demos_match_map_id_file_key' /** aggregate max on columns */ -export interface match_region_veto_picks_max_fields { +export interface match_map_demos_max_fields { created_at: (Scalars['timestamptz'] | null) + cs2_build: (Scalars['String'] | null) + /** A computed field, executes function "demo_download_url" */ + download_url: (Scalars['String'] | null) + duration_seconds: (Scalars['Float'] | null) + file: (Scalars['String'] | null) id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - __typename: 'match_region_veto_picks_max_fields' + match_map_id: (Scalars['uuid'] | null) + metadata_parsed_at: (Scalars['timestamptz'] | null) + playback_file: (Scalars['String'] | null) + playback_size: (Scalars['Int'] | null) + /** A computed field, executes function "demo_playback_url" */ + playback_url: (Scalars['String'] | null) + size: (Scalars['Int'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Int'] | null) + workshop_id: (Scalars['String'] | null) + __typename: 'match_map_demos_max_fields' } /** aggregate min on columns */ -export interface match_region_veto_picks_min_fields { +export interface match_map_demos_min_fields { created_at: (Scalars['timestamptz'] | null) + cs2_build: (Scalars['String'] | null) + /** A computed field, executes function "demo_download_url" */ + download_url: (Scalars['String'] | null) + duration_seconds: (Scalars['Float'] | null) + file: (Scalars['String'] | null) id: (Scalars['uuid'] | null) + map_name: (Scalars['String'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - region: (Scalars['String'] | null) - __typename: 'match_region_veto_picks_min_fields' + match_map_id: (Scalars['uuid'] | null) + metadata_parsed_at: (Scalars['timestamptz'] | null) + playback_file: (Scalars['String'] | null) + playback_size: (Scalars['Int'] | null) + /** A computed field, executes function "demo_playback_url" */ + playback_url: (Scalars['String'] | null) + size: (Scalars['Int'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Int'] | null) + workshop_id: (Scalars['String'] | null) + __typename: 'match_map_demos_min_fields' } -/** response of any mutation on the table "match_region_veto_picks" */ -export interface match_region_veto_picks_mutation_response { +/** response of any mutation on the table "match_map_demos" */ +export interface match_map_demos_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_region_veto_picks[] - __typename: 'match_region_veto_picks_mutation_response' + returning: match_map_demos[] + __typename: 'match_map_demos_mutation_response' } -/** select columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_select_column = 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' +/** select columns of table "match_map_demos" */ +export type match_map_demos_select_column = 'bombs' | 'created_at' | 'cs2_build' | 'duration_seconds' | 'file' | 'geometry_validated' | 'id' | 'kills' | 'map_name' | 'match_id' | 'match_map_id' | 'metadata_parsed_at' | 'playback_file' | 'playback_size' | 'players' | 'round_ticks' | 'size' | 'tick_rate' | 'total_ticks' | 'workshop_id' -/** update columns of table "match_region_veto_picks" */ -export type match_region_veto_picks_update_column = 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' +/** select "match_map_demos_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_map_demos" */ +export type match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_and_arguments_columns = 'geometry_validated' -/** columns and relationships of "match_streams" */ -export interface match_streams { - autodirector: Scalars['Boolean'] - error_message: (Scalars['String'] | null) - /** An object relationship */ - game_server_node: (game_server_nodes | null) - game_server_node_id: (Scalars['String'] | null) - id: Scalars['uuid'] - is_game_streamer: Scalars['Boolean'] - is_live: Scalars['Boolean'] - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: Scalars['String'] - /** An object relationship */ - match: matches - match_id: Scalars['uuid'] - mode: Scalars['String'] - priority: Scalars['Int'] - status: (Scalars['String'] | null) - status_history: Scalars['jsonb'] - stream_url: (Scalars['String'] | null) - title: Scalars['String'] - __typename: 'match_streams' +/** select "match_map_demos_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_map_demos" */ +export type match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns = 'geometry_validated' + + +/** aggregate stddev on columns */ +export interface match_map_demos_stddev_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_stddev_fields' } -/** aggregated selection of "match_streams" */ -export interface match_streams_aggregate { - aggregate: (match_streams_aggregate_fields | null) - nodes: match_streams[] - __typename: 'match_streams_aggregate' +/** aggregate stddev_pop on columns */ +export interface match_map_demos_stddev_pop_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_stddev_pop_fields' } -/** aggregate fields of "match_streams" */ -export interface match_streams_aggregate_fields { - avg: (match_streams_avg_fields | null) - count: Scalars['Int'] - max: (match_streams_max_fields | null) - min: (match_streams_min_fields | null) - stddev: (match_streams_stddev_fields | null) - stddev_pop: (match_streams_stddev_pop_fields | null) - stddev_samp: (match_streams_stddev_samp_fields | null) - sum: (match_streams_sum_fields | null) - var_pop: (match_streams_var_pop_fields | null) - var_samp: (match_streams_var_samp_fields | null) - variance: (match_streams_variance_fields | null) - __typename: 'match_streams_aggregate_fields' +/** aggregate stddev_samp on columns */ +export interface match_map_demos_stddev_samp_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_stddev_samp_fields' } -/** aggregate avg on columns */ -export interface match_streams_avg_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_avg_fields' +/** aggregate sum on columns */ +export interface match_map_demos_sum_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Int'] | null) + size: (Scalars['Int'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Int'] | null) + __typename: 'match_map_demos_sum_fields' } -/** unique or primary key constraints on table "match_streams" */ -export type match_streams_constraint = 'match_streams_pkey' +/** update columns of table "match_map_demos" */ +export type match_map_demos_update_column = 'bombs' | 'created_at' | 'cs2_build' | 'file' | 'geometry_validated' | 'id' | 'kills' | 'map_name' | 'match_id' | 'match_map_id' | 'metadata_parsed_at' | 'playback_file' | 'playback_size' | 'players' | 'round_ticks' | 'size' | 'tick_rate' | 'total_ticks' | 'workshop_id' -/** aggregate max on columns */ -export interface match_streams_max_fields { - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - mode: (Scalars['String'] | null) - priority: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - stream_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - __typename: 'match_streams_max_fields' +/** aggregate var_pop on columns */ +export interface match_map_demos_var_pop_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_var_pop_fields' } -/** aggregate min on columns */ -export interface match_streams_min_fields { - error_message: (Scalars['String'] | null) - game_server_node_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - k8s_service_name: (Scalars['String'] | null) - last_status_at: (Scalars['timestamptz'] | null) - link: (Scalars['String'] | null) - match_id: (Scalars['uuid'] | null) - mode: (Scalars['String'] | null) - priority: (Scalars['Int'] | null) - status: (Scalars['String'] | null) - stream_url: (Scalars['String'] | null) - title: (Scalars['String'] | null) - __typename: 'match_streams_min_fields' +/** aggregate var_samp on columns */ +export interface match_map_demos_var_samp_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_var_samp_fields' } -/** response of any mutation on the table "match_streams" */ -export interface match_streams_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: match_streams[] - __typename: 'match_streams_mutation_response' +/** aggregate variance on columns */ +export interface match_map_demos_variance_fields { + duration_seconds: (Scalars['Float'] | null) + playback_size: (Scalars['Float'] | null) + size: (Scalars['Float'] | null) + tick_rate: (Scalars['Float'] | null) + total_ticks: (Scalars['Float'] | null) + __typename: 'match_map_demos_variance_fields' } -/** select columns of table "match_streams" */ -export type match_streams_select_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' +/** columns and relationships of "match_map_rounds" */ +export interface match_map_rounds { + /** An array relationship */ + assists: player_assists[] + /** An aggregate relationship */ + assists_aggregate: player_assists_aggregate + backup_file: (Scalars['String'] | null) + created_at: Scalars['timestamptz'] + deleted_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "has_backup_file" */ + has_backup_file: (Scalars['Boolean'] | null) + id: Scalars['uuid'] + /** An array relationship */ + kills: player_kills[] + /** An aggregate relationship */ + kills_aggregate: player_kills_aggregate + lineup_1_money: Scalars['Int'] + lineup_1_score: Scalars['Int'] + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Scalars['Int'] + lineup_2_money: Scalars['Int'] + lineup_2_score: Scalars['Int'] + lineup_2_side: e_sides_enum + lineup_2_timeouts_available: Scalars['Int'] + /** An object relationship */ + match_map: match_maps + match_map_id: Scalars['uuid'] + round: Scalars['Int'] + time: Scalars['timestamptz'] + winning_reason: (e_winning_reasons_enum | null) + winning_side: Scalars['String'] + __typename: 'match_map_rounds' +} -/** select "match_streams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_streams" */ -export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' +/** aggregated selection of "match_map_rounds" */ +export interface match_map_rounds_aggregate { + aggregate: (match_map_rounds_aggregate_fields | null) + nodes: match_map_rounds[] + __typename: 'match_map_rounds_aggregate' +} -/** select "match_streams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_streams" */ -export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' +/** aggregate fields of "match_map_rounds" */ +export interface match_map_rounds_aggregate_fields { + avg: (match_map_rounds_avg_fields | null) + count: Scalars['Int'] + max: (match_map_rounds_max_fields | null) + min: (match_map_rounds_min_fields | null) + stddev: (match_map_rounds_stddev_fields | null) + stddev_pop: (match_map_rounds_stddev_pop_fields | null) + stddev_samp: (match_map_rounds_stddev_samp_fields | null) + sum: (match_map_rounds_sum_fields | null) + var_pop: (match_map_rounds_var_pop_fields | null) + var_samp: (match_map_rounds_var_samp_fields | null) + variance: (match_map_rounds_variance_fields | null) + __typename: 'match_map_rounds_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface match_map_rounds_avg_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_avg_fields' +} + + +/** unique or primary key constraints on table "match_map_rounds" */ +export type match_map_rounds_constraint = 'match_rounds__id_key' | 'match_rounds_match_id_round_key' | 'match_rounds_pkey' + + +/** aggregate max on columns */ +export interface match_map_rounds_max_fields { + backup_file: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + lineup_1_money: (Scalars['Int'] | null) + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + lineup_2_money: (Scalars['Int'] | null) + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + winning_side: (Scalars['String'] | null) + __typename: 'match_map_rounds_max_fields' +} + + +/** aggregate min on columns */ +export interface match_map_rounds_min_fields { + backup_file: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + deleted_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + lineup_1_money: (Scalars['Int'] | null) + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + lineup_2_money: (Scalars['Int'] | null) + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + time: (Scalars['timestamptz'] | null) + winning_side: (Scalars['String'] | null) + __typename: 'match_map_rounds_min_fields' +} + + +/** response of any mutation on the table "match_map_rounds" */ +export interface match_map_rounds_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_map_rounds[] + __typename: 'match_map_rounds_mutation_response' +} + + +/** select columns of table "match_map_rounds" */ +export type match_map_rounds_select_column = 'backup_file' | 'created_at' | 'deleted_at' | 'id' | 'lineup_1_money' | 'lineup_1_score' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_money' | 'lineup_2_score' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'match_map_id' | 'round' | 'time' | 'winning_reason' | 'winning_side' /** aggregate stddev on columns */ -export interface match_streams_stddev_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_stddev_fields' +export interface match_map_rounds_stddev_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface match_streams_stddev_pop_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_stddev_pop_fields' +export interface match_map_rounds_stddev_pop_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface match_streams_stddev_samp_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_stddev_samp_fields' +export interface match_map_rounds_stddev_samp_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_stddev_samp_fields' } /** aggregate sum on columns */ -export interface match_streams_sum_fields { - priority: (Scalars['Int'] | null) - __typename: 'match_streams_sum_fields' +export interface match_map_rounds_sum_fields { + lineup_1_money: (Scalars['Int'] | null) + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + lineup_2_money: (Scalars['Int'] | null) + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + round: (Scalars['Int'] | null) + __typename: 'match_map_rounds_sum_fields' } -/** update columns of table "match_streams" */ -export type match_streams_update_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' +/** update columns of table "match_map_rounds" */ +export type match_map_rounds_update_column = 'backup_file' | 'created_at' | 'deleted_at' | 'id' | 'lineup_1_money' | 'lineup_1_score' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_money' | 'lineup_2_score' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'match_map_id' | 'round' | 'time' | 'winning_reason' | 'winning_side' /** aggregate var_pop on columns */ -export interface match_streams_var_pop_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_var_pop_fields' +export interface match_map_rounds_var_pop_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_var_pop_fields' } /** aggregate var_samp on columns */ -export interface match_streams_var_samp_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_var_samp_fields' +export interface match_map_rounds_var_samp_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_var_samp_fields' } /** aggregate variance on columns */ -export interface match_streams_variance_fields { - priority: (Scalars['Float'] | null) - __typename: 'match_streams_variance_fields' +export interface match_map_rounds_variance_fields { + lineup_1_money: (Scalars['Float'] | null) + lineup_1_score: (Scalars['Float'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + lineup_2_money: (Scalars['Float'] | null) + lineup_2_score: (Scalars['Float'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'match_map_rounds_variance_fields' } -/** columns and relationships of "match_type_cfgs" */ -export interface match_type_cfgs { - cfg: Scalars['String'] - type: e_game_cfg_types_enum - __typename: 'match_type_cfgs' +/** columns and relationships of "match_map_veto_picks" */ +export interface match_map_veto_picks { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + map: maps + map_id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_lineup: match_lineups + match_lineup_id: Scalars['uuid'] + side: (Scalars['String'] | null) + type: e_veto_pick_types_enum + __typename: 'match_map_veto_picks' } -/** aggregated selection of "match_type_cfgs" */ -export interface match_type_cfgs_aggregate { - aggregate: (match_type_cfgs_aggregate_fields | null) - nodes: match_type_cfgs[] - __typename: 'match_type_cfgs_aggregate' +/** aggregated selection of "match_map_veto_picks" */ +export interface match_map_veto_picks_aggregate { + aggregate: (match_map_veto_picks_aggregate_fields | null) + nodes: match_map_veto_picks[] + __typename: 'match_map_veto_picks_aggregate' } -/** aggregate fields of "match_type_cfgs" */ -export interface match_type_cfgs_aggregate_fields { +/** aggregate fields of "match_map_veto_picks" */ +export interface match_map_veto_picks_aggregate_fields { count: Scalars['Int'] - max: (match_type_cfgs_max_fields | null) - min: (match_type_cfgs_min_fields | null) - __typename: 'match_type_cfgs_aggregate_fields' + max: (match_map_veto_picks_max_fields | null) + min: (match_map_veto_picks_min_fields | null) + __typename: 'match_map_veto_picks_aggregate_fields' } -/** unique or primary key constraints on table "match_type_cfgs" */ -export type match_type_cfgs_constraint = 'match_type_cfgs_pkey' +/** unique or primary key constraints on table "match_map_veto_picks" */ +export type match_map_veto_picks_constraint = 'match_map_veto_picks_map_id_match_id_type_key' | 'match_map_veto_picks_pkey' /** aggregate max on columns */ -export interface match_type_cfgs_max_fields { - cfg: (Scalars['String'] | null) - __typename: 'match_type_cfgs_max_fields' +export interface match_map_veto_picks_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + side: (Scalars['String'] | null) + __typename: 'match_map_veto_picks_max_fields' } /** aggregate min on columns */ -export interface match_type_cfgs_min_fields { - cfg: (Scalars['String'] | null) - __typename: 'match_type_cfgs_min_fields' +export interface match_map_veto_picks_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + side: (Scalars['String'] | null) + __typename: 'match_map_veto_picks_min_fields' } -/** response of any mutation on the table "match_type_cfgs" */ -export interface match_type_cfgs_mutation_response { +/** response of any mutation on the table "match_map_veto_picks" */ +export interface match_map_veto_picks_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: match_type_cfgs[] - __typename: 'match_type_cfgs_mutation_response' + returning: match_map_veto_picks[] + __typename: 'match_map_veto_picks_mutation_response' } -/** select columns of table "match_type_cfgs" */ -export type match_type_cfgs_select_column = 'cfg' | 'type' +/** select columns of table "match_map_veto_picks" */ +export type match_map_veto_picks_select_column = 'created_at' | 'id' | 'map_id' | 'match_id' | 'match_lineup_id' | 'side' | 'type' -/** update columns of table "match_type_cfgs" */ -export type match_type_cfgs_update_column = 'cfg' | 'type' +/** update columns of table "match_map_veto_picks" */ +export type match_map_veto_picks_update_column = 'created_at' | 'id' | 'map_id' | 'match_id' | 'match_lineup_id' | 'side' | 'type' -/** columns and relationships of "matches" */ -export interface matches { - /** A computed field, executes function "can_assign_server_to_match" */ - can_assign_server: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_cancel_match" */ - can_cancel: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_check_in" */ - can_check_in: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_reassign_winner" */ - can_reassign_winner: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_schedule_match" */ - can_schedule: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_start_match" */ - can_start: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_stream_live" */ - can_stream_live: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_stream_tv" */ - can_stream_tv: (Scalars['Boolean'] | null) - cancels_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - clutches: v_match_clutches[] - /** An aggregate relationship */ - clutches_aggregate: v_match_clutches_aggregate - /** A computed field, executes function "get_match_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "get_match_connection_string" */ - connection_string: (Scalars['String'] | null) +/** columns and relationships of "match_maps" */ +export interface match_maps { + clips_count: Scalars['Int'] created_at: Scalars['timestamptz'] - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id: (Scalars['uuid'] | null) /** An array relationship */ demos: match_map_demos[] /** An aggregate relationship */ demos_aggregate: match_map_demos_aggregate - /** An array relationship */ - draft_games: draft_games[] - /** An aggregate relationship */ - draft_games_aggregate: draft_games_aggregate - /** An object relationship */ - e_match_status: e_match_status + /** A computed field, executes function "match_map_demo_download_url" */ + demos_download_url: (Scalars['String'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) /** An object relationship */ - e_region: (server_regions | null) - effective_at: (Scalars['timestamptz'] | null) + e_match_map_status: e_match_map_status + ended_at: (Scalars['timestamptz'] | null) /** An array relationship */ - elo_changes: v_player_elo[] + flashes: player_flashes[] /** An aggregate relationship */ - elo_changes_aggregate: v_player_elo_aggregate - ended_at: (Scalars['timestamptz'] | null) - external_id: (Scalars['String'] | null) + flashes_aggregate: player_flashes_aggregate id: Scalars['uuid'] - /** A computed field, executes function "match_invite_code" */ - invite_code: (Scalars['String'] | null) - /** A computed field, executes function "is_captain" */ - is_captain: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_coach" */ - is_coach: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_friend_in_match_lineup" */ - is_friend_in_match_lineup: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_in_lineup" */ - is_in_lineup: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_match_server_available" */ - is_match_server_available: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_match_organizer" */ - is_organizer: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_server_online" */ - is_server_online: (Scalars['Boolean'] | null) - /** A computed field, executes function "is_tournament_match" */ - is_tournament_match: (Scalars['Boolean'] | null) - label: (Scalars['String'] | null) + /** A computed field, executes function "is_current_match_map" */ + is_current_map: (Scalars['Boolean'] | null) + latest_clip_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_side: e_sides_enum + lineup_1_timeouts_available: Scalars['Int'] + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_side: (e_sides_enum | null) + lineup_2_timeouts_available: Scalars['Int'] /** An object relationship */ - lineup_1: match_lineups - lineup_1_id: Scalars['uuid'] + map: maps + map_id: Scalars['uuid'] /** An object relationship */ - lineup_2: match_lineups - lineup_2_id: Scalars['uuid'] - /** A computed field, executes function "get_lineup_counts" */ - lineup_counts: (Scalars['json'] | null) - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** An array relationship */ - map_veto_picks: match_map_veto_picks[] - /** An aggregate relationship */ - map_veto_picks_aggregate: match_map_veto_picks_aggregate - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type: (Scalars['String'] | null) + match: matches /** An array relationship */ - match_maps: match_maps[] + match_clips: match_clips[] /** An aggregate relationship */ - match_maps_aggregate: match_maps_aggregate - match_options_id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) + match_clips_aggregate: match_clips_aggregate + match_id: Scalars['uuid'] /** An array relationship */ - opening_duels: v_match_player_opening_duels[] + objectives: player_objectives[] /** An aggregate relationship */ - opening_duels_aggregate: v_match_player_opening_duels_aggregate - /** An object relationship */ - options: (match_options | null) - /** An object relationship */ - organizer: (players | null) - organizer_steam_id: (Scalars['bigint'] | null) - password: Scalars['String'] + objectives_aggregate: player_objectives_aggregate + order: Scalars['Int'] /** An array relationship */ player_assists: player_assists[] /** An aggregate relationship */ @@ -9755,415 +9936,1331 @@ export interface matches { /** An aggregate relationship */ player_damages_aggregate: player_damages_aggregate /** An array relationship */ - player_flashes: player_flashes[] - /** An aggregate relationship */ - player_flashes_aggregate: player_flashes_aggregate - /** An array relationship */ player_kills: player_kills[] /** An aggregate relationship */ player_kills_aggregate: player_kills_aggregate /** An array relationship */ - player_objectives: player_objectives[] - /** An aggregate relationship */ - player_objectives_aggregate: player_objectives_aggregate - /** An array relationship */ player_unused_utilities: player_unused_utility[] /** An aggregate relationship */ player_unused_utilities_aggregate: player_unused_utility_aggregate + public_clips_count: Scalars['Int'] + public_latest_clip_at: (Scalars['timestamptz'] | null) /** An array relationship */ - player_utility: player_utility[] - /** An aggregate relationship */ - player_utility_aggregate: player_utility_aggregate - region: (Scalars['String'] | null) - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** An array relationship */ - region_veto_picks: match_region_veto_picks[] + rounds: match_map_rounds[] /** An aggregate relationship */ - region_veto_picks_aggregate: match_region_veto_picks_aggregate - /** A computed field, executes function "match_requested_organizer" */ - requested_organizer: (Scalars['Boolean'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - /** An object relationship */ - server: (servers | null) - server_error: (Scalars['String'] | null) - server_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_match_server_region" */ - server_region: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_type" */ - server_type: (Scalars['String'] | null) - source: Scalars['String'] + rounds_aggregate: match_map_rounds_aggregate started_at: (Scalars['timestamptz'] | null) - status: e_match_status_enum + status: e_match_map_status_enum /** An array relationship */ - streams: match_streams[] + utility: player_utility[] /** An aggregate relationship */ - streams_aggregate: match_streams_aggregate - /** A computed field, executes function "get_match_teams" */ - teams: (teams[] | null) + utility_aggregate: player_utility_aggregate /** An array relationship */ - tournament_brackets: tournament_brackets[] + vetos: match_map_veto_picks[] /** An aggregate relationship */ - tournament_brackets_aggregate: tournament_brackets_aggregate - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string: (Scalars['String'] | null) - /** An object relationship */ - winner: (match_lineups | null) + vetos_aggregate: match_map_veto_picks_aggregate winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'matches' + __typename: 'match_maps' } -/** aggregated selection of "matches" */ -export interface matches_aggregate { - aggregate: (matches_aggregate_fields | null) - nodes: matches[] - __typename: 'matches_aggregate' +/** aggregated selection of "match_maps" */ +export interface match_maps_aggregate { + aggregate: (match_maps_aggregate_fields | null) + nodes: match_maps[] + __typename: 'match_maps_aggregate' } -/** aggregate fields of "matches" */ -export interface matches_aggregate_fields { - avg: (matches_avg_fields | null) +/** aggregate fields of "match_maps" */ +export interface match_maps_aggregate_fields { + avg: (match_maps_avg_fields | null) count: Scalars['Int'] - max: (matches_max_fields | null) - min: (matches_min_fields | null) - stddev: (matches_stddev_fields | null) - stddev_pop: (matches_stddev_pop_fields | null) - stddev_samp: (matches_stddev_samp_fields | null) - sum: (matches_sum_fields | null) - var_pop: (matches_var_pop_fields | null) - var_samp: (matches_var_samp_fields | null) - variance: (matches_variance_fields | null) - __typename: 'matches_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface matches_avg_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_avg_fields' + max: (match_maps_max_fields | null) + min: (match_maps_min_fields | null) + stddev: (match_maps_stddev_fields | null) + stddev_pop: (match_maps_stddev_pop_fields | null) + stddev_samp: (match_maps_stddev_samp_fields | null) + sum: (match_maps_sum_fields | null) + var_pop: (match_maps_var_pop_fields | null) + var_samp: (match_maps_var_samp_fields | null) + variance: (match_maps_variance_fields | null) + __typename: 'match_maps_aggregate_fields' } -/** unique or primary key constraints on table "matches" */ -export type matches_constraint = 'matches_lineup_1_id_key' | 'matches_lineup_1_id_lineup_2_id_key' | 'matches_lineup_2_id_key' | 'matches_pkey' | 'uq_matches_source_external_id' +/** aggregate avg on columns */ +export interface match_maps_avg_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_avg_fields' +} + + +/** unique or primary key constraints on table "match_maps" */ +export type match_maps_constraint = 'match_maps_match_id_order_key' | 'match_maps_pkey' /** aggregate max on columns */ -export interface matches_max_fields { - cancels_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "get_match_connection_string" */ - connection_string: (Scalars['String'] | null) +export interface match_maps_max_fields { + clips_count: (Scalars['Int'] | null) created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id: (Scalars['uuid'] | null) - effective_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "match_map_demo_download_url" */ + demos_download_url: (Scalars['String'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) ended_at: (Scalars['timestamptz'] | null) - external_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_invite_code" */ - invite_code: (Scalars['String'] | null) - label: (Scalars['String'] | null) - lineup_1_id: (Scalars['uuid'] | null) - lineup_2_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type: (Scalars['String'] | null) - match_options_id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - password: (Scalars['String'] | null) - region: (Scalars['String'] | null) - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id: (Scalars['uuid'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - server_error: (Scalars['String'] | null) - server_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_match_server_region" */ - server_region: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_type" */ - server_type: (Scalars['String'] | null) - source: (Scalars['String'] | null) + latest_clip_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + order: (Scalars['Int'] | null) + public_clips_count: (Scalars['Int'] | null) + public_latest_clip_at: (Scalars['timestamptz'] | null) started_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string: (Scalars['String'] | null) winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'matches_max_fields' + __typename: 'match_maps_max_fields' } /** aggregate min on columns */ -export interface matches_min_fields { - cancels_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_connection_link" */ - connection_link: (Scalars['String'] | null) - /** A computed field, executes function "get_match_connection_string" */ - connection_string: (Scalars['String'] | null) +export interface match_maps_min_fields { + clips_count: (Scalars['Int'] | null) created_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_current_match_map" */ - current_match_map_id: (Scalars['uuid'] | null) - effective_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "match_map_demo_download_url" */ + demos_download_url: (Scalars['String'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) ended_at: (Scalars['timestamptz'] | null) - external_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_invite_code" */ - invite_code: (Scalars['String'] | null) - label: (Scalars['String'] | null) - lineup_1_id: (Scalars['uuid'] | null) - lineup_2_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_picking_lineup_id" */ - map_veto_picking_lineup_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_map_veto_type" */ - map_veto_type: (Scalars['String'] | null) - match_options_id: (Scalars['uuid'] | null) - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - password: (Scalars['String'] | null) - region: (Scalars['String'] | null) - /** A computed field, executes function "get_region_veto_picking_lineup_id" */ - region_veto_picking_lineup_id: (Scalars['uuid'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - server_error: (Scalars['String'] | null) - server_id: (Scalars['uuid'] | null) - /** A computed field, executes function "get_match_server_region" */ - server_region: (Scalars['String'] | null) - /** A computed field, executes function "get_match_server_type" */ - server_type: (Scalars['String'] | null) - source: (Scalars['String'] | null) + latest_clip_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + order: (Scalars['Int'] | null) + public_clips_count: (Scalars['Int'] | null) + public_latest_clip_at: (Scalars['timestamptz'] | null) started_at: (Scalars['timestamptz'] | null) - /** A computed field, executes function "get_match_tv_connection_string" */ - tv_connection_string: (Scalars['String'] | null) winning_lineup_id: (Scalars['uuid'] | null) - __typename: 'matches_min_fields' + __typename: 'match_maps_min_fields' } -/** response of any mutation on the table "matches" */ -export interface matches_mutation_response { +/** response of any mutation on the table "match_maps" */ +export interface match_maps_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: matches[] - __typename: 'matches_mutation_response' + returning: match_maps[] + __typename: 'match_maps_mutation_response' } -/** select columns of table "matches" */ -export type matches_select_column = 'cancels_at' | 'created_at' | 'effective_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'source' | 'started_at' | 'status' | 'winning_lineup_id' +/** select columns of table "match_maps" */ +export type match_maps_select_column = 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' /** aggregate stddev on columns */ -export interface matches_stddev_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_stddev_fields' +export interface match_maps_stddev_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface matches_stddev_pop_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_stddev_pop_fields' +export interface match_maps_stddev_pop_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface matches_stddev_samp_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_stddev_samp_fields' +export interface match_maps_stddev_samp_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_stddev_samp_fields' } /** aggregate sum on columns */ -export interface matches_sum_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - __typename: 'matches_sum_fields' +export interface match_maps_sum_fields { + clips_count: (Scalars['Int'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Int'] | null) + order: (Scalars['Int'] | null) + public_clips_count: (Scalars['Int'] | null) + __typename: 'match_maps_sum_fields' } -/** update columns of table "matches" */ -export type matches_update_column = 'cancels_at' | 'created_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'source' | 'started_at' | 'status' | 'winning_lineup_id' +/** update columns of table "match_maps" */ +export type match_maps_update_column = 'clips_count' | 'created_at' | 'ended_at' | 'id' | 'latest_clip_at' | 'lineup_1_side' | 'lineup_1_timeouts_available' | 'lineup_2_side' | 'lineup_2_timeouts_available' | 'map_id' | 'match_id' | 'order' | 'public_clips_count' | 'public_latest_clip_at' | 'started_at' | 'status' | 'winning_lineup_id' /** aggregate var_pop on columns */ -export interface matches_var_pop_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_var_pop_fields' +export interface match_maps_var_pop_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_var_pop_fields' } /** aggregate var_samp on columns */ -export interface matches_var_samp_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_var_samp_fields' +export interface match_maps_var_samp_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_var_samp_fields' } /** aggregate variance on columns */ -export interface matches_variance_fields { - /** A computed field, executes function "match_max_players_per_lineup" */ - max_players_per_lineup: (Scalars['Int'] | null) - /** A computed field, executes function "match_min_players_per_lineup" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'matches_variance_fields' +export interface match_maps_variance_fields { + clips_count: (Scalars['Float'] | null) + /** A computed field, executes function "match_map_demo_total_size" */ + demos_total_size: (Scalars['Int'] | null) + /** A computed field, executes function "lineup_1_score" */ + lineup_1_score: (Scalars['Int'] | null) + lineup_1_timeouts_available: (Scalars['Float'] | null) + /** A computed field, executes function "lineup_2_score" */ + lineup_2_score: (Scalars['Int'] | null) + lineup_2_timeouts_available: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + public_clips_count: (Scalars['Float'] | null) + __typename: 'match_maps_variance_fields' } -/** columns and relationships of "migration_hashes.hashes" */ -export interface migration_hashes_hashes { - hash: Scalars['String'] - name: Scalars['String'] - __typename: 'migration_hashes_hashes' +/** columns and relationships of "match_options" */ +export interface match_options { + auto_cancel_duration: (Scalars['Int'] | null) + auto_cancellation: Scalars['Boolean'] + best_of: Scalars['Int'] + check_in_setting: e_check_in_settings_enum + coaches: Scalars['Boolean'] + default_models: (Scalars['Boolean'] | null) + /** A computed field, executes function "has_active_matches" */ + has_active_matches: (Scalars['Boolean'] | null) + id: Scalars['uuid'] + invite_code: (Scalars['String'] | null) + knife_round: Scalars['Boolean'] + live_match_timeout: (Scalars['Int'] | null) + /** An object relationship */ + map_pool: map_pools + map_pool_id: Scalars['uuid'] + map_veto: Scalars['Boolean'] + match_mode: e_match_mode_enum + /** An array relationship */ + matches: matches[] + /** An aggregate relationship */ + matches_aggregate: matches_aggregate + mr: Scalars['Int'] + number_of_substitutes: Scalars['Int'] + overtime: Scalars['Boolean'] + prefer_dedicated_server: Scalars['Boolean'] + ready_setting: e_ready_settings_enum + region_veto: Scalars['Boolean'] + regions: (Scalars['String'][] | null) + tech_timeout_setting: e_timeout_settings_enum + timeout_setting: e_timeout_settings_enum + /** An object relationship */ + tournament: (tournaments | null) + /** An object relationship */ + tournament_bracket: (tournament_brackets | null) + /** An object relationship */ + tournament_stage: (tournament_stages | null) + tv_delay: Scalars['Int'] + type: e_match_types_enum + __typename: 'match_options' } -/** aggregated selection of "migration_hashes.hashes" */ -export interface migration_hashes_hashes_aggregate { - aggregate: (migration_hashes_hashes_aggregate_fields | null) - nodes: migration_hashes_hashes[] - __typename: 'migration_hashes_hashes_aggregate' +/** aggregated selection of "match_options" */ +export interface match_options_aggregate { + aggregate: (match_options_aggregate_fields | null) + nodes: match_options[] + __typename: 'match_options_aggregate' } -/** aggregate fields of "migration_hashes.hashes" */ -export interface migration_hashes_hashes_aggregate_fields { +/** aggregate fields of "match_options" */ +export interface match_options_aggregate_fields { + avg: (match_options_avg_fields | null) count: Scalars['Int'] - max: (migration_hashes_hashes_max_fields | null) - min: (migration_hashes_hashes_min_fields | null) - __typename: 'migration_hashes_hashes_aggregate_fields' + max: (match_options_max_fields | null) + min: (match_options_min_fields | null) + stddev: (match_options_stddev_fields | null) + stddev_pop: (match_options_stddev_pop_fields | null) + stddev_samp: (match_options_stddev_samp_fields | null) + sum: (match_options_sum_fields | null) + var_pop: (match_options_var_pop_fields | null) + var_samp: (match_options_var_samp_fields | null) + variance: (match_options_variance_fields | null) + __typename: 'match_options_aggregate_fields' } -/** unique or primary key constraints on table "migration_hashes.hashes" */ -export type migration_hashes_hashes_constraint = 'hashes_pkey' +/** aggregate avg on columns */ +export interface match_options_avg_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + __typename: 'match_options_avg_fields' +} + + +/** unique or primary key constraints on table "match_options" */ +export type match_options_constraint = 'match_options_pkey' /** aggregate max on columns */ -export interface migration_hashes_hashes_max_fields { - hash: (Scalars['String'] | null) - name: (Scalars['String'] | null) - __typename: 'migration_hashes_hashes_max_fields' +export interface match_options_max_fields { + auto_cancel_duration: (Scalars['Int'] | null) + best_of: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['String'] | null) + live_match_timeout: (Scalars['Int'] | null) + map_pool_id: (Scalars['uuid'] | null) + mr: (Scalars['Int'] | null) + number_of_substitutes: (Scalars['Int'] | null) + regions: (Scalars['String'][] | null) + tv_delay: (Scalars['Int'] | null) + __typename: 'match_options_max_fields' } /** aggregate min on columns */ -export interface migration_hashes_hashes_min_fields { - hash: (Scalars['String'] | null) - name: (Scalars['String'] | null) - __typename: 'migration_hashes_hashes_min_fields' +export interface match_options_min_fields { + auto_cancel_duration: (Scalars['Int'] | null) + best_of: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['String'] | null) + live_match_timeout: (Scalars['Int'] | null) + map_pool_id: (Scalars['uuid'] | null) + mr: (Scalars['Int'] | null) + number_of_substitutes: (Scalars['Int'] | null) + regions: (Scalars['String'][] | null) + tv_delay: (Scalars['Int'] | null) + __typename: 'match_options_min_fields' } -/** response of any mutation on the table "migration_hashes.hashes" */ -export interface migration_hashes_hashes_mutation_response { +/** response of any mutation on the table "match_options" */ +export interface match_options_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: migration_hashes_hashes[] - __typename: 'migration_hashes_hashes_mutation_response' + returning: match_options[] + __typename: 'match_options_mutation_response' } -/** select columns of table "migration_hashes.hashes" */ -export type migration_hashes_hashes_select_column = 'hash' | 'name' +/** 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' -/** update columns of table "migration_hashes.hashes" */ -export type migration_hashes_hashes_update_column = 'hash' | 'name' +/** aggregate stddev on columns */ +export interface match_options_stddev_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + __typename: 'match_options_stddev_fields' +} -/** mutation root */ -export interface mutation_root { - PreviewTournamentMatchReset: PreviewTournamentMatchResetOutput - ResetTournamentMatch: (SuccessOutput | null) - /** accept team invite */ - acceptInvite: (SuccessOutput | null) - /** addDraftPlayer */ - addDraftPlayer: (SuccessOutput | null) - /** Add a friends-role presence bot account to the pool */ - addSteamPresenceBotAccount: (SuccessOutput | null) - approveNameChange: (SuccessOutput | null) - /** execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" */ - approve_league_season_movements: league_team_movements[] - /** Assign the presence bot a user should add as a friend */ - assignSteamPresenceBot: (SteamPresenceBotAssignment | null) - /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ - attachDemo: (WatchDemoOutput | null) - /** Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. */ - backfillSeasonElo: (RecomputeEloStartedOutput | null) - /** Return the progress of the season ELO backfill run (admin only). */ - backfillSeasonEloStatus: (SeasonBackfillStatusOutput | null) - /** Launch a Vulkan shader pre-bake Job on a GPU node */ - bakeShaders: (SuccessOutput | null) - /** callForOrganizer */ - callForOrganizer: (SuccessOutput | null) - /** Request cancellation of the in-progress season ELO backfill (admin only). Stops after the current match. */ - cancelBackfillSeasonElo: (SuccessOutput | null) - /** Cancel an in-progress or stuck Vulkan shader pre-bake Job on a GPU node */ - cancelBakeShaders: (SuccessOutput | null) - /** Cancel an in-flight clip render and tear down the K8s job */ - cancelClipRender: (SuccessOutput | null) - /** Cancel an entire match_map's render queue + tear down the pod. */ - cancelClipRenderBatch: (SuccessOutput | null) - /** cancelMatch */ - cancelMatch: (SuccessOutput | null) - /** Request cancellation of the in-progress ELO recompute (admin only). Stops after the current match. */ - cancelRecomputePlayerElo: (SuccessOutput | null) - /** Request cancellation of the in-progress player reindex (admin only). Stops after the current player. */ - cancelRefreshAllPlayers: (SuccessOutput | null) - /** Request cancellation of the in-progress reparse-all-demos run (admin only). Stops after the current demo finishes. */ - cancelReparseAllDemos: (SuccessOutput | null) - /** cancelScrimRequest */ - cancelScrimRequest: (SuccessOutput | null) - /** checkIntoMatch */ - checkIntoMatch: (SuccessOutput | null) - /** Delete terminal-state clip_render_jobs rows for a single match_map batch. */ - clearClipRenderBatch: (SuccessOutput | null) - /** Delete all terminal-state clip_render_jobs rows platform-wide. */ - clearFinishedClipRenders: (SuccessOutput | null) - clearPendingMatchImport: (PendingMatchImportActionOutput | null) - /** execute VOLATILE function "clone_league_season" which returns "league_seasons" */ - clone_league_season: league_seasons[] - /** counterScrimRequest */ - counterScrimRequest: (SuccessOutput | null) +/** aggregate stddev_pop on columns */ +export interface match_options_stddev_pop_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + __typename: 'match_options_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_options_stddev_samp_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + __typename: 'match_options_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_options_sum_fields { + 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) + __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' + + +/** aggregate var_pop on columns */ +export interface match_options_var_pop_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + __typename: 'match_options_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_options_var_samp_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + __typename: 'match_options_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_options_variance_fields { + auto_cancel_duration: (Scalars['Float'] | null) + best_of: (Scalars['Float'] | null) + live_match_timeout: (Scalars['Float'] | null) + mr: (Scalars['Float'] | null) + number_of_substitutes: (Scalars['Float'] | null) + tv_delay: (Scalars['Float'] | null) + __typename: 'match_options_variance_fields' +} + + +/** columns and relationships of "match_region_veto_picks" */ +export interface match_region_veto_picks { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + /** An object relationship */ + match_lineup: match_lineups + match_lineup_id: Scalars['uuid'] + region: Scalars['String'] + type: e_veto_pick_types_enum + __typename: 'match_region_veto_picks' +} + + +/** aggregated selection of "match_region_veto_picks" */ +export interface match_region_veto_picks_aggregate { + aggregate: (match_region_veto_picks_aggregate_fields | null) + nodes: match_region_veto_picks[] + __typename: 'match_region_veto_picks_aggregate' +} + + +/** aggregate fields of "match_region_veto_picks" */ +export interface match_region_veto_picks_aggregate_fields { + count: Scalars['Int'] + max: (match_region_veto_picks_max_fields | null) + min: (match_region_veto_picks_min_fields | null) + __typename: 'match_region_veto_picks_aggregate_fields' +} + + +/** unique or primary key constraints on table "match_region_veto_picks" */ +export type match_region_veto_picks_constraint = 'match_region_veto_picks_match_id_region_key' | 'match_region_veto_picks_pkey' + + +/** aggregate max on columns */ +export interface match_region_veto_picks_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + region: (Scalars['String'] | null) + __typename: 'match_region_veto_picks_max_fields' +} + + +/** aggregate min on columns */ +export interface match_region_veto_picks_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + region: (Scalars['String'] | null) + __typename: 'match_region_veto_picks_min_fields' +} + + +/** response of any mutation on the table "match_region_veto_picks" */ +export interface match_region_veto_picks_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_region_veto_picks[] + __typename: 'match_region_veto_picks_mutation_response' +} + + +/** select columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_select_column = 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' + + +/** update columns of table "match_region_veto_picks" */ +export type match_region_veto_picks_update_column = 'created_at' | 'id' | 'match_id' | 'match_lineup_id' | 'region' | 'type' + + +/** columns and relationships of "match_streams" */ +export interface match_streams { + autodirector: Scalars['Boolean'] + error_message: (Scalars['String'] | null) + /** An object relationship */ + game_server_node: (game_server_nodes | null) + game_server_node_id: (Scalars['String'] | null) + id: Scalars['uuid'] + is_game_streamer: Scalars['Boolean'] + is_live: Scalars['Boolean'] + k8s_service_name: (Scalars['String'] | null) + last_status_at: (Scalars['timestamptz'] | null) + link: Scalars['String'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + mode: Scalars['String'] + priority: Scalars['Int'] + status: (Scalars['String'] | null) + status_history: Scalars['jsonb'] + stream_url: (Scalars['String'] | null) + title: Scalars['String'] + __typename: 'match_streams' +} + + +/** aggregated selection of "match_streams" */ +export interface match_streams_aggregate { + aggregate: (match_streams_aggregate_fields | null) + nodes: match_streams[] + __typename: 'match_streams_aggregate' +} + + +/** aggregate fields of "match_streams" */ +export interface match_streams_aggregate_fields { + avg: (match_streams_avg_fields | null) + count: Scalars['Int'] + max: (match_streams_max_fields | null) + min: (match_streams_min_fields | null) + stddev: (match_streams_stddev_fields | null) + stddev_pop: (match_streams_stddev_pop_fields | null) + stddev_samp: (match_streams_stddev_samp_fields | null) + sum: (match_streams_sum_fields | null) + var_pop: (match_streams_var_pop_fields | null) + var_samp: (match_streams_var_samp_fields | null) + variance: (match_streams_variance_fields | null) + __typename: 'match_streams_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface match_streams_avg_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_avg_fields' +} + + +/** unique or primary key constraints on table "match_streams" */ +export type match_streams_constraint = 'match_streams_pkey' + + +/** aggregate max on columns */ +export interface match_streams_max_fields { + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + k8s_service_name: (Scalars['String'] | null) + last_status_at: (Scalars['timestamptz'] | null) + link: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + mode: (Scalars['String'] | null) + priority: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + stream_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + __typename: 'match_streams_max_fields' +} + + +/** aggregate min on columns */ +export interface match_streams_min_fields { + error_message: (Scalars['String'] | null) + game_server_node_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + k8s_service_name: (Scalars['String'] | null) + last_status_at: (Scalars['timestamptz'] | null) + link: (Scalars['String'] | null) + match_id: (Scalars['uuid'] | null) + mode: (Scalars['String'] | null) + priority: (Scalars['Int'] | null) + status: (Scalars['String'] | null) + stream_url: (Scalars['String'] | null) + title: (Scalars['String'] | null) + __typename: 'match_streams_min_fields' +} + + +/** response of any mutation on the table "match_streams" */ +export interface match_streams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_streams[] + __typename: 'match_streams_mutation_response' +} + + +/** select columns of table "match_streams" */ +export type match_streams_select_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' + + +/** select "match_streams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "match_streams" */ +export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_and_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' + + +/** select "match_streams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "match_streams" */ +export type match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns = 'autodirector' | 'is_game_streamer' | 'is_live' + + +/** aggregate stddev on columns */ +export interface match_streams_stddev_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface match_streams_stddev_pop_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface match_streams_stddev_samp_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface match_streams_sum_fields { + priority: (Scalars['Int'] | null) + __typename: 'match_streams_sum_fields' +} + + +/** update columns of table "match_streams" */ +export type match_streams_update_column = 'autodirector' | 'error_message' | 'game_server_node_id' | 'id' | 'is_game_streamer' | 'is_live' | 'k8s_service_name' | 'last_status_at' | 'link' | 'match_id' | 'mode' | 'priority' | 'status' | 'status_history' | 'stream_url' | 'title' + + +/** aggregate var_pop on columns */ +export interface match_streams_var_pop_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface match_streams_var_samp_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface match_streams_variance_fields { + priority: (Scalars['Float'] | null) + __typename: 'match_streams_variance_fields' +} + + +/** columns and relationships of "match_type_cfgs" */ +export interface match_type_cfgs { + cfg: Scalars['String'] + type: e_game_cfg_types_enum + __typename: 'match_type_cfgs' +} + + +/** aggregated selection of "match_type_cfgs" */ +export interface match_type_cfgs_aggregate { + aggregate: (match_type_cfgs_aggregate_fields | null) + nodes: match_type_cfgs[] + __typename: 'match_type_cfgs_aggregate' +} + + +/** aggregate fields of "match_type_cfgs" */ +export interface match_type_cfgs_aggregate_fields { + count: Scalars['Int'] + max: (match_type_cfgs_max_fields | null) + min: (match_type_cfgs_min_fields | null) + __typename: 'match_type_cfgs_aggregate_fields' +} + + +/** unique or primary key constraints on table "match_type_cfgs" */ +export type match_type_cfgs_constraint = 'match_type_cfgs_pkey' + + +/** aggregate max on columns */ +export interface match_type_cfgs_max_fields { + cfg: (Scalars['String'] | null) + __typename: 'match_type_cfgs_max_fields' +} + + +/** aggregate min on columns */ +export interface match_type_cfgs_min_fields { + cfg: (Scalars['String'] | null) + __typename: 'match_type_cfgs_min_fields' +} + + +/** response of any mutation on the table "match_type_cfgs" */ +export interface match_type_cfgs_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: match_type_cfgs[] + __typename: 'match_type_cfgs_mutation_response' +} + + +/** select columns of table "match_type_cfgs" */ +export type match_type_cfgs_select_column = 'cfg' | 'type' + + +/** update columns of table "match_type_cfgs" */ +export type match_type_cfgs_update_column = 'cfg' | 'type' + + +/** columns and relationships of "matches" */ +export interface matches { + /** A computed field, executes function "can_assign_server_to_match" */ + can_assign_server: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_cancel_match" */ + can_cancel: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_check_in" */ + can_check_in: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_reassign_winner" */ + can_reassign_winner: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_schedule_match" */ + can_schedule: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_start_match" */ + can_start: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_stream_live" */ + can_stream_live: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_stream_tv" */ + can_stream_tv: (Scalars['Boolean'] | null) + cancels_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + clutches: v_match_clutches[] + /** An aggregate relationship */ + clutches_aggregate: v_match_clutches_aggregate + /** A computed field, executes function "get_match_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "get_match_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: Scalars['timestamptz'] + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id: (Scalars['uuid'] | null) + /** An array relationship */ + demos: match_map_demos[] + /** An aggregate relationship */ + demos_aggregate: match_map_demos_aggregate + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate + /** An object relationship */ + e_match_status: e_match_status + /** An object relationship */ + e_region: (server_regions | null) + effective_at: (Scalars['timestamptz'] | null) + /** An array relationship */ + elo_changes: v_player_elo[] + /** An aggregate relationship */ + elo_changes_aggregate: v_player_elo_aggregate + ended_at: (Scalars['timestamptz'] | null) + external_id: (Scalars['String'] | null) + id: Scalars['uuid'] + /** A computed field, executes function "match_invite_code" */ + invite_code: (Scalars['String'] | null) + /** A computed field, executes function "is_captain" */ + is_captain: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_coach" */ + is_coach: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_friend_in_match_lineup" */ + is_friend_in_match_lineup: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_in_lineup" */ + is_in_lineup: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_match_server_available" */ + is_match_server_available: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_match_organizer" */ + is_organizer: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_server_online" */ + is_server_online: (Scalars['Boolean'] | null) + /** A computed field, executes function "is_tournament_match" */ + is_tournament_match: (Scalars['Boolean'] | null) + label: (Scalars['String'] | null) + /** An object relationship */ + lineup_1: match_lineups + lineup_1_id: Scalars['uuid'] + /** An object relationship */ + lineup_2: match_lineups + lineup_2_id: Scalars['uuid'] + /** A computed field, executes function "get_lineup_counts" */ + lineup_counts: (Scalars['json'] | null) + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** An array relationship */ + map_veto_picks: match_map_veto_picks[] + /** An aggregate relationship */ + map_veto_picks_aggregate: match_map_veto_picks_aggregate + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type: (Scalars['String'] | null) + /** An array relationship */ + match_maps: match_maps[] + /** An aggregate relationship */ + match_maps_aggregate: match_maps_aggregate + match_options_id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + /** An array relationship */ + opening_duels: v_match_player_opening_duels[] + /** An aggregate relationship */ + opening_duels_aggregate: v_match_player_opening_duels_aggregate + /** An object relationship */ + options: (match_options | null) + /** An object relationship */ + organizer: (players | null) + organizer_steam_id: (Scalars['bigint'] | null) + password: Scalars['String'] + /** An array relationship */ + player_assists: player_assists[] + /** An aggregate relationship */ + player_assists_aggregate: player_assists_aggregate + /** An array relationship */ + player_damages: player_damages[] + /** An aggregate relationship */ + player_damages_aggregate: player_damages_aggregate + /** An array relationship */ + player_flashes: player_flashes[] + /** An aggregate relationship */ + player_flashes_aggregate: player_flashes_aggregate + /** An array relationship */ + player_kills: player_kills[] + /** An aggregate relationship */ + player_kills_aggregate: player_kills_aggregate + /** An array relationship */ + player_objectives: player_objectives[] + /** An aggregate relationship */ + player_objectives_aggregate: player_objectives_aggregate + /** An array relationship */ + player_unused_utilities: player_unused_utility[] + /** An aggregate relationship */ + player_unused_utilities_aggregate: player_unused_utility_aggregate + /** An array relationship */ + player_utility: player_utility[] + /** An aggregate relationship */ + player_utility_aggregate: player_utility_aggregate + region: (Scalars['String'] | null) + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** An array relationship */ + region_veto_picks: match_region_veto_picks[] + /** An aggregate relationship */ + region_veto_picks_aggregate: match_region_veto_picks_aggregate + /** A computed field, executes function "match_requested_organizer" */ + requested_organizer: (Scalars['Boolean'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + server: (servers | null) + server_error: (Scalars['String'] | null) + server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_region" */ + server_region: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_type" */ + server_type: (Scalars['String'] | null) + source: Scalars['String'] + started_at: (Scalars['timestamptz'] | null) + status: e_match_status_enum + /** An array relationship */ + streams: match_streams[] + /** An aggregate relationship */ + streams_aggregate: match_streams_aggregate + /** A computed field, executes function "get_match_teams" */ + teams: (teams[] | null) + /** An array relationship */ + tournament_brackets: tournament_brackets[] + /** An aggregate relationship */ + tournament_brackets_aggregate: tournament_brackets_aggregate + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string: (Scalars['String'] | null) + /** An object relationship */ + winner: (match_lineups | null) + winning_lineup_id: (Scalars['uuid'] | null) + __typename: 'matches' +} + + +/** aggregated selection of "matches" */ +export interface matches_aggregate { + aggregate: (matches_aggregate_fields | null) + nodes: matches[] + __typename: 'matches_aggregate' +} + + +/** aggregate fields of "matches" */ +export interface matches_aggregate_fields { + avg: (matches_avg_fields | null) + count: Scalars['Int'] + max: (matches_max_fields | null) + min: (matches_min_fields | null) + stddev: (matches_stddev_fields | null) + stddev_pop: (matches_stddev_pop_fields | null) + stddev_samp: (matches_stddev_samp_fields | null) + sum: (matches_sum_fields | null) + var_pop: (matches_var_pop_fields | null) + var_samp: (matches_var_samp_fields | null) + variance: (matches_variance_fields | null) + __typename: 'matches_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface matches_avg_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_avg_fields' +} + + +/** unique or primary key constraints on table "matches" */ +export type matches_constraint = 'matches_lineup_1_id_key' | 'matches_lineup_1_id_lineup_2_id_key' | 'matches_lineup_2_id_key' | 'matches_pkey' | 'uq_matches_source_external_id' + + +/** aggregate max on columns */ +export interface matches_max_fields { + cancels_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "get_match_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id: (Scalars['uuid'] | null) + effective_at: (Scalars['timestamptz'] | null) + ended_at: (Scalars['timestamptz'] | null) + external_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_invite_code" */ + invite_code: (Scalars['String'] | null) + label: (Scalars['String'] | null) + lineup_1_id: (Scalars['uuid'] | null) + lineup_2_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type: (Scalars['String'] | null) + match_options_id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + password: (Scalars['String'] | null) + region: (Scalars['String'] | null) + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id: (Scalars['uuid'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + server_error: (Scalars['String'] | null) + server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_region" */ + server_region: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_type" */ + server_type: (Scalars['String'] | null) + source: (Scalars['String'] | null) + started_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string: (Scalars['String'] | null) + winning_lineup_id: (Scalars['uuid'] | null) + __typename: 'matches_max_fields' +} + + +/** aggregate min on columns */ +export interface matches_min_fields { + cancels_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_connection_link" */ + connection_link: (Scalars['String'] | null) + /** A computed field, executes function "get_match_connection_string" */ + connection_string: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_current_match_map" */ + current_match_map_id: (Scalars['uuid'] | null) + effective_at: (Scalars['timestamptz'] | null) + ended_at: (Scalars['timestamptz'] | null) + external_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_invite_code" */ + invite_code: (Scalars['String'] | null) + label: (Scalars['String'] | null) + lineup_1_id: (Scalars['uuid'] | null) + lineup_2_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_picking_lineup_id" */ + map_veto_picking_lineup_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_map_veto_type" */ + map_veto_type: (Scalars['String'] | null) + match_options_id: (Scalars['uuid'] | null) + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + password: (Scalars['String'] | null) + region: (Scalars['String'] | null) + /** A computed field, executes function "get_region_veto_picking_lineup_id" */ + region_veto_picking_lineup_id: (Scalars['uuid'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + server_error: (Scalars['String'] | null) + server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_region" */ + server_region: (Scalars['String'] | null) + /** A computed field, executes function "get_match_server_type" */ + server_type: (Scalars['String'] | null) + source: (Scalars['String'] | null) + started_at: (Scalars['timestamptz'] | null) + /** A computed field, executes function "get_match_tv_connection_string" */ + tv_connection_string: (Scalars['String'] | null) + winning_lineup_id: (Scalars['uuid'] | null) + __typename: 'matches_min_fields' +} + + +/** response of any mutation on the table "matches" */ +export interface matches_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: matches[] + __typename: 'matches_mutation_response' +} + + +/** select columns of table "matches" */ +export type matches_select_column = 'cancels_at' | 'created_at' | 'effective_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'source' | 'started_at' | 'status' | 'winning_lineup_id' + + +/** aggregate stddev on columns */ +export interface matches_stddev_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface matches_stddev_pop_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface matches_stddev_samp_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface matches_sum_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + __typename: 'matches_sum_fields' +} + + +/** update columns of table "matches" */ +export type matches_update_column = 'cancels_at' | 'created_at' | 'ended_at' | 'external_id' | 'id' | 'label' | 'lineup_1_id' | 'lineup_2_id' | 'match_options_id' | 'organizer_steam_id' | 'password' | 'region' | 'scheduled_at' | 'server_error' | 'server_id' | 'source' | 'started_at' | 'status' | 'winning_lineup_id' + + +/** aggregate var_pop on columns */ +export interface matches_var_pop_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface matches_var_samp_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface matches_variance_fields { + /** A computed field, executes function "match_max_players_per_lineup" */ + max_players_per_lineup: (Scalars['Int'] | null) + /** A computed field, executes function "match_min_players_per_lineup" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'matches_variance_fields' +} + + +/** columns and relationships of "migration_hashes.hashes" */ +export interface migration_hashes_hashes { + hash: Scalars['String'] + name: Scalars['String'] + __typename: 'migration_hashes_hashes' +} + + +/** aggregated selection of "migration_hashes.hashes" */ +export interface migration_hashes_hashes_aggregate { + aggregate: (migration_hashes_hashes_aggregate_fields | null) + nodes: migration_hashes_hashes[] + __typename: 'migration_hashes_hashes_aggregate' +} + + +/** aggregate fields of "migration_hashes.hashes" */ +export interface migration_hashes_hashes_aggregate_fields { + count: Scalars['Int'] + max: (migration_hashes_hashes_max_fields | null) + min: (migration_hashes_hashes_min_fields | null) + __typename: 'migration_hashes_hashes_aggregate_fields' +} + + +/** unique or primary key constraints on table "migration_hashes.hashes" */ +export type migration_hashes_hashes_constraint = 'hashes_pkey' + + +/** aggregate max on columns */ +export interface migration_hashes_hashes_max_fields { + hash: (Scalars['String'] | null) + name: (Scalars['String'] | null) + __typename: 'migration_hashes_hashes_max_fields' +} + + +/** aggregate min on columns */ +export interface migration_hashes_hashes_min_fields { + hash: (Scalars['String'] | null) + name: (Scalars['String'] | null) + __typename: 'migration_hashes_hashes_min_fields' +} + + +/** response of any mutation on the table "migration_hashes.hashes" */ +export interface migration_hashes_hashes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: migration_hashes_hashes[] + __typename: 'migration_hashes_hashes_mutation_response' +} + + +/** select columns of table "migration_hashes.hashes" */ +export type migration_hashes_hashes_select_column = 'hash' | 'name' + + +/** update columns of table "migration_hashes.hashes" */ +export type migration_hashes_hashes_update_column = 'hash' | 'name' + + +/** mutation root */ +export interface mutation_root { + PreviewTournamentMatchReset: PreviewTournamentMatchResetOutput + ResetTournamentMatch: (SuccessOutput | null) + /** accept team invite */ + acceptInvite: (SuccessOutput | null) + /** addDraftPlayer */ + addDraftPlayer: (SuccessOutput | null) + /** Add a friends-role presence bot account to the pool */ + addSteamPresenceBotAccount: (SuccessOutput | null) + approveNameChange: (SuccessOutput | null) + /** execute VOLATILE function "approve_league_season_movements" which returns "league_team_movements" */ + approve_league_season_movements: league_team_movements[] + /** Assign the presence bot a user should add as a friend */ + assignSteamPresenceBot: (SteamPresenceBotAssignment | null) + /** Dev-only — attach the demo player to a standing dev game-streamer pod (no Job boot) */ + attachDemo: (WatchDemoOutput | null) + /** Rebuild a season's ELO + stats from the matches inside its date range (admin only). Runs in the background; track via backfillSeasonEloStatus. */ + backfillSeasonElo: (RecomputeEloStartedOutput | null) + /** Return the progress of the season ELO backfill run (admin only). */ + backfillSeasonEloStatus: (SeasonBackfillStatusOutput | null) + /** Launch a Vulkan shader pre-bake Job on a GPU node */ + bakeShaders: (SuccessOutput | null) + /** callForOrganizer */ + callForOrganizer: (SuccessOutput | null) + /** Request cancellation of the in-progress season ELO backfill (admin only). Stops after the current match. */ + cancelBackfillSeasonElo: (SuccessOutput | null) + /** Cancel an in-progress or stuck Vulkan shader pre-bake Job on a GPU node */ + cancelBakeShaders: (SuccessOutput | null) + /** Cancel an in-flight clip render and tear down the K8s job */ + cancelClipRender: (SuccessOutput | null) + /** Cancel an entire match_map's render queue + tear down the pod. */ + cancelClipRenderBatch: (SuccessOutput | null) + /** cancelMatch */ + cancelMatch: (SuccessOutput | null) + /** Request cancellation of the in-progress ELO recompute (admin only). Stops after the current match. */ + cancelRecomputePlayerElo: (SuccessOutput | null) + /** Request cancellation of the in-progress player reindex (admin only). Stops after the current player. */ + cancelRefreshAllPlayers: (SuccessOutput | null) + /** Request cancellation of the in-progress reparse-all-demos run (admin only). Stops after the current demo finishes. */ + cancelReparseAllDemos: (SuccessOutput | null) + /** cancelScrimRequest */ + cancelScrimRequest: (SuccessOutput | null) + /** checkIntoMatch */ + checkIntoMatch: (SuccessOutput | null) + /** Delete terminal-state clip_render_jobs rows for a single match_map batch. */ + clearClipRenderBatch: (SuccessOutput | null) + /** Delete all terminal-state clip_render_jobs rows platform-wide. */ + clearFinishedClipRenders: (SuccessOutput | null) + clearPendingMatchImport: (PendingMatchImportActionOutput | null) + /** execute VOLATILE function "clone_league_season" which returns "league_seasons" */ + clone_league_season: league_seasons[] + /** counterScrimRequest */ + counterScrimRequest: (SuccessOutput | null) createApiKey: (ApiKeyResponse | null) /** Build a multi-segment ClipSpec from a player+preset and dispatch render */ createClipFromPreset: (CreateClipRenderOutput | null) @@ -10243,6 +11340,14 @@ export interface mutation_root { delete_e_draft_game_status: (e_draft_game_status_mutation_response | null) /** delete single row from the table: "e_draft_game_status" */ delete_e_draft_game_status_by_pk: (e_draft_game_status | null) + /** delete data from the table: "e_event_media_access" */ + delete_e_event_media_access: (e_event_media_access_mutation_response | null) + /** delete single row from the table: "e_event_media_access" */ + delete_e_event_media_access_by_pk: (e_event_media_access | null) + /** delete data from the table: "e_event_visibility" */ + delete_e_event_visibility: (e_event_visibility_mutation_response | null) + /** delete single row from the table: "e_event_visibility" */ + delete_e_event_visibility_by_pk: (e_event_visibility | null) /** delete data from the table: "e_friend_status" */ delete_e_friend_status: (e_friend_status_mutation_response | null) /** delete single row from the table: "e_friend_status" */ @@ -10375,6 +11480,38 @@ export interface mutation_root { delete_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk: (e_winning_reasons | null) + /** delete data from the table: "event_match_links" */ + delete_event_match_links: (event_match_links_mutation_response | null) + /** delete single row from the table: "event_match_links" */ + delete_event_match_links_by_pk: (event_match_links | null) + /** delete data from the table: "event_media" */ + delete_event_media: (event_media_mutation_response | null) + /** delete single row from the table: "event_media" */ + delete_event_media_by_pk: (event_media | null) + /** delete data from the table: "event_media_players" */ + delete_event_media_players: (event_media_players_mutation_response | null) + /** delete single row from the table: "event_media_players" */ + delete_event_media_players_by_pk: (event_media_players | null) + /** delete data from the table: "event_organizers" */ + delete_event_organizers: (event_organizers_mutation_response | null) + /** delete single row from the table: "event_organizers" */ + delete_event_organizers_by_pk: (event_organizers | null) + /** delete data from the table: "event_players" */ + delete_event_players: (event_players_mutation_response | null) + /** delete single row from the table: "event_players" */ + delete_event_players_by_pk: (event_players | null) + /** delete data from the table: "event_teams" */ + delete_event_teams: (event_teams_mutation_response | null) + /** delete single row from the table: "event_teams" */ + delete_event_teams_by_pk: (event_teams | null) + /** delete data from the table: "event_tournaments" */ + delete_event_tournaments: (event_tournaments_mutation_response | null) + /** delete single row from the table: "event_tournaments" */ + delete_event_tournaments_by_pk: (event_tournaments | null) + /** delete data from the table: "events" */ + delete_events: (events_mutation_response | null) + /** delete single row from the table: "events" */ + delete_events_by_pk: (events | null) /** delete data from the table: "friends" */ delete_friends: (friends_mutation_response | null) /** delete single row from the table: "friends" */ @@ -10786,6 +11923,14 @@ export interface mutation_root { insert_e_draft_game_status: (e_draft_game_status_mutation_response | null) /** insert a single row into the table: "e_draft_game_status" */ insert_e_draft_game_status_one: (e_draft_game_status | null) + /** insert data into the table: "e_event_media_access" */ + insert_e_event_media_access: (e_event_media_access_mutation_response | null) + /** insert a single row into the table: "e_event_media_access" */ + insert_e_event_media_access_one: (e_event_media_access | null) + /** insert data into the table: "e_event_visibility" */ + insert_e_event_visibility: (e_event_visibility_mutation_response | null) + /** insert a single row into the table: "e_event_visibility" */ + insert_e_event_visibility_one: (e_event_visibility | null) /** insert data into the table: "e_friend_status" */ insert_e_friend_status: (e_friend_status_mutation_response | null) /** insert a single row into the table: "e_friend_status" */ @@ -10918,6 +12063,38 @@ export interface mutation_root { insert_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** insert a single row into the table: "e_winning_reasons" */ insert_e_winning_reasons_one: (e_winning_reasons | null) + /** insert data into the table: "event_match_links" */ + insert_event_match_links: (event_match_links_mutation_response | null) + /** insert a single row into the table: "event_match_links" */ + insert_event_match_links_one: (event_match_links | null) + /** insert data into the table: "event_media" */ + insert_event_media: (event_media_mutation_response | null) + /** insert a single row into the table: "event_media" */ + insert_event_media_one: (event_media | null) + /** insert data into the table: "event_media_players" */ + insert_event_media_players: (event_media_players_mutation_response | null) + /** insert a single row into the table: "event_media_players" */ + insert_event_media_players_one: (event_media_players | null) + /** insert data into the table: "event_organizers" */ + insert_event_organizers: (event_organizers_mutation_response | null) + /** insert a single row into the table: "event_organizers" */ + insert_event_organizers_one: (event_organizers | null) + /** insert data into the table: "event_players" */ + insert_event_players: (event_players_mutation_response | null) + /** insert a single row into the table: "event_players" */ + insert_event_players_one: (event_players | null) + /** insert data into the table: "event_teams" */ + insert_event_teams: (event_teams_mutation_response | null) + /** insert a single row into the table: "event_teams" */ + insert_event_teams_one: (event_teams | null) + /** insert data into the table: "event_tournaments" */ + insert_event_tournaments: (event_tournaments_mutation_response | null) + /** insert a single row into the table: "event_tournaments" */ + insert_event_tournaments_one: (event_tournaments | null) + /** insert data into the table: "events" */ + insert_events: (events_mutation_response | null) + /** insert a single row into the table: "events" */ + insert_events_one: (events | null) /** insert data into the table: "friends" */ insert_friends: (friends_mutation_response | null) /** insert a single row into the table: "friends" */ @@ -11493,6 +12670,18 @@ export interface mutation_root { update_e_draft_game_status_by_pk: (e_draft_game_status | null) /** update multiples rows of table: "e_draft_game_status" */ update_e_draft_game_status_many: ((e_draft_game_status_mutation_response | null)[] | null) + /** update data of the table: "e_event_media_access" */ + update_e_event_media_access: (e_event_media_access_mutation_response | null) + /** update single row of the table: "e_event_media_access" */ + update_e_event_media_access_by_pk: (e_event_media_access | null) + /** update multiples rows of table: "e_event_media_access" */ + update_e_event_media_access_many: ((e_event_media_access_mutation_response | null)[] | null) + /** update data of the table: "e_event_visibility" */ + update_e_event_visibility: (e_event_visibility_mutation_response | null) + /** update single row of the table: "e_event_visibility" */ + update_e_event_visibility_by_pk: (e_event_visibility | null) + /** update multiples rows of table: "e_event_visibility" */ + update_e_event_visibility_many: ((e_event_visibility_mutation_response | null)[] | null) /** update data of the table: "e_friend_status" */ update_e_friend_status: (e_friend_status_mutation_response | null) /** update single row of the table: "e_friend_status" */ @@ -11691,6 +12880,54 @@ export interface mutation_root { update_e_winning_reasons_by_pk: (e_winning_reasons | null) /** update multiples rows of table: "e_winning_reasons" */ update_e_winning_reasons_many: ((e_winning_reasons_mutation_response | null)[] | null) + /** update data of the table: "event_match_links" */ + update_event_match_links: (event_match_links_mutation_response | null) + /** update single row of the table: "event_match_links" */ + update_event_match_links_by_pk: (event_match_links | null) + /** update multiples rows of table: "event_match_links" */ + update_event_match_links_many: ((event_match_links_mutation_response | null)[] | null) + /** update data of the table: "event_media" */ + update_event_media: (event_media_mutation_response | null) + /** update single row of the table: "event_media" */ + update_event_media_by_pk: (event_media | null) + /** update multiples rows of table: "event_media" */ + update_event_media_many: ((event_media_mutation_response | null)[] | null) + /** update data of the table: "event_media_players" */ + update_event_media_players: (event_media_players_mutation_response | null) + /** update single row of the table: "event_media_players" */ + update_event_media_players_by_pk: (event_media_players | null) + /** update multiples rows of table: "event_media_players" */ + update_event_media_players_many: ((event_media_players_mutation_response | null)[] | null) + /** update data of the table: "event_organizers" */ + update_event_organizers: (event_organizers_mutation_response | null) + /** update single row of the table: "event_organizers" */ + update_event_organizers_by_pk: (event_organizers | null) + /** update multiples rows of table: "event_organizers" */ + update_event_organizers_many: ((event_organizers_mutation_response | null)[] | null) + /** update data of the table: "event_players" */ + update_event_players: (event_players_mutation_response | null) + /** update single row of the table: "event_players" */ + update_event_players_by_pk: (event_players | null) + /** update multiples rows of table: "event_players" */ + update_event_players_many: ((event_players_mutation_response | null)[] | null) + /** update data of the table: "event_teams" */ + update_event_teams: (event_teams_mutation_response | null) + /** update single row of the table: "event_teams" */ + update_event_teams_by_pk: (event_teams | null) + /** update multiples rows of table: "event_teams" */ + update_event_teams_many: ((event_teams_mutation_response | null)[] | null) + /** update data of the table: "event_tournaments" */ + update_event_tournaments: (event_tournaments_mutation_response | null) + /** update single row of the table: "event_tournaments" */ + update_event_tournaments_by_pk: (event_tournaments | null) + /** update multiples rows of table: "event_tournaments" */ + update_event_tournaments_many: ((event_tournaments_mutation_response | null)[] | null) + /** update data of the table: "events" */ + update_events: (events_mutation_response | null) + /** update single row of the table: "events" */ + update_events_by_pk: (events | null) + /** update multiples rows of table: "events" */ + update_events_many: ((events_mutation_response | null)[] | null) /** update data of the table: "friends" */ update_friends: (friends_mutation_response | null) /** update single row of the table: "friends" */ @@ -20436,6 +21673,18 @@ export interface query_root { e_draft_game_status_aggregate: e_draft_game_status_aggregate /** fetch data from the table: "e_draft_game_status" using primary key columns */ e_draft_game_status_by_pk: (e_draft_game_status | null) + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access: e_event_media_access[] + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate: e_event_media_access_aggregate + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk: (e_event_media_access | null) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility: e_event_visibility[] + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate: e_event_visibility_aggregate + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk: (e_event_visibility | null) /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -20634,6 +21883,54 @@ export interface query_root { e_winning_reasons_aggregate: e_winning_reasons_aggregate /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk: (e_winning_reasons | null) + /** fetch data from the table: "event_match_links" */ + event_match_links: event_match_links[] + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate: event_match_links_aggregate + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk: (event_match_links | null) + /** fetch data from the table: "event_media" */ + event_media: event_media[] + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate: event_media_aggregate + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk: (event_media | null) + /** fetch data from the table: "event_media_players" */ + event_media_players: event_media_players[] + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate: event_media_players_aggregate + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk: (event_media_players | null) + /** fetch data from the table: "event_organizers" */ + event_organizers: event_organizers[] + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate: event_organizers_aggregate + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk: (event_organizers | null) + /** fetch data from the table: "event_players" */ + event_players: event_players[] + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate: event_players_aggregate + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk: (event_players | null) + /** fetch data from the table: "event_teams" */ + event_teams: event_teams[] + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate: event_teams_aggregate + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk: (event_teams | null) + /** fetch data from the table: "event_tournaments" */ + event_tournaments: event_tournaments[] + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate: event_tournaments_aggregate + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk: (event_tournaments | null) + /** fetch data from the table: "events" */ + events: events[] + /** fetch aggregated fields from the table: "events" */ + events_aggregate: events_aggregate + /** fetch data from the table: "events" using primary key columns */ + events_by_pk: (events | null) /** fetch data from the table: "friends" */ friends: friends[] /** fetch aggregated fields from the table: "friends" */ @@ -20692,6 +21989,10 @@ export interface query_root { getTableStats: (TableStat | null)[] /** Get TimescaleDB statistics */ getTimescaleStats: TimescaleStats + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard: leaderboard_entries[] + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate: leaderboard_entries_aggregate /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard: leaderboard_entries[] /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ @@ -21225,6 +22526,10 @@ export interface query_root { tournaments_aggregate: tournaments_aggregate /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk: (tournaments | null) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats: v_event_player_stats[] + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate: v_event_player_stats_aggregate /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status: v_gpu_pool_status[] /** fetch aggregated fields from the table: "v_gpu_pool_status" */ @@ -22331,6 +23636,22 @@ export interface subscription_root { e_draft_game_status_by_pk: (e_draft_game_status | null) /** fetch data from the table in a streaming manner: "e_draft_game_status" */ e_draft_game_status_stream: e_draft_game_status[] + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access: e_event_media_access[] + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate: e_event_media_access_aggregate + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk: (e_event_media_access | null) + /** fetch data from the table in a streaming manner: "e_event_media_access" */ + e_event_media_access_stream: e_event_media_access[] + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility: e_event_visibility[] + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate: e_event_visibility_aggregate + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk: (e_event_visibility | null) + /** fetch data from the table in a streaming manner: "e_event_visibility" */ + e_event_visibility_stream: e_event_visibility[] /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -22595,6 +23916,70 @@ export interface subscription_root { e_winning_reasons_by_pk: (e_winning_reasons | null) /** fetch data from the table in a streaming manner: "e_winning_reasons" */ e_winning_reasons_stream: e_winning_reasons[] + /** fetch data from the table: "event_match_links" */ + event_match_links: event_match_links[] + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate: event_match_links_aggregate + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk: (event_match_links | null) + /** fetch data from the table in a streaming manner: "event_match_links" */ + event_match_links_stream: event_match_links[] + /** fetch data from the table: "event_media" */ + event_media: event_media[] + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate: event_media_aggregate + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk: (event_media | null) + /** fetch data from the table: "event_media_players" */ + event_media_players: event_media_players[] + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate: event_media_players_aggregate + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk: (event_media_players | null) + /** fetch data from the table in a streaming manner: "event_media_players" */ + event_media_players_stream: event_media_players[] + /** fetch data from the table in a streaming manner: "event_media" */ + event_media_stream: event_media[] + /** fetch data from the table: "event_organizers" */ + event_organizers: event_organizers[] + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate: event_organizers_aggregate + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk: (event_organizers | null) + /** fetch data from the table in a streaming manner: "event_organizers" */ + event_organizers_stream: event_organizers[] + /** fetch data from the table: "event_players" */ + event_players: event_players[] + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate: event_players_aggregate + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk: (event_players | null) + /** fetch data from the table in a streaming manner: "event_players" */ + event_players_stream: event_players[] + /** fetch data from the table: "event_teams" */ + event_teams: event_teams[] + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate: event_teams_aggregate + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk: (event_teams | null) + /** fetch data from the table in a streaming manner: "event_teams" */ + event_teams_stream: event_teams[] + /** fetch data from the table: "event_tournaments" */ + event_tournaments: event_tournaments[] + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate: event_tournaments_aggregate + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk: (event_tournaments | null) + /** fetch data from the table in a streaming manner: "event_tournaments" */ + event_tournaments_stream: event_tournaments[] + /** fetch data from the table: "events" */ + events: events[] + /** fetch aggregated fields from the table: "events" */ + events_aggregate: events_aggregate + /** fetch data from the table: "events" using primary key columns */ + events_by_pk: (events | null) + /** fetch data from the table in a streaming manner: "events" */ + events_stream: events[] /** fetch data from the table: "friends" */ friends: friends[] /** fetch aggregated fields from the table: "friends" */ @@ -22627,6 +24012,10 @@ export interface subscription_root { gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) /** fetch data from the table in a streaming manner: "gamedata_signature_validations" */ gamedata_signature_validations_stream: gamedata_signature_validations[] + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard: leaderboard_entries[] + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate: leaderboard_entries_aggregate /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard: leaderboard_entries[] /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ @@ -23319,6 +24708,12 @@ export interface subscription_root { tournaments_by_pk: (tournaments | null) /** fetch data from the table in a streaming manner: "tournaments" */ tournaments_stream: tournaments[] + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats: v_event_player_stats[] + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate: v_event_player_stats_aggregate + /** fetch data from the table in a streaming manner: "v_event_player_stats" */ + v_event_player_stats_stream: v_event_player_stats[] /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status: v_gpu_pool_status[] /** fetch aggregated fields from the table: "v_gpu_pool_status" */ @@ -23511,4178 +24906,5393 @@ export interface subscription_root { } -/** columns and relationships of "system_alerts" */ -export interface system_alerts { +/** columns and relationships of "system_alerts" */ +export interface system_alerts { + created_at: Scalars['timestamptz'] + created_by: (Scalars['bigint'] | null) + dismissible: Scalars['Boolean'] + expires_at: (Scalars['timestamptz'] | null) + id: Scalars['uuid'] + is_active: Scalars['Boolean'] + message: Scalars['String'] + title: (Scalars['String'] | null) + type: e_system_alert_types_enum + updated_at: Scalars['timestamptz'] + __typename: 'system_alerts' +} + + +/** aggregated selection of "system_alerts" */ +export interface system_alerts_aggregate { + aggregate: (system_alerts_aggregate_fields | null) + nodes: system_alerts[] + __typename: 'system_alerts_aggregate' +} + + +/** aggregate fields of "system_alerts" */ +export interface system_alerts_aggregate_fields { + avg: (system_alerts_avg_fields | null) + count: Scalars['Int'] + max: (system_alerts_max_fields | null) + min: (system_alerts_min_fields | null) + stddev: (system_alerts_stddev_fields | null) + stddev_pop: (system_alerts_stddev_pop_fields | null) + stddev_samp: (system_alerts_stddev_samp_fields | null) + sum: (system_alerts_sum_fields | null) + var_pop: (system_alerts_var_pop_fields | null) + var_samp: (system_alerts_var_samp_fields | null) + variance: (system_alerts_variance_fields | null) + __typename: 'system_alerts_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface system_alerts_avg_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_avg_fields' +} + + +/** unique or primary key constraints on table "system_alerts" */ +export type system_alerts_constraint = 'system_alerts_pkey' + + +/** aggregate max on columns */ +export interface system_alerts_max_fields { + created_at: (Scalars['timestamptz'] | null) + created_by: (Scalars['bigint'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'system_alerts_max_fields' +} + + +/** aggregate min on columns */ +export interface system_alerts_min_fields { + created_at: (Scalars['timestamptz'] | null) + created_by: (Scalars['bigint'] | null) + expires_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + message: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'system_alerts_min_fields' +} + + +/** response of any mutation on the table "system_alerts" */ +export interface system_alerts_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: system_alerts[] + __typename: 'system_alerts_mutation_response' +} + + +/** select columns of table "system_alerts" */ +export type system_alerts_select_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface system_alerts_stddev_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface system_alerts_stddev_pop_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface system_alerts_stddev_samp_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface system_alerts_sum_fields { + created_by: (Scalars['bigint'] | null) + __typename: 'system_alerts_sum_fields' +} + + +/** update columns of table "system_alerts" */ +export type system_alerts_update_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface system_alerts_var_pop_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface system_alerts_var_samp_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface system_alerts_variance_fields { + created_by: (Scalars['Float'] | null) + __typename: 'system_alerts_variance_fields' +} + + +/** columns and relationships of "team_invites" */ +export interface team_invites { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + invited_by: players + invited_by_player_steam_id: Scalars['bigint'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_invites' +} + + +/** aggregated selection of "team_invites" */ +export interface team_invites_aggregate { + aggregate: (team_invites_aggregate_fields | null) + nodes: team_invites[] + __typename: 'team_invites_aggregate' +} + + +/** aggregate fields of "team_invites" */ +export interface team_invites_aggregate_fields { + avg: (team_invites_avg_fields | null) + count: Scalars['Int'] + max: (team_invites_max_fields | null) + min: (team_invites_min_fields | null) + stddev: (team_invites_stddev_fields | null) + stddev_pop: (team_invites_stddev_pop_fields | null) + stddev_samp: (team_invites_stddev_samp_fields | null) + sum: (team_invites_sum_fields | null) + var_pop: (team_invites_var_pop_fields | null) + var_samp: (team_invites_var_samp_fields | null) + variance: (team_invites_variance_fields | null) + __typename: 'team_invites_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_invites_avg_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_avg_fields' +} + + +/** unique or primary key constraints on table "team_invites" */ +export type team_invites_constraint = 'team_invites_pkey' | 'team_invites_team_id_steam_id_key' + + +/** aggregate max on columns */ +export interface team_invites_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_invites_max_fields' +} + + +/** aggregate min on columns */ +export interface team_invites_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_invites_min_fields' +} + + +/** response of any mutation on the table "team_invites" */ +export interface team_invites_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_invites[] + __typename: 'team_invites_mutation_response' +} + + +/** select columns of table "team_invites" */ +export type team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' + + +/** aggregate stddev on columns */ +export interface team_invites_stddev_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_invites_stddev_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_invites_stddev_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_invites_sum_fields { + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'team_invites_sum_fields' +} + + +/** update columns of table "team_invites" */ +export type team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' + + +/** aggregate var_pop on columns */ +export interface team_invites_var_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_invites_var_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_invites_variance_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'team_invites_variance_fields' +} + + +/** columns and relationships of "team_roster" */ +export interface team_roster { + coach: Scalars['Boolean'] + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + role: e_team_roles_enum + roster_image_url: (Scalars['String'] | null) + status: e_team_roster_statuses_enum + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_roster' +} + + +/** aggregated selection of "team_roster" */ +export interface team_roster_aggregate { + aggregate: (team_roster_aggregate_fields | null) + nodes: team_roster[] + __typename: 'team_roster_aggregate' +} + + +/** aggregate fields of "team_roster" */ +export interface team_roster_aggregate_fields { + avg: (team_roster_avg_fields | null) + count: Scalars['Int'] + max: (team_roster_max_fields | null) + min: (team_roster_min_fields | null) + stddev: (team_roster_stddev_fields | null) + stddev_pop: (team_roster_stddev_pop_fields | null) + stddev_samp: (team_roster_stddev_samp_fields | null) + sum: (team_roster_sum_fields | null) + var_pop: (team_roster_var_pop_fields | null) + var_samp: (team_roster_var_samp_fields | null) + variance: (team_roster_variance_fields | null) + __typename: 'team_roster_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_roster_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_avg_fields' +} + + +/** unique or primary key constraints on table "team_roster" */ +export type team_roster_constraint = 'team_members_pkey' + + +/** aggregate max on columns */ +export interface team_roster_max_fields { + player_steam_id: (Scalars['bigint'] | null) + roster_image_url: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_roster_max_fields' +} + + +/** aggregate min on columns */ +export interface team_roster_min_fields { + player_steam_id: (Scalars['bigint'] | null) + roster_image_url: (Scalars['String'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_roster_min_fields' +} + + +/** response of any mutation on the table "team_roster" */ +export interface team_roster_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_roster[] + __typename: 'team_roster_mutation_response' +} + + +/** select columns of table "team_roster" */ +export type team_roster_select_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' + + +/** select "team_roster_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_roster" */ +export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns = 'coach' + + +/** select "team_roster_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_roster" */ +export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns = 'coach' + + +/** aggregate stddev on columns */ +export interface team_roster_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_roster_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_roster_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_roster_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'team_roster_sum_fields' +} + + +/** update columns of table "team_roster" */ +export type team_roster_update_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' + + +/** aggregate var_pop on columns */ +export interface team_roster_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_roster_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_roster_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'team_roster_variance_fields' +} + + +/** columns and relationships of "team_scrim_alerts" */ +export interface team_scrim_alerts { + created_at: Scalars['timestamptz'] + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + enabled: Scalars['Boolean'] + id: Scalars['uuid'] + last_notified_at: (Scalars['timestamptz'] | null) + regions: Scalars['String'][] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_scrim_alerts' +} + + +/** aggregated selection of "team_scrim_alerts" */ +export interface team_scrim_alerts_aggregate { + aggregate: (team_scrim_alerts_aggregate_fields | null) + nodes: team_scrim_alerts[] + __typename: 'team_scrim_alerts_aggregate' +} + + +/** aggregate fields of "team_scrim_alerts" */ +export interface team_scrim_alerts_aggregate_fields { + avg: (team_scrim_alerts_avg_fields | null) + count: Scalars['Int'] + max: (team_scrim_alerts_max_fields | null) + min: (team_scrim_alerts_min_fields | null) + stddev: (team_scrim_alerts_stddev_fields | null) + stddev_pop: (team_scrim_alerts_stddev_pop_fields | null) + stddev_samp: (team_scrim_alerts_stddev_samp_fields | null) + sum: (team_scrim_alerts_sum_fields | null) + var_pop: (team_scrim_alerts_var_pop_fields | null) + var_samp: (team_scrim_alerts_var_samp_fields | null) + variance: (team_scrim_alerts_variance_fields | null) + __typename: 'team_scrim_alerts_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_scrim_alerts_avg_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_avg_fields' +} + + +/** unique or primary key constraints on table "team_scrim_alerts" */ +export type team_scrim_alerts_constraint = 'team_scrim_alerts_pkey' + + +/** aggregate max on columns */ +export interface team_scrim_alerts_max_fields { + created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_alerts_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_alerts_min_fields { + created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_alerts_min_fields' +} + + +/** response of any mutation on the table "team_scrim_alerts" */ +export interface team_scrim_alerts_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_alerts[] + __typename: 'team_scrim_alerts_mutation_response' +} + + +/** select columns of table "team_scrim_alerts" */ +export type team_scrim_alerts_select_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' + + +/** aggregate stddev on columns */ +export interface team_scrim_alerts_stddev_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_alerts_stddev_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_alerts_stddev_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_scrim_alerts_sum_fields { + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + __typename: 'team_scrim_alerts_sum_fields' +} + + +/** update columns of table "team_scrim_alerts" */ +export type team_scrim_alerts_update_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' + + +/** aggregate var_pop on columns */ +export interface team_scrim_alerts_var_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_alerts_var_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_scrim_alerts_variance_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_alerts_variance_fields' +} + + +/** columns and relationships of "team_scrim_availability" */ +export interface team_scrim_availability { + created_at: Scalars['timestamptz'] + ends_at: Scalars['timestamptz'] + id: Scalars['uuid'] + recurring_weekly: Scalars['Boolean'] + starts_at: Scalars['timestamptz'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'team_scrim_availability' +} + + +/** aggregated selection of "team_scrim_availability" */ +export interface team_scrim_availability_aggregate { + aggregate: (team_scrim_availability_aggregate_fields | null) + nodes: team_scrim_availability[] + __typename: 'team_scrim_availability_aggregate' +} + + +/** aggregate fields of "team_scrim_availability" */ +export interface team_scrim_availability_aggregate_fields { + count: Scalars['Int'] + max: (team_scrim_availability_max_fields | null) + min: (team_scrim_availability_min_fields | null) + __typename: 'team_scrim_availability_aggregate_fields' +} + + +/** unique or primary key constraints on table "team_scrim_availability" */ +export type team_scrim_availability_constraint = 'team_scrim_availability_pkey' + + +/** aggregate max on columns */ +export interface team_scrim_availability_max_fields { + created_at: (Scalars['timestamptz'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + starts_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_availability_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_availability_min_fields { + created_at: (Scalars['timestamptz'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + starts_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_availability_min_fields' +} + + +/** response of any mutation on the table "team_scrim_availability" */ +export interface team_scrim_availability_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_availability[] + __typename: 'team_scrim_availability_mutation_response' +} + + +/** select columns of table "team_scrim_availability" */ +export type team_scrim_availability_select_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' + + +/** select "team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_availability" */ +export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns = 'recurring_weekly' + + +/** select "team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_availability" */ +export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns = 'recurring_weekly' + + +/** update columns of table "team_scrim_availability" */ +export type team_scrim_availability_update_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' + + +/** columns and relationships of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + /** An object relationship */ + proposed_by: players + proposed_by_steam_id: Scalars['bigint'] + /** An object relationship */ + proposed_by_team: teams + proposed_by_team_id: Scalars['uuid'] + proposed_scheduled_at: Scalars['timestamptz'] + /** An object relationship */ + request: team_scrim_requests + request_id: Scalars['uuid'] + __typename: 'team_scrim_request_proposals' +} + + +/** aggregated selection of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_aggregate { + aggregate: (team_scrim_request_proposals_aggregate_fields | null) + nodes: team_scrim_request_proposals[] + __typename: 'team_scrim_request_proposals_aggregate' +} + + +/** aggregate fields of "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_aggregate_fields { + avg: (team_scrim_request_proposals_avg_fields | null) + count: Scalars['Int'] + max: (team_scrim_request_proposals_max_fields | null) + min: (team_scrim_request_proposals_min_fields | null) + stddev: (team_scrim_request_proposals_stddev_fields | null) + stddev_pop: (team_scrim_request_proposals_stddev_pop_fields | null) + stddev_samp: (team_scrim_request_proposals_stddev_samp_fields | null) + sum: (team_scrim_request_proposals_sum_fields | null) + var_pop: (team_scrim_request_proposals_var_pop_fields | null) + var_samp: (team_scrim_request_proposals_var_samp_fields | null) + variance: (team_scrim_request_proposals_variance_fields | null) + __typename: 'team_scrim_request_proposals_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_scrim_request_proposals_avg_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_avg_fields' +} + + +/** unique or primary key constraints on table "team_scrim_request_proposals" */ +export type team_scrim_request_proposals_constraint = 'team_scrim_request_proposals_pkey' + + +/** aggregate max on columns */ +export interface team_scrim_request_proposals_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_by_team_id: (Scalars['uuid'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + request_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_request_proposals_max_fields' +} + + +/** aggregate min on columns */ +export interface team_scrim_request_proposals_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + proposed_by_steam_id: (Scalars['bigint'] | null) + proposed_by_team_id: (Scalars['uuid'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + request_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_request_proposals_min_fields' +} + + +/** response of any mutation on the table "team_scrim_request_proposals" */ +export interface team_scrim_request_proposals_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_scrim_request_proposals[] + __typename: 'team_scrim_request_proposals_mutation_response' +} + + +/** select columns of table "team_scrim_request_proposals" */ +export type team_scrim_request_proposals_select_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' + + +/** aggregate stddev on columns */ +export interface team_scrim_request_proposals_stddev_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_scrim_request_proposals_stddev_pop_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_scrim_request_proposals_stddev_samp_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_scrim_request_proposals_sum_fields { + proposed_by_steam_id: (Scalars['bigint'] | null) + __typename: 'team_scrim_request_proposals_sum_fields' +} + + +/** update columns of table "team_scrim_request_proposals" */ +export type team_scrim_request_proposals_update_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' + + +/** aggregate var_pop on columns */ +export interface team_scrim_request_proposals_var_pop_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_request_proposals_var_samp_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_scrim_request_proposals_variance_fields { + proposed_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_request_proposals_variance_fields' +} + + +/** columns and relationships of "team_scrim_requests" */ +export interface team_scrim_requests { + auto_generated: Scalars['Boolean'] + /** An object relationship */ + awaiting_team: teams + awaiting_team_id: Scalars['uuid'] + canceled_by_team_id: (Scalars['uuid'] | null) + canceled_late: Scalars['Boolean'] created_at: Scalars['timestamptz'] - created_by: (Scalars['bigint'] | null) - dismissible: Scalars['Boolean'] - expires_at: (Scalars['timestamptz'] | null) + expires_at: Scalars['timestamptz'] + /** An object relationship */ + from_team: teams + from_team_checked_in: (Scalars['Boolean'] | null) + from_team_id: Scalars['uuid'] id: Scalars['uuid'] - is_active: Scalars['Boolean'] - message: Scalars['String'] - title: (Scalars['String'] | null) - type: e_system_alert_types_enum - updated_at: Scalars['timestamptz'] - __typename: 'system_alerts' + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_options: (match_options | null) + match_options_id: (Scalars['uuid'] | null) + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome: (Scalars['String'] | null) + /** An array relationship */ + proposals: team_scrim_request_proposals[] + /** An aggregate relationship */ + proposals_aggregate: team_scrim_request_proposals_aggregate + proposed_scheduled_at: Scalars['timestamptz'] + region: (Scalars['String'] | null) + /** An object relationship */ + requested_by: players + requested_by_steam_id: Scalars['bigint'] + responded_at: (Scalars['timestamptz'] | null) + status: e_scrim_request_statuses_enum + /** An object relationship */ + to_team: teams + to_team_checked_in: (Scalars['Boolean'] | null) + to_team_id: Scalars['uuid'] + __typename: 'team_scrim_requests' } -/** aggregated selection of "system_alerts" */ -export interface system_alerts_aggregate { - aggregate: (system_alerts_aggregate_fields | null) - nodes: system_alerts[] - __typename: 'system_alerts_aggregate' +/** aggregated selection of "team_scrim_requests" */ +export interface team_scrim_requests_aggregate { + aggregate: (team_scrim_requests_aggregate_fields | null) + nodes: team_scrim_requests[] + __typename: 'team_scrim_requests_aggregate' } -/** aggregate fields of "system_alerts" */ -export interface system_alerts_aggregate_fields { - avg: (system_alerts_avg_fields | null) +/** aggregate fields of "team_scrim_requests" */ +export interface team_scrim_requests_aggregate_fields { + avg: (team_scrim_requests_avg_fields | null) count: Scalars['Int'] - max: (system_alerts_max_fields | null) - min: (system_alerts_min_fields | null) - stddev: (system_alerts_stddev_fields | null) - stddev_pop: (system_alerts_stddev_pop_fields | null) - stddev_samp: (system_alerts_stddev_samp_fields | null) - sum: (system_alerts_sum_fields | null) - var_pop: (system_alerts_var_pop_fields | null) - var_samp: (system_alerts_var_samp_fields | null) - variance: (system_alerts_variance_fields | null) - __typename: 'system_alerts_aggregate_fields' + max: (team_scrim_requests_max_fields | null) + min: (team_scrim_requests_min_fields | null) + stddev: (team_scrim_requests_stddev_fields | null) + stddev_pop: (team_scrim_requests_stddev_pop_fields | null) + stddev_samp: (team_scrim_requests_stddev_samp_fields | null) + sum: (team_scrim_requests_sum_fields | null) + var_pop: (team_scrim_requests_var_pop_fields | null) + var_samp: (team_scrim_requests_var_samp_fields | null) + variance: (team_scrim_requests_variance_fields | null) + __typename: 'team_scrim_requests_aggregate_fields' } /** aggregate avg on columns */ -export interface system_alerts_avg_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_avg_fields' +export interface team_scrim_requests_avg_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_avg_fields' } -/** unique or primary key constraints on table "system_alerts" */ -export type system_alerts_constraint = 'system_alerts_pkey' +/** unique or primary key constraints on table "team_scrim_requests" */ +export type team_scrim_requests_constraint = 'team_scrim_requests_pkey' | 'uq_scrim_req_open' /** aggregate max on columns */ -export interface system_alerts_max_fields { +export interface team_scrim_requests_max_fields { + awaiting_team_id: (Scalars['uuid'] | null) + canceled_by_team_id: (Scalars['uuid'] | null) created_at: (Scalars['timestamptz'] | null) - created_by: (Scalars['bigint'] | null) expires_at: (Scalars['timestamptz'] | null) + from_team_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'system_alerts_max_fields' + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome: (Scalars['String'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + region: (Scalars['String'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + responded_at: (Scalars['timestamptz'] | null) + to_team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_requests_max_fields' } /** aggregate min on columns */ -export interface system_alerts_min_fields { +export interface team_scrim_requests_min_fields { + awaiting_team_id: (Scalars['uuid'] | null) + canceled_by_team_id: (Scalars['uuid'] | null) created_at: (Scalars['timestamptz'] | null) - created_by: (Scalars['bigint'] | null) expires_at: (Scalars['timestamptz'] | null) + from_team_id: (Scalars['uuid'] | null) id: (Scalars['uuid'] | null) - message: (Scalars['String'] | null) - title: (Scalars['String'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'system_alerts_min_fields' + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ + match_outcome: (Scalars['String'] | null) + proposed_scheduled_at: (Scalars['timestamptz'] | null) + region: (Scalars['String'] | null) + requested_by_steam_id: (Scalars['bigint'] | null) + responded_at: (Scalars['timestamptz'] | null) + to_team_id: (Scalars['uuid'] | null) + __typename: 'team_scrim_requests_min_fields' } -/** response of any mutation on the table "system_alerts" */ -export interface system_alerts_mutation_response { +/** response of any mutation on the table "team_scrim_requests" */ +export interface team_scrim_requests_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: system_alerts[] - __typename: 'system_alerts_mutation_response' + returning: team_scrim_requests[] + __typename: 'team_scrim_requests_mutation_response' } -/** select columns of table "system_alerts" */ -export type system_alerts_select_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' +/** select columns of table "team_scrim_requests" */ +export type team_scrim_requests_select_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' + + +/** select "team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_requests" */ +export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' + + +/** select "team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_requests" */ +export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' /** aggregate stddev on columns */ -export interface system_alerts_stddev_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_stddev_fields' +export interface team_scrim_requests_stddev_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface system_alerts_stddev_pop_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_stddev_pop_fields' +export interface team_scrim_requests_stddev_pop_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface system_alerts_stddev_samp_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_stddev_samp_fields' +export interface team_scrim_requests_stddev_samp_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_stddev_samp_fields' } /** aggregate sum on columns */ -export interface system_alerts_sum_fields { - created_by: (Scalars['bigint'] | null) - __typename: 'system_alerts_sum_fields' +export interface team_scrim_requests_sum_fields { + requested_by_steam_id: (Scalars['bigint'] | null) + __typename: 'team_scrim_requests_sum_fields' } -/** update columns of table "system_alerts" */ -export type system_alerts_update_column = 'created_at' | 'created_by' | 'dismissible' | 'expires_at' | 'id' | 'is_active' | 'message' | 'title' | 'type' | 'updated_at' +/** update columns of table "team_scrim_requests" */ +export type team_scrim_requests_update_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' /** aggregate var_pop on columns */ -export interface system_alerts_var_pop_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_var_pop_fields' +export interface team_scrim_requests_var_pop_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_var_pop_fields' } /** aggregate var_samp on columns */ -export interface system_alerts_var_samp_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_var_samp_fields' +export interface team_scrim_requests_var_samp_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_var_samp_fields' } /** aggregate variance on columns */ -export interface system_alerts_variance_fields { - created_by: (Scalars['Float'] | null) - __typename: 'system_alerts_variance_fields' +export interface team_scrim_requests_variance_fields { + requested_by_steam_id: (Scalars['Float'] | null) + __typename: 'team_scrim_requests_variance_fields' } -/** columns and relationships of "team_invites" */ -export interface team_invites { +/** columns and relationships of "team_scrim_settings" */ +export interface team_scrim_settings { + allow_outside_availability: Scalars['Boolean'] created_at: Scalars['timestamptz'] + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + enabled: Scalars['Boolean'] id: Scalars['uuid'] - /** An object relationship */ - invited_by: players - invited_by_player_steam_id: Scalars['bigint'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] + map_ids: Scalars['uuid'][] + notes: (Scalars['String'] | null) + regions: Scalars['String'][] /** An object relationship */ team: teams team_id: Scalars['uuid'] - __typename: 'team_invites' + updated_at: Scalars['timestamptz'] + __typename: 'team_scrim_settings' } -/** aggregated selection of "team_invites" */ -export interface team_invites_aggregate { - aggregate: (team_invites_aggregate_fields | null) - nodes: team_invites[] - __typename: 'team_invites_aggregate' +/** aggregated selection of "team_scrim_settings" */ +export interface team_scrim_settings_aggregate { + aggregate: (team_scrim_settings_aggregate_fields | null) + nodes: team_scrim_settings[] + __typename: 'team_scrim_settings_aggregate' } -/** aggregate fields of "team_invites" */ -export interface team_invites_aggregate_fields { - avg: (team_invites_avg_fields | null) +/** aggregate fields of "team_scrim_settings" */ +export interface team_scrim_settings_aggregate_fields { + avg: (team_scrim_settings_avg_fields | null) count: Scalars['Int'] - max: (team_invites_max_fields | null) - min: (team_invites_min_fields | null) - stddev: (team_invites_stddev_fields | null) - stddev_pop: (team_invites_stddev_pop_fields | null) - stddev_samp: (team_invites_stddev_samp_fields | null) - sum: (team_invites_sum_fields | null) - var_pop: (team_invites_var_pop_fields | null) - var_samp: (team_invites_var_samp_fields | null) - variance: (team_invites_variance_fields | null) - __typename: 'team_invites_aggregate_fields' + max: (team_scrim_settings_max_fields | null) + min: (team_scrim_settings_min_fields | null) + stddev: (team_scrim_settings_stddev_fields | null) + stddev_pop: (team_scrim_settings_stddev_pop_fields | null) + stddev_samp: (team_scrim_settings_stddev_samp_fields | null) + sum: (team_scrim_settings_sum_fields | null) + var_pop: (team_scrim_settings_var_pop_fields | null) + var_samp: (team_scrim_settings_var_samp_fields | null) + variance: (team_scrim_settings_variance_fields | null) + __typename: 'team_scrim_settings_aggregate_fields' } /** aggregate avg on columns */ -export interface team_invites_avg_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_avg_fields' +export interface team_scrim_settings_avg_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_avg_fields' } -/** unique or primary key constraints on table "team_invites" */ -export type team_invites_constraint = 'team_invites_pkey' | 'team_invites_team_id_steam_id_key' +/** unique or primary key constraints on table "team_scrim_settings" */ +export type team_scrim_settings_constraint = 'team_scrim_settings_pkey' | 'team_scrim_settings_team_id_key' /** aggregate max on columns */ -export interface team_invites_max_fields { +export interface team_scrim_settings_max_fields { created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) + map_ids: (Scalars['uuid'][] | null) + notes: (Scalars['String'] | null) + regions: (Scalars['String'][] | null) team_id: (Scalars['uuid'] | null) - __typename: 'team_invites_max_fields' + updated_at: (Scalars['timestamptz'] | null) + __typename: 'team_scrim_settings_max_fields' } /** aggregate min on columns */ -export interface team_invites_min_fields { +export interface team_scrim_settings_min_fields { created_at: (Scalars['timestamptz'] | null) + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) + map_ids: (Scalars['uuid'][] | null) + notes: (Scalars['String'] | null) + regions: (Scalars['String'][] | null) team_id: (Scalars['uuid'] | null) - __typename: 'team_invites_min_fields' + updated_at: (Scalars['timestamptz'] | null) + __typename: 'team_scrim_settings_min_fields' } -/** response of any mutation on the table "team_invites" */ -export interface team_invites_mutation_response { +/** response of any mutation on the table "team_scrim_settings" */ +export interface team_scrim_settings_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_invites[] - __typename: 'team_invites_mutation_response' + returning: team_scrim_settings[] + __typename: 'team_scrim_settings_mutation_response' } -/** select columns of table "team_invites" */ -export type team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' +/** select columns of table "team_scrim_settings" */ +export type team_scrim_settings_select_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' /** aggregate stddev on columns */ -export interface team_invites_stddev_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_stddev_fields' +export interface team_scrim_settings_stddev_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface team_invites_stddev_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_stddev_pop_fields' +export interface team_scrim_settings_stddev_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface team_invites_stddev_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_stddev_samp_fields' +export interface team_scrim_settings_stddev_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_stddev_samp_fields' } /** aggregate sum on columns */ -export interface team_invites_sum_fields { - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'team_invites_sum_fields' +export interface team_scrim_settings_sum_fields { + elo_max: (Scalars['Int'] | null) + elo_min: (Scalars['Int'] | null) + __typename: 'team_scrim_settings_sum_fields' } -/** update columns of table "team_invites" */ -export type team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'team_id' +/** update columns of table "team_scrim_settings" */ +export type team_scrim_settings_update_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' /** aggregate var_pop on columns */ -export interface team_invites_var_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_var_pop_fields' +export interface team_scrim_settings_var_pop_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface team_scrim_settings_var_samp_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface team_scrim_settings_variance_fields { + elo_max: (Scalars['Float'] | null) + elo_min: (Scalars['Float'] | null) + __typename: 'team_scrim_settings_variance_fields' +} + + +/** columns and relationships of "team_suggestions" */ +export interface team_suggestions { + created_at: Scalars['timestamptz'] + group_hash: Scalars['String'] + id: Scalars['uuid'] + last_notified_at: (Scalars['timestamptz'] | null) + member_steam_ids: Scalars['bigint'][] + status: Scalars['String'] + together_count: Scalars['Int'] + __typename: 'team_suggestions' +} + + +/** aggregated selection of "team_suggestions" */ +export interface team_suggestions_aggregate { + aggregate: (team_suggestions_aggregate_fields | null) + nodes: team_suggestions[] + __typename: 'team_suggestions_aggregate' +} + + +/** aggregate fields of "team_suggestions" */ +export interface team_suggestions_aggregate_fields { + avg: (team_suggestions_avg_fields | null) + count: Scalars['Int'] + max: (team_suggestions_max_fields | null) + min: (team_suggestions_min_fields | null) + stddev: (team_suggestions_stddev_fields | null) + stddev_pop: (team_suggestions_stddev_pop_fields | null) + stddev_samp: (team_suggestions_stddev_samp_fields | null) + sum: (team_suggestions_sum_fields | null) + var_pop: (team_suggestions_var_pop_fields | null) + var_samp: (team_suggestions_var_samp_fields | null) + variance: (team_suggestions_variance_fields | null) + __typename: 'team_suggestions_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface team_suggestions_avg_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_avg_fields' +} + + +/** unique or primary key constraints on table "team_suggestions" */ +export type team_suggestions_constraint = 'team_suggestions_group_hash_key' | 'team_suggestions_pkey' + + +/** aggregate max on columns */ +export interface team_suggestions_max_fields { + created_at: (Scalars['timestamptz'] | null) + group_hash: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + member_steam_ids: (Scalars['bigint'][] | null) + status: (Scalars['String'] | null) + together_count: (Scalars['Int'] | null) + __typename: 'team_suggestions_max_fields' +} + + +/** aggregate min on columns */ +export interface team_suggestions_min_fields { + created_at: (Scalars['timestamptz'] | null) + group_hash: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + last_notified_at: (Scalars['timestamptz'] | null) + member_steam_ids: (Scalars['bigint'][] | null) + status: (Scalars['String'] | null) + together_count: (Scalars['Int'] | null) + __typename: 'team_suggestions_min_fields' +} + + +/** response of any mutation on the table "team_suggestions" */ +export interface team_suggestions_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: team_suggestions[] + __typename: 'team_suggestions_mutation_response' +} + + +/** select columns of table "team_suggestions" */ +export type team_suggestions_select_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' + + +/** aggregate stddev on columns */ +export interface team_suggestions_stddev_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface team_suggestions_stddev_pop_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface team_suggestions_stddev_samp_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface team_suggestions_sum_fields { + together_count: (Scalars['Int'] | null) + __typename: 'team_suggestions_sum_fields' +} + + +/** update columns of table "team_suggestions" */ +export type team_suggestions_update_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' + + +/** aggregate var_pop on columns */ +export interface team_suggestions_var_pop_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_var_pop_fields' } /** aggregate var_samp on columns */ -export interface team_invites_var_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_var_samp_fields' +export interface team_suggestions_var_samp_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_var_samp_fields' } /** aggregate variance on columns */ -export interface team_invites_variance_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'team_invites_variance_fields' +export interface team_suggestions_variance_fields { + together_count: (Scalars['Float'] | null) + __typename: 'team_suggestions_variance_fields' } -/** columns and relationships of "team_roster" */ -export interface team_roster { - coach: Scalars['Boolean'] +/** columns and relationships of "teams" */ +export interface teams { + avatar_url: (Scalars['String'] | null) + /** A computed field, executes function "can_change_team_role" */ + can_change_role: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_invite_to_team" */ + can_invite: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_manage_team_scrims" */ + can_manage_scrims: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_remove_from_team" */ + can_remove: (Scalars['Boolean'] | null) /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - role: e_team_roles_enum - roster_image_url: (Scalars['String'] | null) - status: e_team_roster_statuses_enum + captain: (players | null) + captain_steam_id: (Scalars['bigint'] | null) + id: Scalars['uuid'] + /** An array relationship */ + invites: team_invites[] + /** An aggregate relationship */ + invites_aggregate: team_invites_aggregate + /** An array relationship */ + match_lineups: match_lineups[] + /** An aggregate relationship */ + match_lineups_aggregate: match_lineups_aggregate + /** A computed field, executes function "get_team_matches" */ + matches: (matches[] | null) + name: Scalars['String'] /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'team_roster' + owner: players + owner_steam_id: Scalars['bigint'] + /** An object relationship */ + ranks: (v_team_ranks | null) + /** An object relationship */ + reputation: (v_team_reputation | null) + /** A computed field, executes function "team_role" */ + role: (Scalars['String'] | null) + /** An array relationship */ + roster: team_roster[] + /** An aggregate relationship */ + roster_aggregate: team_roster_aggregate + /** An array relationship */ + scrim_availability: team_scrim_availability[] + /** An aggregate relationship */ + scrim_availability_aggregate: team_scrim_availability_aggregate + /** An object relationship */ + scrim_settings: (team_scrim_settings | null) + short_name: Scalars['String'] + /** An array relationship */ + tournament_teams: tournament_teams[] + /** An aggregate relationship */ + tournament_teams_aggregate: tournament_teams_aggregate + __typename: 'teams' } -/** aggregated selection of "team_roster" */ -export interface team_roster_aggregate { - aggregate: (team_roster_aggregate_fields | null) - nodes: team_roster[] - __typename: 'team_roster_aggregate' +/** aggregated selection of "teams" */ +export interface teams_aggregate { + aggregate: (teams_aggregate_fields | null) + nodes: teams[] + __typename: 'teams_aggregate' } -/** aggregate fields of "team_roster" */ -export interface team_roster_aggregate_fields { - avg: (team_roster_avg_fields | null) +/** aggregate fields of "teams" */ +export interface teams_aggregate_fields { + avg: (teams_avg_fields | null) count: Scalars['Int'] - max: (team_roster_max_fields | null) - min: (team_roster_min_fields | null) - stddev: (team_roster_stddev_fields | null) - stddev_pop: (team_roster_stddev_pop_fields | null) - stddev_samp: (team_roster_stddev_samp_fields | null) - sum: (team_roster_sum_fields | null) - var_pop: (team_roster_var_pop_fields | null) - var_samp: (team_roster_var_samp_fields | null) - variance: (team_roster_variance_fields | null) - __typename: 'team_roster_aggregate_fields' + max: (teams_max_fields | null) + min: (teams_min_fields | null) + stddev: (teams_stddev_fields | null) + stddev_pop: (teams_stddev_pop_fields | null) + stddev_samp: (teams_stddev_samp_fields | null) + sum: (teams_sum_fields | null) + var_pop: (teams_var_pop_fields | null) + var_samp: (teams_var_samp_fields | null) + variance: (teams_variance_fields | null) + __typename: 'teams_aggregate_fields' } /** aggregate avg on columns */ -export interface team_roster_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_avg_fields' +export interface teams_avg_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_avg_fields' } -/** unique or primary key constraints on table "team_roster" */ -export type team_roster_constraint = 'team_members_pkey' +/** unique or primary key constraints on table "teams" */ +export type teams_constraint = 'teams_name_key' | 'teams_pkey' /** aggregate max on columns */ -export interface team_roster_max_fields { - player_steam_id: (Scalars['bigint'] | null) - roster_image_url: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_roster_max_fields' +export interface teams_max_fields { + 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) + /** A computed field, executes function "team_role" */ + role: (Scalars['String'] | null) + short_name: (Scalars['String'] | null) + __typename: 'teams_max_fields' } /** aggregate min on columns */ -export interface team_roster_min_fields { - player_steam_id: (Scalars['bigint'] | null) - roster_image_url: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_roster_min_fields' +export interface teams_min_fields { + 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) + /** A computed field, executes function "team_role" */ + role: (Scalars['String'] | null) + short_name: (Scalars['String'] | null) + __typename: 'teams_min_fields' } -/** response of any mutation on the table "team_roster" */ -export interface team_roster_mutation_response { +/** response of any mutation on the table "teams" */ +export interface teams_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_roster[] - __typename: 'team_roster_mutation_response' + returning: teams[] + __typename: 'teams_mutation_response' } -/** select columns of table "team_roster" */ -export type team_roster_select_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' - - -/** select "team_roster_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_roster" */ -export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_and_arguments_columns = 'coach' - - -/** select "team_roster_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_roster" */ -export type team_roster_select_column_team_roster_aggregate_bool_exp_bool_or_arguments_columns = 'coach' +/** select columns of table "teams" */ +export type teams_select_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'name' | 'owner_steam_id' | 'short_name' /** aggregate stddev on columns */ -export interface team_roster_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_stddev_fields' +export interface teams_stddev_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface team_roster_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_stddev_pop_fields' +export interface teams_stddev_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface team_roster_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_stddev_samp_fields' +export interface teams_stddev_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_stddev_samp_fields' } /** aggregate sum on columns */ -export interface team_roster_sum_fields { - player_steam_id: (Scalars['bigint'] | null) - __typename: 'team_roster_sum_fields' +export interface teams_sum_fields { + captain_steam_id: (Scalars['bigint'] | null) + owner_steam_id: (Scalars['bigint'] | null) + __typename: 'teams_sum_fields' } -/** update columns of table "team_roster" */ -export type team_roster_update_column = 'coach' | 'player_steam_id' | 'role' | 'roster_image_url' | 'status' | 'team_id' +/** update columns of table "teams" */ +export type teams_update_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'name' | 'owner_steam_id' | 'short_name' /** aggregate var_pop on columns */ -export interface team_roster_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_var_pop_fields' +export interface teams_var_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_var_pop_fields' } /** aggregate var_samp on columns */ -export interface team_roster_var_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_var_samp_fields' +export interface teams_var_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_var_samp_fields' } /** aggregate variance on columns */ -export interface team_roster_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'team_roster_variance_fields' +export interface teams_variance_fields { + captain_steam_id: (Scalars['Float'] | null) + owner_steam_id: (Scalars['Float'] | null) + __typename: 'teams_variance_fields' } -/** columns and relationships of "team_scrim_alerts" */ -export interface team_scrim_alerts { +/** columns and relationships of "tournament_brackets" */ +export interface tournament_brackets { + bye: Scalars['Boolean'] created_at: Scalars['timestamptz'] - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - enabled: Scalars['Boolean'] + /** A computed field, executes function "get_feeding_brackets" */ + feeding_brackets: (tournament_brackets[] | null) + finished: Scalars['Boolean'] + group: (Scalars['numeric'] | null) id: Scalars['uuid'] - last_notified_at: (Scalars['timestamptz'] | null) - regions: Scalars['String'][] /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'team_scrim_alerts' + loser_bracket: (tournament_brackets | null) + loser_parent_bracket_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + match_number: (Scalars['Int'] | null) + match_options_id: (Scalars['uuid'] | null) + /** An object relationship */ + options: (match_options | null) + /** An object relationship */ + parent_bracket: (tournament_brackets | null) + parent_bracket_id: (Scalars['uuid'] | null) + path: (Scalars['String'] | null) + round: Scalars['Int'] + scheduled_at: (Scalars['timestamptz'] | null) + scheduled_eta: (Scalars['timestamptz'] | null) + /** An array relationship */ + scheduling_proposals: league_scheduling_proposals[] + /** An aggregate relationship */ + scheduling_proposals_aggregate: league_scheduling_proposals_aggregate + /** An object relationship */ + stage: tournament_stages + /** An object relationship */ + team_1: (tournament_teams | null) + team_1_seed: (Scalars['Int'] | null) + /** An object relationship */ + team_2: (tournament_teams | null) + team_2_seed: (Scalars['Int'] | null) + tournament_stage_id: Scalars['uuid'] + tournament_team_id_1: (Scalars['uuid'] | null) + tournament_team_id_2: (Scalars['uuid'] | null) + __typename: 'tournament_brackets' } -/** aggregated selection of "team_scrim_alerts" */ -export interface team_scrim_alerts_aggregate { - aggregate: (team_scrim_alerts_aggregate_fields | null) - nodes: team_scrim_alerts[] - __typename: 'team_scrim_alerts_aggregate' +/** aggregated selection of "tournament_brackets" */ +export interface tournament_brackets_aggregate { + aggregate: (tournament_brackets_aggregate_fields | null) + nodes: tournament_brackets[] + __typename: 'tournament_brackets_aggregate' } -/** aggregate fields of "team_scrim_alerts" */ -export interface team_scrim_alerts_aggregate_fields { - avg: (team_scrim_alerts_avg_fields | null) +/** aggregate fields of "tournament_brackets" */ +export interface tournament_brackets_aggregate_fields { + avg: (tournament_brackets_avg_fields | null) count: Scalars['Int'] - max: (team_scrim_alerts_max_fields | null) - min: (team_scrim_alerts_min_fields | null) - stddev: (team_scrim_alerts_stddev_fields | null) - stddev_pop: (team_scrim_alerts_stddev_pop_fields | null) - stddev_samp: (team_scrim_alerts_stddev_samp_fields | null) - sum: (team_scrim_alerts_sum_fields | null) - var_pop: (team_scrim_alerts_var_pop_fields | null) - var_samp: (team_scrim_alerts_var_samp_fields | null) - variance: (team_scrim_alerts_variance_fields | null) - __typename: 'team_scrim_alerts_aggregate_fields' + max: (tournament_brackets_max_fields | null) + min: (tournament_brackets_min_fields | null) + stddev: (tournament_brackets_stddev_fields | null) + stddev_pop: (tournament_brackets_stddev_pop_fields | null) + stddev_samp: (tournament_brackets_stddev_samp_fields | null) + sum: (tournament_brackets_sum_fields | null) + var_pop: (tournament_brackets_var_pop_fields | null) + var_samp: (tournament_brackets_var_samp_fields | null) + variance: (tournament_brackets_variance_fields | null) + __typename: 'tournament_brackets_aggregate_fields' } /** aggregate avg on columns */ -export interface team_scrim_alerts_avg_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_avg_fields' +export interface tournament_brackets_avg_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_avg_fields' } -/** unique or primary key constraints on table "team_scrim_alerts" */ -export type team_scrim_alerts_constraint = 'team_scrim_alerts_pkey' +/** unique or primary key constraints on table "tournament_brackets" */ +export type tournament_brackets_constraint = 'touarnment_brackets_pkey' | 'tournament_brackets_id_tournament_team_id_1_tournament_team_id_' /** aggregate max on columns */ -export interface team_scrim_alerts_max_fields { +export interface tournament_brackets_max_fields { created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) + group: (Scalars['numeric'] | null) id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_alerts_max_fields' + loser_parent_bracket_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_number: (Scalars['Int'] | null) + match_options_id: (Scalars['uuid'] | null) + parent_bracket_id: (Scalars['uuid'] | null) + path: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + scheduled_eta: (Scalars['timestamptz'] | null) + team_1_seed: (Scalars['Int'] | null) + team_2_seed: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + tournament_team_id_1: (Scalars['uuid'] | null) + tournament_team_id_2: (Scalars['uuid'] | null) + __typename: 'tournament_brackets_max_fields' } /** aggregate min on columns */ -export interface team_scrim_alerts_min_fields { +export interface tournament_brackets_min_fields { created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) + group: (Scalars['numeric'] | null) id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_alerts_min_fields' + loser_parent_bracket_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_number: (Scalars['Int'] | null) + match_options_id: (Scalars['uuid'] | null) + parent_bracket_id: (Scalars['uuid'] | null) + path: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + scheduled_at: (Scalars['timestamptz'] | null) + scheduled_eta: (Scalars['timestamptz'] | null) + team_1_seed: (Scalars['Int'] | null) + team_2_seed: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + tournament_team_id_1: (Scalars['uuid'] | null) + tournament_team_id_2: (Scalars['uuid'] | null) + __typename: 'tournament_brackets_min_fields' } -/** response of any mutation on the table "team_scrim_alerts" */ -export interface team_scrim_alerts_mutation_response { +/** response of any mutation on the table "tournament_brackets" */ +export interface tournament_brackets_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_scrim_alerts[] - __typename: 'team_scrim_alerts_mutation_response' + returning: tournament_brackets[] + __typename: 'tournament_brackets_mutation_response' } -/** select columns of table "team_scrim_alerts" */ -export type team_scrim_alerts_select_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' +/** select columns of table "tournament_brackets" */ +export type tournament_brackets_select_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' + + +/** select "tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_brackets" */ +export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns = 'bye' | 'finished' + + +/** select "tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_brackets" */ +export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns = 'bye' | 'finished' /** aggregate stddev on columns */ -export interface team_scrim_alerts_stddev_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_stddev_fields' +export interface tournament_brackets_stddev_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface team_scrim_alerts_stddev_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_stddev_pop_fields' +export interface tournament_brackets_stddev_pop_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface team_scrim_alerts_stddev_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_stddev_samp_fields' +export interface tournament_brackets_stddev_samp_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_stddev_samp_fields' } /** aggregate sum on columns */ -export interface team_scrim_alerts_sum_fields { - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - __typename: 'team_scrim_alerts_sum_fields' +export interface tournament_brackets_sum_fields { + group: (Scalars['numeric'] | null) + match_number: (Scalars['Int'] | null) + round: (Scalars['Int'] | null) + team_1_seed: (Scalars['Int'] | null) + team_2_seed: (Scalars['Int'] | null) + __typename: 'tournament_brackets_sum_fields' } -/** update columns of table "team_scrim_alerts" */ -export type team_scrim_alerts_update_column = 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'last_notified_at' | 'regions' | 'team_id' +/** update columns of table "tournament_brackets" */ +export type tournament_brackets_update_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' /** aggregate var_pop on columns */ -export interface team_scrim_alerts_var_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_var_pop_fields' +export interface tournament_brackets_var_pop_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_var_pop_fields' } /** aggregate var_samp on columns */ -export interface team_scrim_alerts_var_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_var_samp_fields' +export interface tournament_brackets_var_samp_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_var_samp_fields' } /** aggregate variance on columns */ -export interface team_scrim_alerts_variance_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_alerts_variance_fields' +export interface tournament_brackets_variance_fields { + group: (Scalars['Float'] | null) + match_number: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + team_1_seed: (Scalars['Float'] | null) + team_2_seed: (Scalars['Float'] | null) + __typename: 'tournament_brackets_variance_fields' } -/** columns and relationships of "team_scrim_availability" */ -export interface team_scrim_availability { - created_at: Scalars['timestamptz'] - ends_at: Scalars['timestamptz'] - id: Scalars['uuid'] - recurring_weekly: Scalars['Boolean'] - starts_at: Scalars['timestamptz'] +/** columns and relationships of "tournament_organizers" */ +export interface tournament_organizers { /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - __typename: 'team_scrim_availability' + organizer: players + steam_id: Scalars['bigint'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_organizers' } -/** aggregated selection of "team_scrim_availability" */ -export interface team_scrim_availability_aggregate { - aggregate: (team_scrim_availability_aggregate_fields | null) - nodes: team_scrim_availability[] - __typename: 'team_scrim_availability_aggregate' +/** aggregated selection of "tournament_organizers" */ +export interface tournament_organizers_aggregate { + aggregate: (tournament_organizers_aggregate_fields | null) + nodes: tournament_organizers[] + __typename: 'tournament_organizers_aggregate' +} + + +/** aggregate fields of "tournament_organizers" */ +export interface tournament_organizers_aggregate_fields { + avg: (tournament_organizers_avg_fields | null) + count: Scalars['Int'] + max: (tournament_organizers_max_fields | null) + min: (tournament_organizers_min_fields | null) + stddev: (tournament_organizers_stddev_fields | null) + stddev_pop: (tournament_organizers_stddev_pop_fields | null) + stddev_samp: (tournament_organizers_stddev_samp_fields | null) + sum: (tournament_organizers_sum_fields | null) + var_pop: (tournament_organizers_var_pop_fields | null) + var_samp: (tournament_organizers_var_samp_fields | null) + variance: (tournament_organizers_variance_fields | null) + __typename: 'tournament_organizers_aggregate_fields' } -/** aggregate fields of "team_scrim_availability" */ -export interface team_scrim_availability_aggregate_fields { - count: Scalars['Int'] - max: (team_scrim_availability_max_fields | null) - min: (team_scrim_availability_min_fields | null) - __typename: 'team_scrim_availability_aggregate_fields' +/** aggregate avg on columns */ +export interface tournament_organizers_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_avg_fields' } -/** unique or primary key constraints on table "team_scrim_availability" */ -export type team_scrim_availability_constraint = 'team_scrim_availability_pkey' +/** unique or primary key constraints on table "tournament_organizers" */ +export type tournament_organizers_constraint = 'tournament_organizers_pkey' /** aggregate max on columns */ -export interface team_scrim_availability_max_fields { - created_at: (Scalars['timestamptz'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - starts_at: (Scalars['timestamptz'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_availability_max_fields' +export interface tournament_organizers_max_fields { + steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizers_max_fields' } /** aggregate min on columns */ -export interface team_scrim_availability_min_fields { - created_at: (Scalars['timestamptz'] | null) - ends_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - starts_at: (Scalars['timestamptz'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_availability_min_fields' +export interface tournament_organizers_min_fields { + steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizers_min_fields' } -/** response of any mutation on the table "team_scrim_availability" */ -export interface team_scrim_availability_mutation_response { +/** response of any mutation on the table "tournament_organizers" */ +export interface tournament_organizers_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_scrim_availability[] - __typename: 'team_scrim_availability_mutation_response' + returning: tournament_organizers[] + __typename: 'tournament_organizers_mutation_response' } -/** select columns of table "team_scrim_availability" */ -export type team_scrim_availability_select_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' +/** select columns of table "tournament_organizers" */ +export type tournament_organizers_select_column = 'steam_id' | 'tournament_id' -/** select "team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_availability" */ -export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_and_arguments_columns = 'recurring_weekly' +/** aggregate stddev on columns */ +export interface tournament_organizers_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_stddev_fields' +} -/** select "team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_availability" */ -export type team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns = 'recurring_weekly' +/** aggregate stddev_pop on columns */ +export interface tournament_organizers_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_stddev_pop_fields' +} -/** update columns of table "team_scrim_availability" */ -export type team_scrim_availability_update_column = 'created_at' | 'ends_at' | 'id' | 'recurring_weekly' | 'starts_at' | 'team_id' +/** aggregate stddev_samp on columns */ +export interface tournament_organizers_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_stddev_samp_fields' +} -/** columns and relationships of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals { +/** aggregate sum on columns */ +export interface tournament_organizers_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_organizers_sum_fields' +} + + +/** update columns of table "tournament_organizers" */ +export type tournament_organizers_update_column = 'steam_id' | 'tournament_id' + + +/** aggregate var_pop on columns */ +export interface tournament_organizers_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_organizers_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_organizers_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_organizers_variance_fields' +} + + +/** columns and relationships of "tournament_stage_windows" */ +export interface tournament_stage_windows { + closes_at: (Scalars['timestamptz'] | null) created_at: Scalars['timestamptz'] + default_match_at: (Scalars['timestamptz'] | null) id: Scalars['uuid'] + opens_at: (Scalars['timestamptz'] | null) + round: Scalars['Int'] /** An object relationship */ - proposed_by: players - proposed_by_steam_id: Scalars['bigint'] - /** An object relationship */ - proposed_by_team: teams - proposed_by_team_id: Scalars['uuid'] - proposed_scheduled_at: Scalars['timestamptz'] - /** An object relationship */ - request: team_scrim_requests - request_id: Scalars['uuid'] - __typename: 'team_scrim_request_proposals' + stage: tournament_stages + tournament_stage_id: Scalars['uuid'] + __typename: 'tournament_stage_windows' } -/** aggregated selection of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_aggregate { - aggregate: (team_scrim_request_proposals_aggregate_fields | null) - nodes: team_scrim_request_proposals[] - __typename: 'team_scrim_request_proposals_aggregate' +/** aggregated selection of "tournament_stage_windows" */ +export interface tournament_stage_windows_aggregate { + aggregate: (tournament_stage_windows_aggregate_fields | null) + nodes: tournament_stage_windows[] + __typename: 'tournament_stage_windows_aggregate' } -/** aggregate fields of "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_aggregate_fields { - avg: (team_scrim_request_proposals_avg_fields | null) +/** aggregate fields of "tournament_stage_windows" */ +export interface tournament_stage_windows_aggregate_fields { + avg: (tournament_stage_windows_avg_fields | null) count: Scalars['Int'] - max: (team_scrim_request_proposals_max_fields | null) - min: (team_scrim_request_proposals_min_fields | null) - stddev: (team_scrim_request_proposals_stddev_fields | null) - stddev_pop: (team_scrim_request_proposals_stddev_pop_fields | null) - stddev_samp: (team_scrim_request_proposals_stddev_samp_fields | null) - sum: (team_scrim_request_proposals_sum_fields | null) - var_pop: (team_scrim_request_proposals_var_pop_fields | null) - var_samp: (team_scrim_request_proposals_var_samp_fields | null) - variance: (team_scrim_request_proposals_variance_fields | null) - __typename: 'team_scrim_request_proposals_aggregate_fields' + max: (tournament_stage_windows_max_fields | null) + min: (tournament_stage_windows_min_fields | null) + stddev: (tournament_stage_windows_stddev_fields | null) + stddev_pop: (tournament_stage_windows_stddev_pop_fields | null) + stddev_samp: (tournament_stage_windows_stddev_samp_fields | null) + sum: (tournament_stage_windows_sum_fields | null) + var_pop: (tournament_stage_windows_var_pop_fields | null) + var_samp: (tournament_stage_windows_var_samp_fields | null) + variance: (tournament_stage_windows_variance_fields | null) + __typename: 'tournament_stage_windows_aggregate_fields' } /** aggregate avg on columns */ -export interface team_scrim_request_proposals_avg_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_avg_fields' +export interface tournament_stage_windows_avg_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_avg_fields' } -/** unique or primary key constraints on table "team_scrim_request_proposals" */ -export type team_scrim_request_proposals_constraint = 'team_scrim_request_proposals_pkey' +/** unique or primary key constraints on table "tournament_stage_windows" */ +export type tournament_stage_windows_constraint = 'tournament_stage_windows_pkey' | 'tournament_stage_windows_tournament_stage_id_round_key' /** aggregate max on columns */ -export interface team_scrim_request_proposals_max_fields { +export interface tournament_stage_windows_max_fields { + closes_at: (Scalars['timestamptz'] | null) created_at: (Scalars['timestamptz'] | null) + default_match_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_by_team_id: (Scalars['uuid'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - request_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_request_proposals_max_fields' + opens_at: (Scalars['timestamptz'] | null) + round: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + __typename: 'tournament_stage_windows_max_fields' } /** aggregate min on columns */ -export interface team_scrim_request_proposals_min_fields { +export interface tournament_stage_windows_min_fields { + closes_at: (Scalars['timestamptz'] | null) created_at: (Scalars['timestamptz'] | null) + default_match_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) - proposed_by_steam_id: (Scalars['bigint'] | null) - proposed_by_team_id: (Scalars['uuid'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - request_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_request_proposals_min_fields' + opens_at: (Scalars['timestamptz'] | null) + round: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + __typename: 'tournament_stage_windows_min_fields' } -/** response of any mutation on the table "team_scrim_request_proposals" */ -export interface team_scrim_request_proposals_mutation_response { +/** response of any mutation on the table "tournament_stage_windows" */ +export interface tournament_stage_windows_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_scrim_request_proposals[] - __typename: 'team_scrim_request_proposals_mutation_response' + returning: tournament_stage_windows[] + __typename: 'tournament_stage_windows_mutation_response' } -/** select columns of table "team_scrim_request_proposals" */ -export type team_scrim_request_proposals_select_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' +/** select columns of table "tournament_stage_windows" */ +export type tournament_stage_windows_select_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' /** aggregate stddev on columns */ -export interface team_scrim_request_proposals_stddev_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_stddev_fields' +export interface tournament_stage_windows_stddev_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface team_scrim_request_proposals_stddev_pop_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_stddev_pop_fields' +export interface tournament_stage_windows_stddev_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface team_scrim_request_proposals_stddev_samp_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_stddev_samp_fields' +export interface tournament_stage_windows_stddev_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_stddev_samp_fields' } /** aggregate sum on columns */ -export interface team_scrim_request_proposals_sum_fields { - proposed_by_steam_id: (Scalars['bigint'] | null) - __typename: 'team_scrim_request_proposals_sum_fields' +export interface tournament_stage_windows_sum_fields { + round: (Scalars['Int'] | null) + __typename: 'tournament_stage_windows_sum_fields' } -/** update columns of table "team_scrim_request_proposals" */ -export type team_scrim_request_proposals_update_column = 'created_at' | 'id' | 'proposed_by_steam_id' | 'proposed_by_team_id' | 'proposed_scheduled_at' | 'request_id' +/** update columns of table "tournament_stage_windows" */ +export type tournament_stage_windows_update_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' /** aggregate var_pop on columns */ -export interface team_scrim_request_proposals_var_pop_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_var_pop_fields' +export interface tournament_stage_windows_var_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_var_pop_fields' } /** aggregate var_samp on columns */ -export interface team_scrim_request_proposals_var_samp_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_var_samp_fields' +export interface tournament_stage_windows_var_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_var_samp_fields' } /** aggregate variance on columns */ -export interface team_scrim_request_proposals_variance_fields { - proposed_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_request_proposals_variance_fields' +export interface tournament_stage_windows_variance_fields { + round: (Scalars['Float'] | null) + __typename: 'tournament_stage_windows_variance_fields' } -/** columns and relationships of "team_scrim_requests" */ -export interface team_scrim_requests { - auto_generated: Scalars['Boolean'] - /** An object relationship */ - awaiting_team: teams - awaiting_team_id: Scalars['uuid'] - canceled_by_team_id: (Scalars['uuid'] | null) - canceled_late: Scalars['Boolean'] - created_at: Scalars['timestamptz'] - expires_at: Scalars['timestamptz'] +/** columns and relationships of "tournament_stages" */ +export interface tournament_stages { + /** An array relationship */ + brackets: tournament_brackets[] + /** An aggregate relationship */ + brackets_aggregate: tournament_brackets_aggregate + decider_best_of: (Scalars['Int'] | null) + default_best_of: Scalars['Int'] /** An object relationship */ - from_team: teams - from_team_checked_in: (Scalars['Boolean'] | null) - from_team_id: Scalars['uuid'] + e_tournament_stage_type: e_tournament_stage_types + groups: (Scalars['Int'] | null) id: Scalars['uuid'] - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_options: (match_options | null) match_options_id: (Scalars['uuid'] | null) - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome: (Scalars['String'] | null) + max_rounds: (Scalars['Int'] | null) + max_teams: Scalars['Int'] + min_teams: Scalars['Int'] + /** An object relationship */ + options: (match_options | null) + order: Scalars['Int'] /** An array relationship */ - proposals: team_scrim_request_proposals[] + results: v_team_stage_results[] /** An aggregate relationship */ - proposals_aggregate: team_scrim_request_proposals_aggregate - proposed_scheduled_at: Scalars['timestamptz'] - region: (Scalars['String'] | null) - /** An object relationship */ - requested_by: players - requested_by_steam_id: Scalars['bigint'] - responded_at: (Scalars['timestamptz'] | null) - status: e_scrim_request_statuses_enum + results_aggregate: v_team_stage_results_aggregate + settings: (Scalars['jsonb'] | null) + swiss_no_elimination: Scalars['Boolean'] + third_place_match: Scalars['Boolean'] /** An object relationship */ - to_team: teams - to_team_checked_in: (Scalars['Boolean'] | null) - to_team_id: Scalars['uuid'] - __typename: 'team_scrim_requests' + tournament: tournaments + tournament_id: Scalars['uuid'] + type: e_tournament_stage_types_enum + /** An array relationship */ + windows: tournament_stage_windows[] + /** An aggregate relationship */ + windows_aggregate: tournament_stage_windows_aggregate + __typename: 'tournament_stages' } -/** aggregated selection of "team_scrim_requests" */ -export interface team_scrim_requests_aggregate { - aggregate: (team_scrim_requests_aggregate_fields | null) - nodes: team_scrim_requests[] - __typename: 'team_scrim_requests_aggregate' +/** aggregated selection of "tournament_stages" */ +export interface tournament_stages_aggregate { + aggregate: (tournament_stages_aggregate_fields | null) + nodes: tournament_stages[] + __typename: 'tournament_stages_aggregate' } -/** aggregate fields of "team_scrim_requests" */ -export interface team_scrim_requests_aggregate_fields { - avg: (team_scrim_requests_avg_fields | null) +/** aggregate fields of "tournament_stages" */ +export interface tournament_stages_aggregate_fields { + avg: (tournament_stages_avg_fields | null) count: Scalars['Int'] - max: (team_scrim_requests_max_fields | null) - min: (team_scrim_requests_min_fields | null) - stddev: (team_scrim_requests_stddev_fields | null) - stddev_pop: (team_scrim_requests_stddev_pop_fields | null) - stddev_samp: (team_scrim_requests_stddev_samp_fields | null) - sum: (team_scrim_requests_sum_fields | null) - var_pop: (team_scrim_requests_var_pop_fields | null) - var_samp: (team_scrim_requests_var_samp_fields | null) - variance: (team_scrim_requests_variance_fields | null) - __typename: 'team_scrim_requests_aggregate_fields' + max: (tournament_stages_max_fields | null) + min: (tournament_stages_min_fields | null) + stddev: (tournament_stages_stddev_fields | null) + stddev_pop: (tournament_stages_stddev_pop_fields | null) + stddev_samp: (tournament_stages_stddev_samp_fields | null) + sum: (tournament_stages_sum_fields | null) + var_pop: (tournament_stages_var_pop_fields | null) + var_samp: (tournament_stages_var_samp_fields | null) + variance: (tournament_stages_variance_fields | null) + __typename: 'tournament_stages_aggregate_fields' } /** aggregate avg on columns */ -export interface team_scrim_requests_avg_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_avg_fields' +export interface tournament_stages_avg_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_avg_fields' } -/** unique or primary key constraints on table "team_scrim_requests" */ -export type team_scrim_requests_constraint = 'team_scrim_requests_pkey' | 'uq_scrim_req_open' +/** unique or primary key constraints on table "tournament_stages" */ +export type tournament_stages_constraint = 'tournament_stages_pkey' /** aggregate max on columns */ -export interface team_scrim_requests_max_fields { - awaiting_team_id: (Scalars['uuid'] | null) - canceled_by_team_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - expires_at: (Scalars['timestamptz'] | null) - from_team_id: (Scalars['uuid'] | null) +export interface tournament_stages_max_fields { + decider_best_of: (Scalars['Int'] | null) + default_best_of: (Scalars['Int'] | null) + groups: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) match_options_id: (Scalars['uuid'] | null) - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome: (Scalars['String'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - region: (Scalars['String'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - responded_at: (Scalars['timestamptz'] | null) - to_team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_requests_max_fields' + max_rounds: (Scalars['Int'] | null) + max_teams: (Scalars['Int'] | null) + min_teams: (Scalars['Int'] | null) + order: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_stages_max_fields' } /** aggregate min on columns */ -export interface team_scrim_requests_min_fields { - awaiting_team_id: (Scalars['uuid'] | null) - canceled_by_team_id: (Scalars['uuid'] | null) - created_at: (Scalars['timestamptz'] | null) - expires_at: (Scalars['timestamptz'] | null) - from_team_id: (Scalars['uuid'] | null) +export interface tournament_stages_min_fields { + decider_best_of: (Scalars['Int'] | null) + default_best_of: (Scalars['Int'] | null) + groups: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) match_options_id: (Scalars['uuid'] | null) - /** Terminal match status captured by tbd_match_cancel_scrim before the match row is deleted, so v_team_reputation survives canceled-match GC. */ - match_outcome: (Scalars['String'] | null) - proposed_scheduled_at: (Scalars['timestamptz'] | null) - region: (Scalars['String'] | null) - requested_by_steam_id: (Scalars['bigint'] | null) - responded_at: (Scalars['timestamptz'] | null) - to_team_id: (Scalars['uuid'] | null) - __typename: 'team_scrim_requests_min_fields' + max_rounds: (Scalars['Int'] | null) + max_teams: (Scalars['Int'] | null) + min_teams: (Scalars['Int'] | null) + order: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_stages_min_fields' } -/** response of any mutation on the table "team_scrim_requests" */ -export interface team_scrim_requests_mutation_response { +/** response of any mutation on the table "tournament_stages" */ +export interface tournament_stages_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_scrim_requests[] - __typename: 'team_scrim_requests_mutation_response' + returning: tournament_stages[] + __typename: 'tournament_stages_mutation_response' } -/** select columns of table "team_scrim_requests" */ -export type team_scrim_requests_select_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' +/** 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' -/** select "team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns" columns of table "team_scrim_requests" */ -export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_and_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' +/** select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" */ +export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns = 'swiss_no_elimination' | 'third_place_match' -/** select "team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns" columns of table "team_scrim_requests" */ -export type team_scrim_requests_select_column_team_scrim_requests_aggregate_bool_exp_bool_or_arguments_columns = 'auto_generated' | 'canceled_late' | 'from_team_checked_in' | 'to_team_checked_in' +/** select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" */ +export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns = 'swiss_no_elimination' | 'third_place_match' /** aggregate stddev on columns */ -export interface team_scrim_requests_stddev_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_stddev_fields' +export interface tournament_stages_stddev_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface team_scrim_requests_stddev_pop_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_stddev_pop_fields' +export interface tournament_stages_stddev_pop_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface team_scrim_requests_stddev_samp_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_stddev_samp_fields' +export interface tournament_stages_stddev_samp_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_stddev_samp_fields' } /** aggregate sum on columns */ -export interface team_scrim_requests_sum_fields { - requested_by_steam_id: (Scalars['bigint'] | null) - __typename: 'team_scrim_requests_sum_fields' +export interface tournament_stages_sum_fields { + 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) + __typename: 'tournament_stages_sum_fields' } -/** update columns of table "team_scrim_requests" */ -export type team_scrim_requests_update_column = 'auto_generated' | 'awaiting_team_id' | 'canceled_by_team_id' | 'canceled_late' | 'created_at' | 'expires_at' | 'from_team_checked_in' | 'from_team_id' | 'id' | 'match_id' | 'match_options_id' | 'match_outcome' | 'proposed_scheduled_at' | 'region' | 'requested_by_steam_id' | 'responded_at' | 'status' | 'to_team_checked_in' | 'to_team_id' +/** 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' /** aggregate var_pop on columns */ -export interface team_scrim_requests_var_pop_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_var_pop_fields' +export interface tournament_stages_var_pop_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_var_pop_fields' } -/** aggregate var_samp on columns */ -export interface team_scrim_requests_var_samp_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_var_samp_fields' +/** aggregate var_samp on columns */ +export interface tournament_stages_var_samp_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_var_samp_fields' } /** aggregate variance on columns */ -export interface team_scrim_requests_variance_fields { - requested_by_steam_id: (Scalars['Float'] | null) - __typename: 'team_scrim_requests_variance_fields' +export interface tournament_stages_variance_fields { + decider_best_of: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + groups: (Scalars['Float'] | null) + max_rounds: (Scalars['Float'] | null) + max_teams: (Scalars['Float'] | null) + min_teams: (Scalars['Float'] | null) + order: (Scalars['Float'] | null) + __typename: 'tournament_stages_variance_fields' } -/** columns and relationships of "team_scrim_settings" */ -export interface team_scrim_settings { - allow_outside_availability: Scalars['Boolean'] +/** columns and relationships of "tournament_team_invites" */ +export interface tournament_team_invites { created_at: Scalars['timestamptz'] - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - enabled: Scalars['Boolean'] id: Scalars['uuid'] - map_ids: Scalars['uuid'][] - notes: (Scalars['String'] | null) - regions: Scalars['String'][] /** An object relationship */ - team: teams - team_id: Scalars['uuid'] - updated_at: Scalars['timestamptz'] - __typename: 'team_scrim_settings' + invited_by: players + invited_by_player_steam_id: Scalars['bigint'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + /** An object relationship */ + team: tournament_teams + tournament_team_id: Scalars['uuid'] + __typename: 'tournament_team_invites' } -/** aggregated selection of "team_scrim_settings" */ -export interface team_scrim_settings_aggregate { - aggregate: (team_scrim_settings_aggregate_fields | null) - nodes: team_scrim_settings[] - __typename: 'team_scrim_settings_aggregate' +/** aggregated selection of "tournament_team_invites" */ +export interface tournament_team_invites_aggregate { + aggregate: (tournament_team_invites_aggregate_fields | null) + nodes: tournament_team_invites[] + __typename: 'tournament_team_invites_aggregate' } -/** aggregate fields of "team_scrim_settings" */ -export interface team_scrim_settings_aggregate_fields { - avg: (team_scrim_settings_avg_fields | null) +/** aggregate fields of "tournament_team_invites" */ +export interface tournament_team_invites_aggregate_fields { + avg: (tournament_team_invites_avg_fields | null) count: Scalars['Int'] - max: (team_scrim_settings_max_fields | null) - min: (team_scrim_settings_min_fields | null) - stddev: (team_scrim_settings_stddev_fields | null) - stddev_pop: (team_scrim_settings_stddev_pop_fields | null) - stddev_samp: (team_scrim_settings_stddev_samp_fields | null) - sum: (team_scrim_settings_sum_fields | null) - var_pop: (team_scrim_settings_var_pop_fields | null) - var_samp: (team_scrim_settings_var_samp_fields | null) - variance: (team_scrim_settings_variance_fields | null) - __typename: 'team_scrim_settings_aggregate_fields' + max: (tournament_team_invites_max_fields | null) + min: (tournament_team_invites_min_fields | null) + stddev: (tournament_team_invites_stddev_fields | null) + stddev_pop: (tournament_team_invites_stddev_pop_fields | null) + stddev_samp: (tournament_team_invites_stddev_samp_fields | null) + sum: (tournament_team_invites_sum_fields | null) + var_pop: (tournament_team_invites_var_pop_fields | null) + var_samp: (tournament_team_invites_var_samp_fields | null) + variance: (tournament_team_invites_variance_fields | null) + __typename: 'tournament_team_invites_aggregate_fields' } /** aggregate avg on columns */ -export interface team_scrim_settings_avg_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_avg_fields' +export interface tournament_team_invites_avg_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_avg_fields' } -/** unique or primary key constraints on table "team_scrim_settings" */ -export type team_scrim_settings_constraint = 'team_scrim_settings_pkey' | 'team_scrim_settings_team_id_key' +/** unique or primary key constraints on table "tournament_team_invites" */ +export type tournament_team_invites_constraint = 'tournament_team_invites_pkey' | 'tournament_team_invites_steam_id_tournament_team_id_key' /** aggregate max on columns */ -export interface team_scrim_settings_max_fields { +export interface tournament_team_invites_max_fields { created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - map_ids: (Scalars['uuid'][] | null) - notes: (Scalars['String'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'team_scrim_settings_max_fields' + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_invites_max_fields' } /** aggregate min on columns */ -export interface team_scrim_settings_min_fields { +export interface tournament_team_invites_min_fields { created_at: (Scalars['timestamptz'] | null) - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) - map_ids: (Scalars['uuid'][] | null) - notes: (Scalars['String'] | null) - regions: (Scalars['String'][] | null) - team_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'team_scrim_settings_min_fields' + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_invites_min_fields' } -/** response of any mutation on the table "team_scrim_settings" */ -export interface team_scrim_settings_mutation_response { +/** response of any mutation on the table "tournament_team_invites" */ +export interface tournament_team_invites_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_scrim_settings[] - __typename: 'team_scrim_settings_mutation_response' + returning: tournament_team_invites[] + __typename: 'tournament_team_invites_mutation_response' } -/** select columns of table "team_scrim_settings" */ -export type team_scrim_settings_select_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' +/** select columns of table "tournament_team_invites" */ +export type tournament_team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' /** aggregate stddev on columns */ -export interface team_scrim_settings_stddev_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_stddev_fields' +export interface tournament_team_invites_stddev_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface team_scrim_settings_stddev_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_stddev_pop_fields' +export interface tournament_team_invites_stddev_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface team_scrim_settings_stddev_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_stddev_samp_fields' +export interface tournament_team_invites_stddev_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_stddev_samp_fields' } /** aggregate sum on columns */ -export interface team_scrim_settings_sum_fields { - elo_max: (Scalars['Int'] | null) - elo_min: (Scalars['Int'] | null) - __typename: 'team_scrim_settings_sum_fields' +export interface tournament_team_invites_sum_fields { + invited_by_player_steam_id: (Scalars['bigint'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_team_invites_sum_fields' } -/** update columns of table "team_scrim_settings" */ -export type team_scrim_settings_update_column = 'allow_outside_availability' | 'created_at' | 'elo_max' | 'elo_min' | 'enabled' | 'id' | 'map_ids' | 'notes' | 'regions' | 'team_id' | 'updated_at' +/** update columns of table "tournament_team_invites" */ +export type tournament_team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' /** aggregate var_pop on columns */ -export interface team_scrim_settings_var_pop_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_var_pop_fields' +export interface tournament_team_invites_var_pop_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_var_pop_fields' } /** aggregate var_samp on columns */ -export interface team_scrim_settings_var_samp_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_var_samp_fields' +export interface tournament_team_invites_var_samp_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_var_samp_fields' } /** aggregate variance on columns */ -export interface team_scrim_settings_variance_fields { - elo_max: (Scalars['Float'] | null) - elo_min: (Scalars['Float'] | null) - __typename: 'team_scrim_settings_variance_fields' +export interface tournament_team_invites_variance_fields { + invited_by_player_steam_id: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_invites_variance_fields' } -/** columns and relationships of "team_suggestions" */ -export interface team_suggestions { - created_at: Scalars['timestamptz'] - group_hash: Scalars['String'] - id: Scalars['uuid'] - last_notified_at: (Scalars['timestamptz'] | null) - member_steam_ids: Scalars['bigint'][] - status: Scalars['String'] - together_count: Scalars['Int'] - __typename: 'team_suggestions' +/** columns and relationships of "tournament_team_roster" */ +export interface tournament_team_roster { + /** An object relationship */ + e_team_role: e_team_roles + /** An object relationship */ + player: players + player_steam_id: Scalars['bigint'] + role: e_team_roles_enum + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + /** An object relationship */ + tournament_team: tournament_teams + tournament_team_id: Scalars['uuid'] + __typename: 'tournament_team_roster' } -/** aggregated selection of "team_suggestions" */ -export interface team_suggestions_aggregate { - aggregate: (team_suggestions_aggregate_fields | null) - nodes: team_suggestions[] - __typename: 'team_suggestions_aggregate' +/** aggregated selection of "tournament_team_roster" */ +export interface tournament_team_roster_aggregate { + aggregate: (tournament_team_roster_aggregate_fields | null) + nodes: tournament_team_roster[] + __typename: 'tournament_team_roster_aggregate' } -/** aggregate fields of "team_suggestions" */ -export interface team_suggestions_aggregate_fields { - avg: (team_suggestions_avg_fields | null) +/** aggregate fields of "tournament_team_roster" */ +export interface tournament_team_roster_aggregate_fields { + avg: (tournament_team_roster_avg_fields | null) count: Scalars['Int'] - max: (team_suggestions_max_fields | null) - min: (team_suggestions_min_fields | null) - stddev: (team_suggestions_stddev_fields | null) - stddev_pop: (team_suggestions_stddev_pop_fields | null) - stddev_samp: (team_suggestions_stddev_samp_fields | null) - sum: (team_suggestions_sum_fields | null) - var_pop: (team_suggestions_var_pop_fields | null) - var_samp: (team_suggestions_var_samp_fields | null) - variance: (team_suggestions_variance_fields | null) - __typename: 'team_suggestions_aggregate_fields' + max: (tournament_team_roster_max_fields | null) + min: (tournament_team_roster_min_fields | null) + stddev: (tournament_team_roster_stddev_fields | null) + stddev_pop: (tournament_team_roster_stddev_pop_fields | null) + stddev_samp: (tournament_team_roster_stddev_samp_fields | null) + sum: (tournament_team_roster_sum_fields | null) + var_pop: (tournament_team_roster_var_pop_fields | null) + var_samp: (tournament_team_roster_var_samp_fields | null) + variance: (tournament_team_roster_variance_fields | null) + __typename: 'tournament_team_roster_aggregate_fields' } /** aggregate avg on columns */ -export interface team_suggestions_avg_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_avg_fields' +export interface tournament_team_roster_avg_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_avg_fields' } -/** unique or primary key constraints on table "team_suggestions" */ -export type team_suggestions_constraint = 'team_suggestions_group_hash_key' | 'team_suggestions_pkey' +/** unique or primary key constraints on table "tournament_team_roster" */ +export type tournament_team_roster_constraint = 'tournament_roster_pkey' | 'tournament_roster_player_steam_id_tournament_id_key' /** aggregate max on columns */ -export interface team_suggestions_max_fields { - created_at: (Scalars['timestamptz'] | null) - group_hash: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - member_steam_ids: (Scalars['bigint'][] | null) - status: (Scalars['String'] | null) - together_count: (Scalars['Int'] | null) - __typename: 'team_suggestions_max_fields' +export interface tournament_team_roster_max_fields { + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_roster_max_fields' } /** aggregate min on columns */ -export interface team_suggestions_min_fields { - created_at: (Scalars['timestamptz'] | null) - group_hash: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - last_notified_at: (Scalars['timestamptz'] | null) - member_steam_ids: (Scalars['bigint'][] | null) - status: (Scalars['String'] | null) - together_count: (Scalars['Int'] | null) - __typename: 'team_suggestions_min_fields' +export interface tournament_team_roster_min_fields { + player_steam_id: (Scalars['bigint'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_team_roster_min_fields' } -/** response of any mutation on the table "team_suggestions" */ -export interface team_suggestions_mutation_response { +/** response of any mutation on the table "tournament_team_roster" */ +export interface tournament_team_roster_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: team_suggestions[] - __typename: 'team_suggestions_mutation_response' + returning: tournament_team_roster[] + __typename: 'tournament_team_roster_mutation_response' } -/** select columns of table "team_suggestions" */ -export type team_suggestions_select_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' +/** select columns of table "tournament_team_roster" */ +export type tournament_team_roster_select_column = 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' /** aggregate stddev on columns */ -export interface team_suggestions_stddev_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_stddev_fields' +export interface tournament_team_roster_stddev_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface team_suggestions_stddev_pop_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_stddev_pop_fields' +export interface tournament_team_roster_stddev_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface team_suggestions_stddev_samp_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_stddev_samp_fields' +export interface tournament_team_roster_stddev_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_stddev_samp_fields' } /** aggregate sum on columns */ -export interface team_suggestions_sum_fields { - together_count: (Scalars['Int'] | null) - __typename: 'team_suggestions_sum_fields' +export interface tournament_team_roster_sum_fields { + player_steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_team_roster_sum_fields' } -/** update columns of table "team_suggestions" */ -export type team_suggestions_update_column = 'created_at' | 'group_hash' | 'id' | 'last_notified_at' | 'member_steam_ids' | 'status' | 'together_count' +/** update columns of table "tournament_team_roster" */ +export type tournament_team_roster_update_column = 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' /** aggregate var_pop on columns */ -export interface team_suggestions_var_pop_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_var_pop_fields' +export interface tournament_team_roster_var_pop_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_var_pop_fields' } /** aggregate var_samp on columns */ -export interface team_suggestions_var_samp_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_var_samp_fields' +export interface tournament_team_roster_var_samp_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_var_samp_fields' } /** aggregate variance on columns */ -export interface team_suggestions_variance_fields { - together_count: (Scalars['Float'] | null) - __typename: 'team_suggestions_variance_fields' +export interface tournament_team_roster_variance_fields { + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_team_roster_variance_fields' } -/** columns and relationships of "teams" */ -export interface teams { - avatar_url: (Scalars['String'] | null) - /** A computed field, executes function "can_change_team_role" */ - can_change_role: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_invite_to_team" */ - can_invite: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_manage_team_scrims" */ - can_manage_scrims: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_remove_from_team" */ - can_remove: (Scalars['Boolean'] | null) +/** columns and relationships of "tournament_teams" */ +export interface tournament_teams { + /** A computed field, executes function "can_manage_tournament_team" */ + can_manage: (Scalars['Boolean'] | null) /** An object relationship */ captain: (players | null) captain_steam_id: (Scalars['bigint'] | null) + created_at: Scalars['timestamptz'] + /** An object relationship */ + creator: players + eligible_at: (Scalars['timestamptz'] | null) id: Scalars['uuid'] /** An array relationship */ - invites: team_invites[] - /** An aggregate relationship */ - invites_aggregate: team_invites_aggregate - /** An array relationship */ - match_lineups: match_lineups[] + invites: tournament_team_invites[] /** An aggregate relationship */ - match_lineups_aggregate: match_lineups_aggregate - /** A computed field, executes function "get_team_matches" */ - matches: (matches[] | null) - name: Scalars['String'] - /** An object relationship */ - owner: players + invites_aggregate: tournament_team_invites_aggregate + name: (Scalars['String'] | null) owner_steam_id: Scalars['bigint'] /** An object relationship */ - ranks: (v_team_ranks | null) - /** An object relationship */ - reputation: (v_team_reputation | null) - /** A computed field, executes function "team_role" */ - role: (Scalars['String'] | null) - /** An array relationship */ - roster: team_roster[] - /** An aggregate relationship */ - roster_aggregate: team_roster_aggregate + results: (v_team_stage_results | null) /** An array relationship */ - scrim_availability: team_scrim_availability[] + roster: tournament_team_roster[] /** An aggregate relationship */ - scrim_availability_aggregate: team_scrim_availability_aggregate + roster_aggregate: tournament_team_roster_aggregate + seed: (Scalars['Int'] | null) + short_name: (Scalars['String'] | null) /** An object relationship */ - scrim_settings: (team_scrim_settings | null) - short_name: Scalars['String'] - /** An array relationship */ - tournament_teams: tournament_teams[] - /** An aggregate relationship */ - tournament_teams_aggregate: tournament_teams_aggregate - __typename: 'teams' + team: (teams | null) + team_id: (Scalars['uuid'] | null) + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_teams' } -/** aggregated selection of "teams" */ -export interface teams_aggregate { - aggregate: (teams_aggregate_fields | null) - nodes: teams[] - __typename: 'teams_aggregate' +/** aggregated selection of "tournament_teams" */ +export interface tournament_teams_aggregate { + aggregate: (tournament_teams_aggregate_fields | null) + nodes: tournament_teams[] + __typename: 'tournament_teams_aggregate' } -/** aggregate fields of "teams" */ -export interface teams_aggregate_fields { - avg: (teams_avg_fields | null) +/** aggregate fields of "tournament_teams" */ +export interface tournament_teams_aggregate_fields { + avg: (tournament_teams_avg_fields | null) count: Scalars['Int'] - max: (teams_max_fields | null) - min: (teams_min_fields | null) - stddev: (teams_stddev_fields | null) - stddev_pop: (teams_stddev_pop_fields | null) - stddev_samp: (teams_stddev_samp_fields | null) - sum: (teams_sum_fields | null) - var_pop: (teams_var_pop_fields | null) - var_samp: (teams_var_samp_fields | null) - variance: (teams_variance_fields | null) - __typename: 'teams_aggregate_fields' + max: (tournament_teams_max_fields | null) + min: (tournament_teams_min_fields | null) + stddev: (tournament_teams_stddev_fields | null) + stddev_pop: (tournament_teams_stddev_pop_fields | null) + stddev_samp: (tournament_teams_stddev_samp_fields | null) + sum: (tournament_teams_sum_fields | null) + var_pop: (tournament_teams_var_pop_fields | null) + var_samp: (tournament_teams_var_samp_fields | null) + variance: (tournament_teams_variance_fields | null) + __typename: 'tournament_teams_aggregate_fields' } /** aggregate avg on columns */ -export interface teams_avg_fields { +export interface tournament_teams_avg_fields { captain_steam_id: (Scalars['Float'] | null) owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_avg_fields' + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_avg_fields' } -/** unique or primary key constraints on table "teams" */ -export type teams_constraint = 'teams_name_key' | 'teams_pkey' +/** unique or primary key constraints on table "tournament_teams" */ +export type tournament_teams_constraint = 'tournament_teams_creator_steam_id_tournament_id_key' | 'tournament_teams_pkey' | 'tournament_teams_tournament_id_name_key' | 'tournament_teams_tournament_id_seed_key' | 'tournament_teams_tournament_id_team_id_key' /** aggregate max on columns */ -export interface teams_max_fields { - avatar_url: (Scalars['String'] | null) +export interface tournament_teams_max_fields { captain_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + eligible_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) owner_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "team_role" */ - role: (Scalars['String'] | null) + seed: (Scalars['Int'] | null) short_name: (Scalars['String'] | null) - __typename: 'teams_max_fields' + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_teams_max_fields' } /** aggregate min on columns */ -export interface teams_min_fields { - avatar_url: (Scalars['String'] | null) +export interface tournament_teams_min_fields { captain_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + eligible_at: (Scalars['timestamptz'] | null) id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) owner_steam_id: (Scalars['bigint'] | null) - /** A computed field, executes function "team_role" */ - role: (Scalars['String'] | null) + seed: (Scalars['Int'] | null) short_name: (Scalars['String'] | null) - __typename: 'teams_min_fields' + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_teams_min_fields' } -/** response of any mutation on the table "teams" */ -export interface teams_mutation_response { +/** response of any mutation on the table "tournament_teams" */ +export interface tournament_teams_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: teams[] - __typename: 'teams_mutation_response' + returning: tournament_teams[] + __typename: 'tournament_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' +/** select columns of table "tournament_teams" */ +export type tournament_teams_select_column = 'captain_steam_id' | 'created_at' | 'eligible_at' | 'id' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' /** aggregate stddev on columns */ -export interface teams_stddev_fields { +export interface tournament_teams_stddev_fields { captain_steam_id: (Scalars['Float'] | null) owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_stddev_fields' + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface teams_stddev_pop_fields { +export interface tournament_teams_stddev_pop_fields { captain_steam_id: (Scalars['Float'] | null) owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_stddev_pop_fields' + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface teams_stddev_samp_fields { +export interface tournament_teams_stddev_samp_fields { captain_steam_id: (Scalars['Float'] | null) owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_stddev_samp_fields' + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_stddev_samp_fields' } /** aggregate sum on columns */ -export interface teams_sum_fields { +export interface tournament_teams_sum_fields { captain_steam_id: (Scalars['bigint'] | null) owner_steam_id: (Scalars['bigint'] | null) - __typename: 'teams_sum_fields' + seed: (Scalars['Int'] | null) + __typename: 'tournament_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' +/** update columns of table "tournament_teams" */ +export type tournament_teams_update_column = 'captain_steam_id' | 'created_at' | 'eligible_at' | 'id' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' /** aggregate var_pop on columns */ -export interface teams_var_pop_fields { +export interface tournament_teams_var_pop_fields { captain_steam_id: (Scalars['Float'] | null) owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_var_pop_fields' + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_var_pop_fields' } /** aggregate var_samp on columns */ -export interface teams_var_samp_fields { +export interface tournament_teams_var_samp_fields { captain_steam_id: (Scalars['Float'] | null) owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_var_samp_fields' + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_var_samp_fields' } /** aggregate variance on columns */ -export interface teams_variance_fields { +export interface tournament_teams_variance_fields { captain_steam_id: (Scalars['Float'] | null) owner_steam_id: (Scalars['Float'] | null) - __typename: 'teams_variance_fields' + seed: (Scalars['Float'] | null) + __typename: 'tournament_teams_variance_fields' } -/** columns and relationships of "tournament_brackets" */ -export interface tournament_brackets { - bye: Scalars['Boolean'] +/** columns and relationships of "tournament_trophies" */ +export interface tournament_trophies { created_at: Scalars['timestamptz'] - /** A computed field, executes function "get_feeding_brackets" */ - feeding_brackets: (tournament_brackets[] | null) - finished: Scalars['Boolean'] - group: (Scalars['numeric'] | null) id: Scalars['uuid'] + manual: Scalars['Boolean'] + placement: Scalars['Int'] + placement_tier: (Scalars['String'] | null) /** An object relationship */ - loser_bracket: (tournament_brackets | null) - loser_parent_bracket_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - match_number: (Scalars['Int'] | null) - match_options_id: (Scalars['uuid'] | null) - /** An object relationship */ - options: (match_options | null) + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) /** An object relationship */ - parent_bracket: (tournament_brackets | null) - parent_bracket_id: (Scalars['uuid'] | null) - path: (Scalars['String'] | null) - round: Scalars['Int'] - scheduled_at: (Scalars['timestamptz'] | null) - scheduled_eta: (Scalars['timestamptz'] | null) - /** An array relationship */ - scheduling_proposals: league_scheduling_proposals[] - /** An aggregate relationship */ - scheduling_proposals_aggregate: league_scheduling_proposals_aggregate + team: (teams | null) + team_id: (Scalars['uuid'] | null) /** An object relationship */ - stage: tournament_stages + tournament: tournaments + tournament_id: Scalars['uuid'] /** An object relationship */ - team_1: (tournament_teams | null) - team_1_seed: (Scalars['Int'] | null) + tournament_team: tournament_teams + tournament_team_id: Scalars['uuid'] /** An object relationship */ - team_2: (tournament_teams | null) - team_2_seed: (Scalars['Int'] | null) - tournament_stage_id: Scalars['uuid'] - tournament_team_id_1: (Scalars['uuid'] | null) - tournament_team_id_2: (Scalars['uuid'] | null) - __typename: 'tournament_brackets' + trophy_config: (tournament_trophy_configs | null) + __typename: 'tournament_trophies' } -/** aggregated selection of "tournament_brackets" */ -export interface tournament_brackets_aggregate { - aggregate: (tournament_brackets_aggregate_fields | null) - nodes: tournament_brackets[] - __typename: 'tournament_brackets_aggregate' +/** aggregated selection of "tournament_trophies" */ +export interface tournament_trophies_aggregate { + aggregate: (tournament_trophies_aggregate_fields | null) + nodes: tournament_trophies[] + __typename: 'tournament_trophies_aggregate' } -/** aggregate fields of "tournament_brackets" */ -export interface tournament_brackets_aggregate_fields { - avg: (tournament_brackets_avg_fields | null) +/** aggregate fields of "tournament_trophies" */ +export interface tournament_trophies_aggregate_fields { + avg: (tournament_trophies_avg_fields | null) count: Scalars['Int'] - max: (tournament_brackets_max_fields | null) - min: (tournament_brackets_min_fields | null) - stddev: (tournament_brackets_stddev_fields | null) - stddev_pop: (tournament_brackets_stddev_pop_fields | null) - stddev_samp: (tournament_brackets_stddev_samp_fields | null) - sum: (tournament_brackets_sum_fields | null) - var_pop: (tournament_brackets_var_pop_fields | null) - var_samp: (tournament_brackets_var_samp_fields | null) - variance: (tournament_brackets_variance_fields | null) - __typename: 'tournament_brackets_aggregate_fields' + max: (tournament_trophies_max_fields | null) + min: (tournament_trophies_min_fields | null) + stddev: (tournament_trophies_stddev_fields | null) + stddev_pop: (tournament_trophies_stddev_pop_fields | null) + stddev_samp: (tournament_trophies_stddev_samp_fields | null) + sum: (tournament_trophies_sum_fields | null) + var_pop: (tournament_trophies_var_pop_fields | null) + var_samp: (tournament_trophies_var_samp_fields | null) + variance: (tournament_trophies_variance_fields | null) + __typename: 'tournament_trophies_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_brackets_avg_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_avg_fields' +export interface tournament_trophies_avg_fields { + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_trophies_avg_fields' } -/** unique or primary key constraints on table "tournament_brackets" */ -export type tournament_brackets_constraint = 'touarnment_brackets_pkey' | 'tournament_brackets_id_tournament_team_id_1_tournament_team_id_' +/** unique or primary key constraints on table "tournament_trophies" */ +export type tournament_trophies_constraint = 'tournament_trophies_one_mvp_per_tournament' | 'tournament_trophies_pkey' | 'tournament_trophies_player_recipient_key' | 'tournament_trophies_team_recipient_key' /** aggregate max on columns */ -export interface tournament_brackets_max_fields { +export interface tournament_trophies_max_fields { created_at: (Scalars['timestamptz'] | null) - group: (Scalars['numeric'] | null) id: (Scalars['uuid'] | null) - loser_parent_bracket_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_number: (Scalars['Int'] | null) - match_options_id: (Scalars['uuid'] | null) - parent_bracket_id: (Scalars['uuid'] | null) - path: (Scalars['String'] | null) - round: (Scalars['Int'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - scheduled_eta: (Scalars['timestamptz'] | null) - team_1_seed: (Scalars['Int'] | null) - team_2_seed: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - tournament_team_id_1: (Scalars['uuid'] | null) - tournament_team_id_2: (Scalars['uuid'] | null) - __typename: 'tournament_brackets_max_fields' + placement: (Scalars['Int'] | null) + placement_tier: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_trophies_max_fields' } /** aggregate min on columns */ -export interface tournament_brackets_min_fields { +export interface tournament_trophies_min_fields { created_at: (Scalars['timestamptz'] | null) - group: (Scalars['numeric'] | null) id: (Scalars['uuid'] | null) - loser_parent_bracket_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_number: (Scalars['Int'] | null) - match_options_id: (Scalars['uuid'] | null) - parent_bracket_id: (Scalars['uuid'] | null) - path: (Scalars['String'] | null) - round: (Scalars['Int'] | null) - scheduled_at: (Scalars['timestamptz'] | null) - scheduled_eta: (Scalars['timestamptz'] | null) - team_1_seed: (Scalars['Int'] | null) - team_2_seed: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - tournament_team_id_1: (Scalars['uuid'] | null) - tournament_team_id_2: (Scalars['uuid'] | null) - __typename: 'tournament_brackets_min_fields' + placement: (Scalars['Int'] | null) + placement_tier: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'tournament_trophies_min_fields' } -/** response of any mutation on the table "tournament_brackets" */ -export interface tournament_brackets_mutation_response { +/** response of any mutation on the table "tournament_trophies" */ +export interface tournament_trophies_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: tournament_brackets[] - __typename: 'tournament_brackets_mutation_response' + returning: tournament_trophies[] + __typename: 'tournament_trophies_mutation_response' } -/** select columns of table "tournament_brackets" */ -export type tournament_brackets_select_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' +/** select columns of table "tournament_trophies" */ +export type tournament_trophies_select_column = 'created_at' | 'id' | 'manual' | 'placement' | 'placement_tier' | 'player_steam_id' | 'team_id' | 'tournament_id' | 'tournament_team_id' -/** select "tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_brackets" */ -export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns = 'bye' | 'finished' +/** select "tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_trophies" */ +export type tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns = 'manual' -/** select "tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_brackets" */ -export type tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns = 'bye' | 'finished' +/** select "tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_trophies" */ +export type tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns = 'manual' /** aggregate stddev on columns */ -export interface tournament_brackets_stddev_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_stddev_fields' +export interface tournament_trophies_stddev_fields { + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_trophies_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_brackets_stddev_pop_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_stddev_pop_fields' +export interface tournament_trophies_stddev_pop_fields { + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_trophies_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_brackets_stddev_samp_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_stddev_samp_fields' +export interface tournament_trophies_stddev_samp_fields { + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_trophies_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_brackets_sum_fields { - group: (Scalars['numeric'] | null) - match_number: (Scalars['Int'] | null) - round: (Scalars['Int'] | null) - team_1_seed: (Scalars['Int'] | null) - team_2_seed: (Scalars['Int'] | null) - __typename: 'tournament_brackets_sum_fields' +export interface tournament_trophies_sum_fields { + placement: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'tournament_trophies_sum_fields' } -/** update columns of table "tournament_brackets" */ -export type tournament_brackets_update_column = 'bye' | 'created_at' | 'finished' | 'group' | 'id' | 'loser_parent_bracket_id' | 'match_id' | 'match_number' | 'match_options_id' | 'parent_bracket_id' | 'path' | 'round' | 'scheduled_at' | 'scheduled_eta' | 'team_1_seed' | 'team_2_seed' | 'tournament_stage_id' | 'tournament_team_id_1' | 'tournament_team_id_2' +/** update columns of table "tournament_trophies" */ +export type tournament_trophies_update_column = 'created_at' | 'id' | 'manual' | 'placement' | 'player_steam_id' | 'team_id' | 'tournament_id' | 'tournament_team_id' /** aggregate var_pop on columns */ -export interface tournament_brackets_var_pop_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_var_pop_fields' +export interface tournament_trophies_var_pop_fields { + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_trophies_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_brackets_var_samp_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_var_samp_fields' +export interface tournament_trophies_var_samp_fields { + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_trophies_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_brackets_variance_fields { - group: (Scalars['Float'] | null) - match_number: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - team_1_seed: (Scalars['Float'] | null) - team_2_seed: (Scalars['Float'] | null) - __typename: 'tournament_brackets_variance_fields' +export interface tournament_trophies_variance_fields { + placement: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'tournament_trophies_variance_fields' } -/** columns and relationships of "tournament_organizers" */ -export interface tournament_organizers { - /** An object relationship */ - organizer: players - steam_id: Scalars['bigint'] +/** columns and relationships of "tournament_trophy_configs" */ +export interface tournament_trophy_configs { + created_at: Scalars['timestamptz'] + custom_name: (Scalars['String'] | null) + id: Scalars['uuid'] + image_url: (Scalars['String'] | null) + placement: Scalars['Int'] + silhouette: (Scalars['Int'] | null) /** An object relationship */ tournament: tournaments tournament_id: Scalars['uuid'] - __typename: 'tournament_organizers' + updated_at: Scalars['timestamptz'] + __typename: 'tournament_trophy_configs' } -/** aggregated selection of "tournament_organizers" */ -export interface tournament_organizers_aggregate { - aggregate: (tournament_organizers_aggregate_fields | null) - nodes: tournament_organizers[] - __typename: 'tournament_organizers_aggregate' +/** aggregated selection of "tournament_trophy_configs" */ +export interface tournament_trophy_configs_aggregate { + aggregate: (tournament_trophy_configs_aggregate_fields | null) + nodes: tournament_trophy_configs[] + __typename: 'tournament_trophy_configs_aggregate' } -/** aggregate fields of "tournament_organizers" */ -export interface tournament_organizers_aggregate_fields { - avg: (tournament_organizers_avg_fields | null) +/** aggregate fields of "tournament_trophy_configs" */ +export interface tournament_trophy_configs_aggregate_fields { + avg: (tournament_trophy_configs_avg_fields | null) count: Scalars['Int'] - max: (tournament_organizers_max_fields | null) - min: (tournament_organizers_min_fields | null) - stddev: (tournament_organizers_stddev_fields | null) - stddev_pop: (tournament_organizers_stddev_pop_fields | null) - stddev_samp: (tournament_organizers_stddev_samp_fields | null) - sum: (tournament_organizers_sum_fields | null) - var_pop: (tournament_organizers_var_pop_fields | null) - var_samp: (tournament_organizers_var_samp_fields | null) - variance: (tournament_organizers_variance_fields | null) - __typename: 'tournament_organizers_aggregate_fields' + max: (tournament_trophy_configs_max_fields | null) + min: (tournament_trophy_configs_min_fields | null) + stddev: (tournament_trophy_configs_stddev_fields | null) + stddev_pop: (tournament_trophy_configs_stddev_pop_fields | null) + stddev_samp: (tournament_trophy_configs_stddev_samp_fields | null) + sum: (tournament_trophy_configs_sum_fields | null) + var_pop: (tournament_trophy_configs_var_pop_fields | null) + var_samp: (tournament_trophy_configs_var_samp_fields | null) + variance: (tournament_trophy_configs_variance_fields | null) + __typename: 'tournament_trophy_configs_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_organizers_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_avg_fields' +export interface tournament_trophy_configs_avg_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_trophy_configs_avg_fields' } -/** unique or primary key constraints on table "tournament_organizers" */ -export type tournament_organizers_constraint = 'tournament_organizers_pkey' +/** unique or primary key constraints on table "tournament_trophy_configs" */ +export type tournament_trophy_configs_constraint = 'tournament_trophy_configs_pkey' | 'tournament_trophy_configs_tournament_id_placement_key' /** aggregate max on columns */ -export interface tournament_organizers_max_fields { - steam_id: (Scalars['bigint'] | null) +export interface tournament_trophy_configs_max_fields { + created_at: (Scalars['timestamptz'] | null) + custom_name: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_organizers_max_fields' + updated_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_trophy_configs_max_fields' } /** aggregate min on columns */ -export interface tournament_organizers_min_fields { - steam_id: (Scalars['bigint'] | null) +export interface tournament_trophy_configs_min_fields { + created_at: (Scalars['timestamptz'] | null) + custom_name: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + image_url: (Scalars['String'] | null) + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_organizers_min_fields' + updated_at: (Scalars['timestamptz'] | null) + __typename: 'tournament_trophy_configs_min_fields' } -/** response of any mutation on the table "tournament_organizers" */ -export interface tournament_organizers_mutation_response { +/** response of any mutation on the table "tournament_trophy_configs" */ +export interface tournament_trophy_configs_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: tournament_organizers[] - __typename: 'tournament_organizers_mutation_response' + returning: tournament_trophy_configs[] + __typename: 'tournament_trophy_configs_mutation_response' } -/** select columns of table "tournament_organizers" */ -export type tournament_organizers_select_column = 'steam_id' | 'tournament_id' +/** select columns of table "tournament_trophy_configs" */ +export type tournament_trophy_configs_select_column = 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' /** aggregate stddev on columns */ -export interface tournament_organizers_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_stddev_fields' +export interface tournament_trophy_configs_stddev_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_trophy_configs_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_organizers_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_stddev_pop_fields' +export interface tournament_trophy_configs_stddev_pop_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_trophy_configs_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_organizers_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_stddev_samp_fields' +export interface tournament_trophy_configs_stddev_samp_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_trophy_configs_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_organizers_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_organizers_sum_fields' +export interface tournament_trophy_configs_sum_fields { + placement: (Scalars['Int'] | null) + silhouette: (Scalars['Int'] | null) + __typename: 'tournament_trophy_configs_sum_fields' } -/** update columns of table "tournament_organizers" */ -export type tournament_organizers_update_column = 'steam_id' | 'tournament_id' +/** update columns of table "tournament_trophy_configs" */ +export type tournament_trophy_configs_update_column = 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' /** aggregate var_pop on columns */ -export interface tournament_organizers_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_var_pop_fields' +export interface tournament_trophy_configs_var_pop_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_trophy_configs_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_organizers_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_var_samp_fields' +export interface tournament_trophy_configs_var_samp_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_trophy_configs_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_organizers_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_organizers_variance_fields' +export interface tournament_trophy_configs_variance_fields { + placement: (Scalars['Float'] | null) + silhouette: (Scalars['Float'] | null) + __typename: 'tournament_trophy_configs_variance_fields' } -/** columns and relationships of "tournament_stage_windows" */ -export interface tournament_stage_windows { - closes_at: (Scalars['timestamptz'] | null) - created_at: Scalars['timestamptz'] - default_match_at: (Scalars['timestamptz'] | null) +/** columns and relationships of "tournaments" */ +export interface tournaments { + /** An object relationship */ + admin: players + auto_start: Scalars['Boolean'] + /** A computed field, executes function "can_cancel_tournament" */ + can_cancel: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_close_tournament_registration" */ + can_close_registration: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_join_tournament" */ + can_join: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_open_tournament_registration" */ + can_open_registration: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_pause_tournament" */ + can_pause: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_resume_tournament" */ + can_resume: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_setup_tournament" */ + can_setup: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_start_tournament" */ + can_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'] + discord_webhook: (Scalars['String'] | null) + /** An object relationship */ + e_tournament_status: e_tournament_status + /** A computed field, executes function "tournament_has_min_teams" */ + has_min_teams: (Scalars['Boolean'] | null) id: Scalars['uuid'] - opens_at: (Scalars['timestamptz'] | null) - round: Scalars['Int'] + 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) /** An object relationship */ - stage: tournament_stages - tournament_stage_id: Scalars['uuid'] - __typename: 'tournament_stage_windows' + league_season_division: (league_season_divisions | null) + match_options_id: Scalars['uuid'] + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + name: Scalars['String'] + /** An object relationship */ + options: match_options + organizer_steam_id: Scalars['bigint'] + /** An array relationship */ + organizers: tournament_organizers[] + /** An aggregate relationship */ + organizers_aggregate: tournament_organizers_aggregate + /** An array relationship */ + player_stats: v_tournament_player_stats[] + /** An aggregate relationship */ + player_stats_aggregate: v_tournament_player_stats_aggregate + /** An array relationship */ + results: v_team_tournament_results[] + /** An aggregate relationship */ + results_aggregate: v_team_tournament_results_aggregate + /** An array relationship */ + rosters: tournament_team_roster[] + /** An aggregate relationship */ + rosters_aggregate: tournament_team_roster_aggregate + scheduling_mode: Scalars['String'] + /** An array relationship */ + stages: tournament_stages[] + /** An aggregate relationship */ + stages_aggregate: tournament_stages_aggregate + start: Scalars['timestamptz'] + status: e_tournament_status_enum + /** An array relationship */ + teams: tournament_teams[] + /** An aggregate relationship */ + teams_aggregate: tournament_teams_aggregate + /** An array relationship */ + trophies: tournament_trophies[] + /** An aggregate relationship */ + trophies_aggregate: tournament_trophies_aggregate + trophies_enabled: Scalars['Boolean'] + /** An array relationship */ + trophy_configs: tournament_trophy_configs[] + /** An aggregate relationship */ + trophy_configs_aggregate: tournament_trophy_configs_aggregate + __typename: 'tournaments' } -/** aggregated selection of "tournament_stage_windows" */ -export interface tournament_stage_windows_aggregate { - aggregate: (tournament_stage_windows_aggregate_fields | null) - nodes: tournament_stage_windows[] - __typename: 'tournament_stage_windows_aggregate' +/** aggregated selection of "tournaments" */ +export interface tournaments_aggregate { + aggregate: (tournaments_aggregate_fields | null) + nodes: tournaments[] + __typename: 'tournaments_aggregate' } -/** aggregate fields of "tournament_stage_windows" */ -export interface tournament_stage_windows_aggregate_fields { - avg: (tournament_stage_windows_avg_fields | null) +/** aggregate fields of "tournaments" */ +export interface tournaments_aggregate_fields { + avg: (tournaments_avg_fields | null) count: Scalars['Int'] - max: (tournament_stage_windows_max_fields | null) - min: (tournament_stage_windows_min_fields | null) - stddev: (tournament_stage_windows_stddev_fields | null) - stddev_pop: (tournament_stage_windows_stddev_pop_fields | null) - stddev_samp: (tournament_stage_windows_stddev_samp_fields | null) - sum: (tournament_stage_windows_sum_fields | null) - var_pop: (tournament_stage_windows_var_pop_fields | null) - var_samp: (tournament_stage_windows_var_samp_fields | null) - variance: (tournament_stage_windows_variance_fields | null) - __typename: 'tournament_stage_windows_aggregate_fields' + max: (tournaments_max_fields | null) + min: (tournaments_min_fields | null) + stddev: (tournaments_stddev_fields | null) + stddev_pop: (tournaments_stddev_pop_fields | null) + stddev_samp: (tournaments_stddev_samp_fields | null) + sum: (tournaments_sum_fields | null) + var_pop: (tournaments_var_pop_fields | null) + var_samp: (tournaments_var_samp_fields | null) + variance: (tournaments_variance_fields | null) + __typename: 'tournaments_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_stage_windows_avg_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_avg_fields' +export interface tournaments_avg_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_avg_fields' } -/** unique or primary key constraints on table "tournament_stage_windows" */ -export type tournament_stage_windows_constraint = 'tournament_stage_windows_pkey' | 'tournament_stage_windows_tournament_stage_id_round_key' +/** unique or primary key constraints on table "tournaments" */ +export type tournaments_constraint = 'tournaments_match_options_id_key' | 'tournaments_pkey' /** aggregate max on columns */ -export interface tournament_stage_windows_max_fields { - closes_at: (Scalars['timestamptz'] | null) +export interface tournaments_max_fields { created_at: (Scalars['timestamptz'] | null) - default_match_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) id: (Scalars['uuid'] | null) - opens_at: (Scalars['timestamptz'] | null) - round: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - __typename: 'tournament_stage_windows_max_fields' + match_options_id: (Scalars['uuid'] | 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + scheduling_mode: (Scalars['String'] | null) + start: (Scalars['timestamptz'] | null) + __typename: 'tournaments_max_fields' } /** aggregate min on columns */ -export interface tournament_stage_windows_min_fields { - closes_at: (Scalars['timestamptz'] | null) +export interface tournaments_min_fields { created_at: (Scalars['timestamptz'] | null) - default_match_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) id: (Scalars['uuid'] | null) - opens_at: (Scalars['timestamptz'] | null) - round: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - __typename: 'tournament_stage_windows_min_fields' + match_options_id: (Scalars['uuid'] | 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + scheduling_mode: (Scalars['String'] | null) + start: (Scalars['timestamptz'] | null) + __typename: 'tournaments_min_fields' } -/** response of any mutation on the table "tournament_stage_windows" */ -export interface tournament_stage_windows_mutation_response { +/** response of any mutation on the table "tournaments" */ +export interface tournaments_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: tournament_stage_windows[] - __typename: 'tournament_stage_windows_mutation_response' + returning: tournaments[] + __typename: 'tournaments_mutation_response' } -/** select columns of table "tournament_stage_windows" */ -export type tournament_stage_windows_select_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' +/** 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' + + +/** select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_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_bool_or_arguments_columns" columns of table "tournaments" */ +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' /** aggregate stddev on columns */ -export interface tournament_stage_windows_stddev_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_stddev_fields' +export interface tournaments_stddev_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_stage_windows_stddev_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_stddev_pop_fields' +export interface tournaments_stddev_pop_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_stage_windows_stddev_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_stddev_samp_fields' +export interface tournaments_stddev_samp_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_stage_windows_sum_fields { - round: (Scalars['Int'] | null) - __typename: 'tournament_stage_windows_sum_fields' +export interface tournaments_sum_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + __typename: 'tournaments_sum_fields' } -/** update columns of table "tournament_stage_windows" */ -export type tournament_stage_windows_update_column = 'closes_at' | 'created_at' | 'default_match_at' | 'id' | 'opens_at' | 'round' | 'tournament_stage_id' +/** 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' /** aggregate var_pop on columns */ -export interface tournament_stage_windows_var_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_var_pop_fields' +export interface tournaments_var_pop_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_stage_windows_var_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_var_samp_fields' +export interface tournaments_var_samp_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_stage_windows_variance_fields { - round: (Scalars['Float'] | null) - __typename: 'tournament_stage_windows_variance_fields' +export interface tournaments_variance_fields { + /** 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" */ + min_players_per_lineup: (Scalars['Int'] | null) + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'tournaments_variance_fields' } -/** columns and relationships of "tournament_stages" */ -export interface tournament_stages { - /** An array relationship */ - brackets: tournament_brackets[] - /** An aggregate relationship */ - brackets_aggregate: tournament_brackets_aggregate - decider_best_of: (Scalars['Int'] | null) - default_best_of: Scalars['Int'] - /** An object relationship */ - e_tournament_stage_type: e_tournament_stage_types - groups: (Scalars['Int'] | null) - id: Scalars['uuid'] - match_options_id: (Scalars['uuid'] | null) - max_rounds: (Scalars['Int'] | null) - max_teams: Scalars['Int'] - min_teams: Scalars['Int'] +/** columns and relationships of "v_event_player_stats" */ +export interface v_event_player_stats { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) /** An object relationship */ - options: (match_options | null) - order: Scalars['Int'] - /** An array relationship */ - results: v_team_stage_results[] - /** An aggregate relationship */ - results_aggregate: v_team_stage_results_aggregate - settings: (Scalars['jsonb'] | null) - swiss_no_elimination: Scalars['Boolean'] - third_place_match: Scalars['Boolean'] + event: (events | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - type: e_tournament_stage_types_enum - /** An array relationship */ - windows: tournament_stage_windows[] - /** An aggregate relationship */ - windows_aggregate: tournament_stage_windows_aggregate - __typename: 'tournament_stages' + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats' } -/** aggregated selection of "tournament_stages" */ -export interface tournament_stages_aggregate { - aggregate: (tournament_stages_aggregate_fields | null) - nodes: tournament_stages[] - __typename: 'tournament_stages_aggregate' +/** aggregated selection of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate { + aggregate: (v_event_player_stats_aggregate_fields | null) + nodes: v_event_player_stats[] + __typename: 'v_event_player_stats_aggregate' } -/** aggregate fields of "tournament_stages" */ -export interface tournament_stages_aggregate_fields { - avg: (tournament_stages_avg_fields | null) +/** aggregate fields of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_fields { + avg: (v_event_player_stats_avg_fields | null) count: Scalars['Int'] - max: (tournament_stages_max_fields | null) - min: (tournament_stages_min_fields | null) - stddev: (tournament_stages_stddev_fields | null) - stddev_pop: (tournament_stages_stddev_pop_fields | null) - stddev_samp: (tournament_stages_stddev_samp_fields | null) - sum: (tournament_stages_sum_fields | null) - var_pop: (tournament_stages_var_pop_fields | null) - var_samp: (tournament_stages_var_samp_fields | null) - variance: (tournament_stages_variance_fields | null) - __typename: 'tournament_stages_aggregate_fields' + max: (v_event_player_stats_max_fields | null) + min: (v_event_player_stats_min_fields | null) + stddev: (v_event_player_stats_stddev_fields | null) + stddev_pop: (v_event_player_stats_stddev_pop_fields | null) + stddev_samp: (v_event_player_stats_stddev_samp_fields | null) + sum: (v_event_player_stats_sum_fields | null) + var_pop: (v_event_player_stats_var_pop_fields | null) + var_samp: (v_event_player_stats_var_samp_fields | null) + variance: (v_event_player_stats_variance_fields | null) + __typename: 'v_event_player_stats_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_stages_avg_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_avg_fields' +export interface v_event_player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_avg_fields' } -/** unique or primary key constraints on table "tournament_stages" */ -export type tournament_stages_constraint = 'tournament_stages_pkey' - - /** aggregate max on columns */ -export interface tournament_stages_max_fields { - 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) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_stages_max_fields' +export interface v_event_player_stats_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_max_fields' } /** aggregate min on columns */ -export interface tournament_stages_min_fields { - 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) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_stages_min_fields' +export interface v_event_player_stats_min_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_min_fields' } -/** response of any mutation on the table "tournament_stages" */ -export interface tournament_stages_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_stages[] - __typename: 'tournament_stages_mutation_response' -} +/** select columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column = 'assists' | 'deaths' | 'event_id' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'matches_played' | 'player_steam_id' -/** 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' +/** select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' -/** select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" */ -export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_and_arguments_columns = 'swiss_no_elimination' | 'third_place_match' +/** select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' -/** select "tournament_stages_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_stages" */ -export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns = 'swiss_no_elimination' | 'third_place_match' +/** select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' /** aggregate stddev on columns */ -export interface tournament_stages_stddev_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_stddev_fields' +export interface v_event_player_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_stages_stddev_pop_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_stddev_pop_fields' +export interface v_event_player_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_stages_stddev_samp_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_stddev_samp_fields' +export interface v_event_player_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_stages_sum_fields { - 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) - __typename: 'tournament_stages_sum_fields' +export interface v_event_player_stats_sum_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_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' - - /** aggregate var_pop on columns */ -export interface tournament_stages_var_pop_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_var_pop_fields' +export interface v_event_player_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_stages_var_samp_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_var_samp_fields' +export interface v_event_player_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_stages_variance_fields { - decider_best_of: (Scalars['Float'] | null) - default_best_of: (Scalars['Float'] | null) - groups: (Scalars['Float'] | null) - max_rounds: (Scalars['Float'] | null) - max_teams: (Scalars['Float'] | null) - min_teams: (Scalars['Float'] | null) - order: (Scalars['Float'] | null) - __typename: 'tournament_stages_variance_fields' +export interface v_event_player_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_variance_fields' } -/** columns and relationships of "tournament_team_invites" */ -export interface tournament_team_invites { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - /** An object relationship */ - invited_by: players - invited_by_player_steam_id: Scalars['bigint'] - /** An object relationship */ - player: players - steam_id: Scalars['bigint'] - /** An object relationship */ - team: tournament_teams - tournament_team_id: Scalars['uuid'] - __typename: 'tournament_team_invites' +/** columns and relationships of "v_gpu_pool_status" */ +export interface v_gpu_pool_status { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_in_progress: (Scalars['Boolean'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + highlights_in_progress: (Scalars['Boolean'] | null) + id: (Scalars['Int'] | null) + live_in_progress: (Scalars['Boolean'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + renders_paused_for_active_match: (Scalars['Boolean'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status' } -/** aggregated selection of "tournament_team_invites" */ -export interface tournament_team_invites_aggregate { - aggregate: (tournament_team_invites_aggregate_fields | null) - nodes: tournament_team_invites[] - __typename: 'tournament_team_invites_aggregate' +/** aggregated selection of "v_gpu_pool_status" */ +export interface v_gpu_pool_status_aggregate { + aggregate: (v_gpu_pool_status_aggregate_fields | null) + nodes: v_gpu_pool_status[] + __typename: 'v_gpu_pool_status_aggregate' } -/** aggregate fields of "tournament_team_invites" */ -export interface tournament_team_invites_aggregate_fields { - avg: (tournament_team_invites_avg_fields | null) +/** aggregate fields of "v_gpu_pool_status" */ +export interface v_gpu_pool_status_aggregate_fields { + avg: (v_gpu_pool_status_avg_fields | null) count: Scalars['Int'] - max: (tournament_team_invites_max_fields | null) - min: (tournament_team_invites_min_fields | null) - stddev: (tournament_team_invites_stddev_fields | null) - stddev_pop: (tournament_team_invites_stddev_pop_fields | null) - stddev_samp: (tournament_team_invites_stddev_samp_fields | null) - sum: (tournament_team_invites_sum_fields | null) - var_pop: (tournament_team_invites_var_pop_fields | null) - var_samp: (tournament_team_invites_var_samp_fields | null) - variance: (tournament_team_invites_variance_fields | null) - __typename: 'tournament_team_invites_aggregate_fields' + max: (v_gpu_pool_status_max_fields | null) + min: (v_gpu_pool_status_min_fields | null) + stddev: (v_gpu_pool_status_stddev_fields | null) + stddev_pop: (v_gpu_pool_status_stddev_pop_fields | null) + stddev_samp: (v_gpu_pool_status_stddev_samp_fields | null) + sum: (v_gpu_pool_status_sum_fields | null) + var_pop: (v_gpu_pool_status_var_pop_fields | null) + var_samp: (v_gpu_pool_status_var_samp_fields | null) + variance: (v_gpu_pool_status_variance_fields | null) + __typename: 'v_gpu_pool_status_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_team_invites_avg_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_avg_fields' +export interface v_gpu_pool_status_avg_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_avg_fields' } -/** unique or primary key constraints on table "tournament_team_invites" */ -export type tournament_team_invites_constraint = 'tournament_team_invites_pkey' | 'tournament_team_invites_steam_id_tournament_team_id_key' - - /** aggregate max on columns */ -export interface tournament_team_invites_max_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_invites_max_fields' +export interface v_gpu_pool_status_max_fields { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status_max_fields' } /** aggregate min on columns */ -export interface tournament_team_invites_min_fields { - created_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_invites_min_fields' -} - - -/** response of any mutation on the table "tournament_team_invites" */ -export interface tournament_team_invites_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_team_invites[] - __typename: 'tournament_team_invites_mutation_response' +export interface v_gpu_pool_status_min_fields { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status_min_fields' } -/** select columns of table "tournament_team_invites" */ -export type tournament_team_invites_select_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' +/** select columns of table "v_gpu_pool_status" */ +export type v_gpu_pool_status_select_column = 'demo_free_gpu_nodes' | 'demo_in_progress' | 'demo_total_gpu_nodes' | 'free_gpu_nodes' | 'free_gpu_nodes_for_batch' | 'highlights_in_progress' | 'id' | 'live_in_progress' | 'registered_gpu_nodes' | 'rendering_total_gpu_nodes' | 'renders_paused_for_active_match' | 'streaming_free_gpu_nodes' | 'streaming_total_gpu_nodes' | 'total_gpu_nodes' /** aggregate stddev on columns */ -export interface tournament_team_invites_stddev_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_stddev_fields' +export interface v_gpu_pool_status_stddev_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_team_invites_stddev_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_stddev_pop_fields' +export interface v_gpu_pool_status_stddev_pop_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_team_invites_stddev_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_stddev_samp_fields' +export interface v_gpu_pool_status_stddev_samp_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_team_invites_sum_fields { - invited_by_player_steam_id: (Scalars['bigint'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_team_invites_sum_fields' +export interface v_gpu_pool_status_sum_fields { + demo_free_gpu_nodes: (Scalars['Int'] | null) + demo_total_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes: (Scalars['Int'] | null) + free_gpu_nodes_for_batch: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + registered_gpu_nodes: (Scalars['Int'] | null) + rendering_total_gpu_nodes: (Scalars['Int'] | null) + streaming_free_gpu_nodes: (Scalars['Int'] | null) + streaming_total_gpu_nodes: (Scalars['Int'] | null) + total_gpu_nodes: (Scalars['Int'] | null) + __typename: 'v_gpu_pool_status_sum_fields' } -/** update columns of table "tournament_team_invites" */ -export type tournament_team_invites_update_column = 'created_at' | 'id' | 'invited_by_player_steam_id' | 'steam_id' | 'tournament_team_id' - - /** aggregate var_pop on columns */ -export interface tournament_team_invites_var_pop_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_var_pop_fields' +export interface v_gpu_pool_status_var_pop_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_team_invites_var_samp_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_var_samp_fields' +export interface v_gpu_pool_status_var_samp_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_team_invites_variance_fields { - invited_by_player_steam_id: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_invites_variance_fields' +export interface v_gpu_pool_status_variance_fields { + demo_free_gpu_nodes: (Scalars['Float'] | null) + demo_total_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes: (Scalars['Float'] | null) + free_gpu_nodes_for_batch: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + registered_gpu_nodes: (Scalars['Float'] | null) + rendering_total_gpu_nodes: (Scalars['Float'] | null) + streaming_free_gpu_nodes: (Scalars['Float'] | null) + streaming_total_gpu_nodes: (Scalars['Float'] | null) + total_gpu_nodes: (Scalars['Float'] | null) + __typename: 'v_gpu_pool_status_variance_fields' } -/** columns and relationships of "tournament_team_roster" */ -export interface tournament_team_roster { - /** An object relationship */ - e_team_role: e_team_roles +/** columns and relationships of "v_league_division_standings" */ +export interface v_league_division_standings { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) /** An object relationship */ - player: players - player_steam_id: Scalars['bigint'] - role: e_team_roles_enum + league_team: (league_teams | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] + season_division: (league_season_divisions | null) /** An object relationship */ - tournament_team: tournament_teams - tournament_team_id: Scalars['uuid'] - __typename: 'tournament_team_roster' + team_season: (league_team_seasons | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings' } -/** aggregated selection of "tournament_team_roster" */ -export interface tournament_team_roster_aggregate { - aggregate: (tournament_team_roster_aggregate_fields | null) - nodes: tournament_team_roster[] - __typename: 'tournament_team_roster_aggregate' +/** aggregated selection of "v_league_division_standings" */ +export interface v_league_division_standings_aggregate { + aggregate: (v_league_division_standings_aggregate_fields | null) + nodes: v_league_division_standings[] + __typename: 'v_league_division_standings_aggregate' } -/** aggregate fields of "tournament_team_roster" */ -export interface tournament_team_roster_aggregate_fields { - avg: (tournament_team_roster_avg_fields | null) +/** aggregate fields of "v_league_division_standings" */ +export interface v_league_division_standings_aggregate_fields { + avg: (v_league_division_standings_avg_fields | null) count: Scalars['Int'] - max: (tournament_team_roster_max_fields | null) - min: (tournament_team_roster_min_fields | null) - stddev: (tournament_team_roster_stddev_fields | null) - stddev_pop: (tournament_team_roster_stddev_pop_fields | null) - stddev_samp: (tournament_team_roster_stddev_samp_fields | null) - sum: (tournament_team_roster_sum_fields | null) - var_pop: (tournament_team_roster_var_pop_fields | null) - var_samp: (tournament_team_roster_var_samp_fields | null) - variance: (tournament_team_roster_variance_fields | null) - __typename: 'tournament_team_roster_aggregate_fields' + max: (v_league_division_standings_max_fields | null) + min: (v_league_division_standings_min_fields | null) + stddev: (v_league_division_standings_stddev_fields | null) + stddev_pop: (v_league_division_standings_stddev_pop_fields | null) + stddev_samp: (v_league_division_standings_stddev_samp_fields | null) + sum: (v_league_division_standings_sum_fields | null) + var_pop: (v_league_division_standings_var_pop_fields | null) + var_samp: (v_league_division_standings_var_samp_fields | null) + variance: (v_league_division_standings_variance_fields | null) + __typename: 'v_league_division_standings_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_team_roster_avg_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_avg_fields' +export interface v_league_division_standings_avg_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_avg_fields' } -/** unique or primary key constraints on table "tournament_team_roster" */ -export type tournament_team_roster_constraint = 'tournament_roster_pkey' | 'tournament_roster_player_steam_id_tournament_id_key' - - /** aggregate max on columns */ -export interface tournament_team_roster_max_fields { - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) +export interface v_league_division_standings_max_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_roster_max_fields' + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings_max_fields' } /** aggregate min on columns */ -export interface tournament_team_roster_min_fields { - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) +export interface v_league_division_standings_min_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_team_roster_min_fields' -} - - -/** response of any mutation on the table "tournament_team_roster" */ -export interface tournament_team_roster_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_team_roster[] - __typename: 'tournament_team_roster_mutation_response' + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings_min_fields' } -/** select columns of table "tournament_team_roster" */ -export type tournament_team_roster_select_column = 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' +/** select columns of table "v_league_division_standings" */ +export type v_league_division_standings_select_column = 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'rank' | 'round_diff' | 'rounds_lost' | 'rounds_won' | 'tournament_team_id' | 'wins' /** aggregate stddev on columns */ -export interface tournament_team_roster_stddev_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_stddev_fields' +export interface v_league_division_standings_stddev_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_team_roster_stddev_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_stddev_pop_fields' +export interface v_league_division_standings_stddev_pop_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_team_roster_stddev_samp_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_stddev_samp_fields' +export interface v_league_division_standings_stddev_samp_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_team_roster_sum_fields { +export interface v_league_division_standings_sum_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + round_diff: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_league_division_standings_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_league_division_standings_var_pop_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_league_division_standings_var_samp_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_league_division_standings_variance_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + round_diff: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_league_division_standings_variance_fields' +} + + +/** columns and relationships of "v_league_season_player_stats" */ +export interface v_league_season_player_stats { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + /** An object relationship */ + league_team: (league_teams | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + matches_played: (Scalars['Int'] | null) + /** An object relationship */ + player: (players | null) player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_team_roster_sum_fields' + __typename: 'v_league_season_player_stats' } -/** update columns of table "tournament_team_roster" */ -export type tournament_team_roster_update_column = 'player_steam_id' | 'role' | 'tournament_id' | 'tournament_team_id' +/** aggregated selection of "v_league_season_player_stats" */ +export interface v_league_season_player_stats_aggregate { + aggregate: (v_league_season_player_stats_aggregate_fields | null) + nodes: v_league_season_player_stats[] + __typename: 'v_league_season_player_stats_aggregate' +} -/** aggregate var_pop on columns */ -export interface tournament_team_roster_var_pop_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_var_pop_fields' +/** aggregate fields of "v_league_season_player_stats" */ +export interface v_league_season_player_stats_aggregate_fields { + avg: (v_league_season_player_stats_avg_fields | null) + count: Scalars['Int'] + max: (v_league_season_player_stats_max_fields | null) + min: (v_league_season_player_stats_min_fields | null) + stddev: (v_league_season_player_stats_stddev_fields | null) + stddev_pop: (v_league_season_player_stats_stddev_pop_fields | null) + stddev_samp: (v_league_season_player_stats_stddev_samp_fields | null) + sum: (v_league_season_player_stats_sum_fields | null) + var_pop: (v_league_season_player_stats_var_pop_fields | null) + var_samp: (v_league_season_player_stats_var_samp_fields | null) + variance: (v_league_season_player_stats_variance_fields | null) + __typename: 'v_league_season_player_stats_aggregate_fields' } -/** aggregate var_samp on columns */ -export interface tournament_team_roster_var_samp_fields { +/** aggregate avg on columns */ +export interface v_league_season_player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_var_samp_fields' + __typename: 'v_league_season_player_stats_avg_fields' } -/** aggregate variance on columns */ -export interface tournament_team_roster_variance_fields { - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_team_roster_variance_fields' +/** aggregate max on columns */ +export interface v_league_season_player_stats_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_league_season_player_stats_max_fields' } -/** columns and relationships of "tournament_teams" */ -export interface tournament_teams { - /** A computed field, executes function "can_manage_tournament_team" */ - can_manage: (Scalars['Boolean'] | null) - /** An object relationship */ - captain: (players | null) - captain_steam_id: (Scalars['bigint'] | null) - created_at: Scalars['timestamptz'] - /** An object relationship */ - creator: players - eligible_at: (Scalars['timestamptz'] | null) - id: Scalars['uuid'] - /** An array relationship */ - invites: tournament_team_invites[] - /** An aggregate relationship */ - invites_aggregate: tournament_team_invites_aggregate - name: (Scalars['String'] | null) - owner_steam_id: Scalars['bigint'] - /** An object relationship */ - results: (v_team_stage_results | null) - /** An array relationship */ - roster: tournament_team_roster[] - /** An aggregate relationship */ - roster_aggregate: tournament_team_roster_aggregate - seed: (Scalars['Int'] | null) - short_name: (Scalars['String'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - __typename: 'tournament_teams' +/** aggregate min on columns */ +export interface v_league_season_player_stats_min_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + league_division_id: (Scalars['uuid'] | null) + league_season_division_id: (Scalars['uuid'] | null) + league_season_id: (Scalars['uuid'] | null) + league_team_id: (Scalars['uuid'] | null) + league_team_season_id: (Scalars['uuid'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_league_season_player_stats_min_fields' } -/** aggregated selection of "tournament_teams" */ -export interface tournament_teams_aggregate { - aggregate: (tournament_teams_aggregate_fields | null) - nodes: tournament_teams[] - __typename: 'tournament_teams_aggregate' -} +/** select columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'matches_played' | 'player_steam_id' -/** aggregate fields of "tournament_teams" */ -export interface tournament_teams_aggregate_fields { - avg: (tournament_teams_avg_fields | null) - count: Scalars['Int'] - max: (tournament_teams_max_fields | null) - min: (tournament_teams_min_fields | null) - stddev: (tournament_teams_stddev_fields | null) - stddev_pop: (tournament_teams_stddev_pop_fields | null) - stddev_samp: (tournament_teams_stddev_samp_fields | null) - sum: (tournament_teams_sum_fields | null) - var_pop: (tournament_teams_var_pop_fields | null) - var_samp: (tournament_teams_var_samp_fields | null) - variance: (tournament_teams_variance_fields | null) - __typename: 'tournament_teams_aggregate_fields' -} +/** select "v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' -/** aggregate avg on columns */ -export interface tournament_teams_avg_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_avg_fields' -} +/** select "v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' -/** unique or primary key constraints on table "tournament_teams" */ -export type tournament_teams_constraint = 'tournament_teams_creator_steam_id_tournament_id_key' | 'tournament_teams_pkey' | 'tournament_teams_tournament_id_name_key' | 'tournament_teams_tournament_id_seed_key' | 'tournament_teams_tournament_id_team_id_key' +/** select "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' -/** aggregate max on columns */ -export interface tournament_teams_max_fields { - captain_steam_id: (Scalars['bigint'] | null) - created_at: (Scalars['timestamptz'] | null) - eligible_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - seed: (Scalars['Int'] | null) - short_name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_teams_max_fields' -} +/** select "v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' -/** aggregate min on columns */ -export interface tournament_teams_min_fields { - captain_steam_id: (Scalars['bigint'] | null) - created_at: (Scalars['timestamptz'] | null) - eligible_at: (Scalars['timestamptz'] | null) - id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - owner_steam_id: (Scalars['bigint'] | null) - seed: (Scalars['Int'] | null) - short_name: (Scalars['String'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'tournament_teams_min_fields' -} +/** select "v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' -/** response of any mutation on the table "tournament_teams" */ -export interface tournament_teams_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_teams[] - __typename: 'tournament_teams_mutation_response' -} +/** select "v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' -/** select columns of table "tournament_teams" */ -export type tournament_teams_select_column = 'captain_steam_id' | 'created_at' | 'eligible_at' | 'id' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' +/** select "v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_league_season_player_stats" */ +export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' /** aggregate stddev on columns */ -export interface tournament_teams_stddev_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_stddev_fields' +export interface v_league_season_player_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_teams_stddev_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_stddev_pop_fields' +export interface v_league_season_player_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_teams_stddev_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_stddev_samp_fields' +export interface v_league_season_player_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_teams_sum_fields { - captain_steam_id: (Scalars['bigint'] | null) - owner_steam_id: (Scalars['bigint'] | null) - seed: (Scalars['Int'] | null) - __typename: 'tournament_teams_sum_fields' +export interface v_league_season_player_stats_sum_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_league_season_player_stats_sum_fields' } -/** update columns of table "tournament_teams" */ -export type tournament_teams_update_column = 'captain_steam_id' | 'created_at' | 'eligible_at' | 'id' | 'name' | 'owner_steam_id' | 'seed' | 'short_name' | 'team_id' | 'tournament_id' - - /** aggregate var_pop on columns */ -export interface tournament_teams_var_pop_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_var_pop_fields' +export interface v_league_season_player_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_teams_var_samp_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_var_samp_fields' +export interface v_league_season_player_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_teams_variance_fields { - captain_steam_id: (Scalars['Float'] | null) - owner_steam_id: (Scalars['Float'] | null) - seed: (Scalars['Float'] | null) - __typename: 'tournament_teams_variance_fields' +export interface v_league_season_player_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_league_season_player_stats_variance_fields' } -/** columns and relationships of "tournament_trophies" */ -export interface tournament_trophies { - created_at: Scalars['timestamptz'] - id: Scalars['uuid'] - manual: Scalars['Boolean'] - placement: Scalars['Int'] - placement_tier: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] +/** columns and relationships of "v_match_captains" */ +export interface v_match_captains { + captain: (Scalars['Boolean'] | null) + discord_id: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) /** An object relationship */ - tournament_team: tournament_teams - tournament_team_id: Scalars['uuid'] + lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) /** An object relationship */ - trophy_config: (tournament_trophy_configs | null) - __typename: 'tournament_trophies' + player: (players | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains' } -/** aggregated selection of "tournament_trophies" */ -export interface tournament_trophies_aggregate { - aggregate: (tournament_trophies_aggregate_fields | null) - nodes: tournament_trophies[] - __typename: 'tournament_trophies_aggregate' +/** aggregated selection of "v_match_captains" */ +export interface v_match_captains_aggregate { + aggregate: (v_match_captains_aggregate_fields | null) + nodes: v_match_captains[] + __typename: 'v_match_captains_aggregate' } -/** aggregate fields of "tournament_trophies" */ -export interface tournament_trophies_aggregate_fields { - avg: (tournament_trophies_avg_fields | null) +/** aggregate fields of "v_match_captains" */ +export interface v_match_captains_aggregate_fields { + avg: (v_match_captains_avg_fields | null) count: Scalars['Int'] - max: (tournament_trophies_max_fields | null) - min: (tournament_trophies_min_fields | null) - stddev: (tournament_trophies_stddev_fields | null) - stddev_pop: (tournament_trophies_stddev_pop_fields | null) - stddev_samp: (tournament_trophies_stddev_samp_fields | null) - sum: (tournament_trophies_sum_fields | null) - var_pop: (tournament_trophies_var_pop_fields | null) - var_samp: (tournament_trophies_var_samp_fields | null) - variance: (tournament_trophies_variance_fields | null) - __typename: 'tournament_trophies_aggregate_fields' + max: (v_match_captains_max_fields | null) + min: (v_match_captains_min_fields | null) + stddev: (v_match_captains_stddev_fields | null) + stddev_pop: (v_match_captains_stddev_pop_fields | null) + stddev_samp: (v_match_captains_stddev_samp_fields | null) + sum: (v_match_captains_sum_fields | null) + var_pop: (v_match_captains_var_pop_fields | null) + var_samp: (v_match_captains_var_samp_fields | null) + variance: (v_match_captains_variance_fields | null) + __typename: 'v_match_captains_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_trophies_avg_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_avg_fields' +export interface v_match_captains_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_avg_fields' } -/** unique or primary key constraints on table "tournament_trophies" */ -export type tournament_trophies_constraint = 'tournament_trophies_one_mvp_per_tournament' | 'tournament_trophies_pkey' | 'tournament_trophies_player_recipient_key' | 'tournament_trophies_team_recipient_key' - - /** aggregate max on columns */ -export interface tournament_trophies_max_fields { - created_at: (Scalars['timestamptz'] | null) +export interface v_match_captains_max_fields { + discord_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - placement: (Scalars['Int'] | null) - placement_tier: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_trophies_max_fields' + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains_max_fields' } /** aggregate min on columns */ -export interface tournament_trophies_min_fields { - created_at: (Scalars['timestamptz'] | null) +export interface v_match_captains_min_fields { + discord_id: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - placement: (Scalars['Int'] | null) - placement_tier: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - __typename: 'tournament_trophies_min_fields' + match_lineup_id: (Scalars['uuid'] | null) + placeholder_name: (Scalars['String'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains_min_fields' } -/** response of any mutation on the table "tournament_trophies" */ -export interface tournament_trophies_mutation_response { +/** response of any mutation on the table "v_match_captains" */ +export interface v_match_captains_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: tournament_trophies[] - __typename: 'tournament_trophies_mutation_response' + returning: v_match_captains[] + __typename: 'v_match_captains_mutation_response' } -/** select columns of table "tournament_trophies" */ -export type tournament_trophies_select_column = 'created_at' | 'id' | 'manual' | 'placement' | 'placement_tier' | 'player_steam_id' | 'team_id' | 'tournament_id' | 'tournament_team_id' - - -/** select "tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_trophies" */ -export type tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_and_arguments_columns = 'manual' - - -/** select "tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns" columns of table "tournament_trophies" */ -export type tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns = 'manual' +/** select columns of table "v_match_captains" */ +export type v_match_captains_select_column = 'captain' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' /** aggregate stddev on columns */ -export interface tournament_trophies_stddev_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_stddev_fields' +export interface v_match_captains_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_trophies_stddev_pop_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_stddev_pop_fields' +export interface v_match_captains_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_trophies_stddev_samp_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_stddev_samp_fields' +export interface v_match_captains_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_trophies_sum_fields { - placement: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'tournament_trophies_sum_fields' +export interface v_match_captains_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_captains_sum_fields' } -/** update columns of table "tournament_trophies" */ -export type tournament_trophies_update_column = 'created_at' | 'id' | 'manual' | 'placement' | 'player_steam_id' | 'team_id' | 'tournament_id' | 'tournament_team_id' - - /** aggregate var_pop on columns */ -export interface tournament_trophies_var_pop_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_var_pop_fields' +export interface v_match_captains_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_trophies_var_samp_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_var_samp_fields' +export interface v_match_captains_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_trophies_variance_fields { - placement: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'tournament_trophies_variance_fields' +export interface v_match_captains_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_match_captains_variance_fields' } -/** columns and relationships of "tournament_trophy_configs" */ -export interface tournament_trophy_configs { - created_at: Scalars['timestamptz'] - custom_name: (Scalars['String'] | null) - id: Scalars['uuid'] - image_url: (Scalars['String'] | null) - placement: Scalars['Int'] - silhouette: (Scalars['Int'] | null) +/** columns and relationships of "v_match_clutches" */ +export interface v_match_clutches { + against_count: (Scalars['Int'] | null) /** An object relationship */ - tournament: tournaments - tournament_id: Scalars['uuid'] - updated_at: Scalars['timestamptz'] - __typename: 'tournament_trophy_configs' + clutcher: (players | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + outcome: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + __typename: 'v_match_clutches' } -/** aggregated selection of "tournament_trophy_configs" */ -export interface tournament_trophy_configs_aggregate { - aggregate: (tournament_trophy_configs_aggregate_fields | null) - nodes: tournament_trophy_configs[] - __typename: 'tournament_trophy_configs_aggregate' +/** aggregated selection of "v_match_clutches" */ +export interface v_match_clutches_aggregate { + aggregate: (v_match_clutches_aggregate_fields | null) + nodes: v_match_clutches[] + __typename: 'v_match_clutches_aggregate' } -/** aggregate fields of "tournament_trophy_configs" */ -export interface tournament_trophy_configs_aggregate_fields { - avg: (tournament_trophy_configs_avg_fields | null) +/** aggregate fields of "v_match_clutches" */ +export interface v_match_clutches_aggregate_fields { + avg: (v_match_clutches_avg_fields | null) count: Scalars['Int'] - max: (tournament_trophy_configs_max_fields | null) - min: (tournament_trophy_configs_min_fields | null) - stddev: (tournament_trophy_configs_stddev_fields | null) - stddev_pop: (tournament_trophy_configs_stddev_pop_fields | null) - stddev_samp: (tournament_trophy_configs_stddev_samp_fields | null) - sum: (tournament_trophy_configs_sum_fields | null) - var_pop: (tournament_trophy_configs_var_pop_fields | null) - var_samp: (tournament_trophy_configs_var_samp_fields | null) - variance: (tournament_trophy_configs_variance_fields | null) - __typename: 'tournament_trophy_configs_aggregate_fields' + max: (v_match_clutches_max_fields | null) + min: (v_match_clutches_min_fields | null) + stddev: (v_match_clutches_stddev_fields | null) + stddev_pop: (v_match_clutches_stddev_pop_fields | null) + stddev_samp: (v_match_clutches_stddev_samp_fields | null) + sum: (v_match_clutches_sum_fields | null) + var_pop: (v_match_clutches_var_pop_fields | null) + var_samp: (v_match_clutches_var_samp_fields | null) + variance: (v_match_clutches_variance_fields | null) + __typename: 'v_match_clutches_aggregate_fields' } /** aggregate avg on columns */ -export interface tournament_trophy_configs_avg_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_avg_fields' +export interface v_match_clutches_avg_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_avg_fields' } -/** unique or primary key constraints on table "tournament_trophy_configs" */ -export type tournament_trophy_configs_constraint = 'tournament_trophy_configs_pkey' | 'tournament_trophy_configs_tournament_id_placement_key' - - /** aggregate max on columns */ -export interface tournament_trophy_configs_max_fields { - created_at: (Scalars['timestamptz'] | null) - custom_name: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - image_url: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_trophy_configs_max_fields' +export interface v_match_clutches_max_fields { + against_count: (Scalars['Int'] | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + outcome: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + __typename: 'v_match_clutches_max_fields' } /** aggregate min on columns */ -export interface tournament_trophy_configs_min_fields { - created_at: (Scalars['timestamptz'] | null) - custom_name: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) - image_url: (Scalars['String'] | null) - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - updated_at: (Scalars['timestamptz'] | null) - __typename: 'tournament_trophy_configs_min_fields' -} - - -/** response of any mutation on the table "tournament_trophy_configs" */ -export interface tournament_trophy_configs_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournament_trophy_configs[] - __typename: 'tournament_trophy_configs_mutation_response' +export interface v_match_clutches_min_fields { + against_count: (Scalars['Int'] | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + outcome: (Scalars['String'] | null) + round: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + __typename: 'v_match_clutches_min_fields' } -/** select columns of table "tournament_trophy_configs" */ -export type tournament_trophy_configs_select_column = 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' +/** select columns of table "v_match_clutches" */ +export type v_match_clutches_select_column = 'against_count' | 'clutcher_steam_id' | 'kills_in_clutch' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'outcome' | 'round' | 'side' /** aggregate stddev on columns */ -export interface tournament_trophy_configs_stddev_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_stddev_fields' +export interface v_match_clutches_stddev_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournament_trophy_configs_stddev_pop_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_stddev_pop_fields' +export interface v_match_clutches_stddev_pop_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournament_trophy_configs_stddev_samp_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_stddev_samp_fields' +export interface v_match_clutches_stddev_samp_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournament_trophy_configs_sum_fields { - placement: (Scalars['Int'] | null) - silhouette: (Scalars['Int'] | null) - __typename: 'tournament_trophy_configs_sum_fields' +export interface v_match_clutches_sum_fields { + against_count: (Scalars['Int'] | null) + clutcher_steam_id: (Scalars['bigint'] | null) + kills_in_clutch: (Scalars['Int'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_clutches_sum_fields' } -/** update columns of table "tournament_trophy_configs" */ -export type tournament_trophy_configs_update_column = 'created_at' | 'custom_name' | 'id' | 'image_url' | 'placement' | 'silhouette' | 'tournament_id' | 'updated_at' - - /** aggregate var_pop on columns */ -export interface tournament_trophy_configs_var_pop_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_var_pop_fields' +export interface v_match_clutches_var_pop_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournament_trophy_configs_var_samp_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_var_samp_fields' +export interface v_match_clutches_var_samp_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_var_samp_fields' } /** aggregate variance on columns */ -export interface tournament_trophy_configs_variance_fields { - placement: (Scalars['Float'] | null) - silhouette: (Scalars['Float'] | null) - __typename: 'tournament_trophy_configs_variance_fields' +export interface v_match_clutches_variance_fields { + against_count: (Scalars['Float'] | null) + clutcher_steam_id: (Scalars['Float'] | null) + kills_in_clutch: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_match_clutches_variance_fields' } -/** columns and relationships of "tournaments" */ -export interface tournaments { - /** An object relationship */ - admin: players - auto_start: Scalars['Boolean'] - /** A computed field, executes function "can_cancel_tournament" */ - can_cancel: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_close_tournament_registration" */ - can_close_registration: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_join_tournament" */ - can_join: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_open_tournament_registration" */ - can_open_registration: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_pause_tournament" */ - can_pause: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_resume_tournament" */ - can_resume: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_setup_tournament" */ - can_setup: (Scalars['Boolean'] | null) - /** A computed field, executes function "can_start_tournament" */ - can_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'] - discord_webhook: (Scalars['String'] | null) - /** An object relationship */ - e_tournament_status: e_tournament_status - /** A computed field, executes function "tournament_has_min_teams" */ - has_min_teams: (Scalars['Boolean'] | 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) +/** columns and relationships of "v_match_kill_pairs" */ +export interface v_match_kill_pairs { + killer_side: (Scalars['String'] | null) + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) /** An object relationship */ - league_season_division: (league_season_divisions | null) - match_options_id: Scalars['uuid'] - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - name: Scalars['String'] + match: (matches | null) + match_id: (Scalars['uuid'] | null) /** An object relationship */ - options: match_options - organizer_steam_id: Scalars['bigint'] - /** An array relationship */ - organizers: tournament_organizers[] - /** An aggregate relationship */ - organizers_aggregate: tournament_organizers_aggregate - /** An array relationship */ - player_stats: v_tournament_player_stats[] - /** An aggregate relationship */ - player_stats_aggregate: v_tournament_player_stats_aggregate - /** An array relationship */ - results: v_team_tournament_results[] - /** An aggregate relationship */ - results_aggregate: v_team_tournament_results_aggregate - /** An array relationship */ - rosters: tournament_team_roster[] - /** An aggregate relationship */ - rosters_aggregate: tournament_team_roster_aggregate - scheduling_mode: Scalars['String'] - /** An array relationship */ - stages: tournament_stages[] - /** An aggregate relationship */ - stages_aggregate: tournament_stages_aggregate - start: Scalars['timestamptz'] - status: e_tournament_status_enum - /** An array relationship */ - teams: tournament_teams[] - /** An aggregate relationship */ - teams_aggregate: tournament_teams_aggregate - /** An array relationship */ - trophies: tournament_trophies[] - /** An aggregate relationship */ - trophies_aggregate: tournament_trophies_aggregate - trophies_enabled: Scalars['Boolean'] - /** An array relationship */ - trophy_configs: tournament_trophy_configs[] - /** An aggregate relationship */ - trophy_configs_aggregate: tournament_trophy_configs_aggregate - __typename: 'tournaments' + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + victim_side: (Scalars['String'] | null) + victim_steam_id: (Scalars['bigint'] | null) + weapon: (Scalars['String'] | null) + __typename: 'v_match_kill_pairs' } -/** aggregated selection of "tournaments" */ -export interface tournaments_aggregate { - aggregate: (tournaments_aggregate_fields | null) - nodes: tournaments[] - __typename: 'tournaments_aggregate' +/** aggregated selection of "v_match_kill_pairs" */ +export interface v_match_kill_pairs_aggregate { + aggregate: (v_match_kill_pairs_aggregate_fields | null) + nodes: v_match_kill_pairs[] + __typename: 'v_match_kill_pairs_aggregate' } -/** aggregate fields of "tournaments" */ -export interface tournaments_aggregate_fields { - avg: (tournaments_avg_fields | null) +/** aggregate fields of "v_match_kill_pairs" */ +export interface v_match_kill_pairs_aggregate_fields { + avg: (v_match_kill_pairs_avg_fields | null) count: Scalars['Int'] - max: (tournaments_max_fields | null) - min: (tournaments_min_fields | null) - stddev: (tournaments_stddev_fields | null) - stddev_pop: (tournaments_stddev_pop_fields | null) - stddev_samp: (tournaments_stddev_samp_fields | null) - sum: (tournaments_sum_fields | null) - var_pop: (tournaments_var_pop_fields | null) - var_samp: (tournaments_var_samp_fields | null) - variance: (tournaments_variance_fields | null) - __typename: 'tournaments_aggregate_fields' + max: (v_match_kill_pairs_max_fields | null) + min: (v_match_kill_pairs_min_fields | null) + stddev: (v_match_kill_pairs_stddev_fields | null) + stddev_pop: (v_match_kill_pairs_stddev_pop_fields | null) + stddev_samp: (v_match_kill_pairs_stddev_samp_fields | null) + sum: (v_match_kill_pairs_sum_fields | null) + var_pop: (v_match_kill_pairs_var_pop_fields | null) + var_samp: (v_match_kill_pairs_var_samp_fields | null) + variance: (v_match_kill_pairs_variance_fields | null) + __typename: 'v_match_kill_pairs_aggregate_fields' } /** aggregate avg on columns */ -export interface tournaments_avg_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_avg_fields' +export interface v_match_kill_pairs_avg_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_avg_fields' } -/** unique or primary key constraints on table "tournaments" */ -export type tournaments_constraint = 'tournaments_match_options_id_key' | 'tournaments_pkey' - - /** aggregate max on columns */ -export interface tournaments_max_fields { - 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) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - scheduling_mode: (Scalars['String'] | null) - start: (Scalars['timestamptz'] | null) - __typename: 'tournaments_max_fields' +export interface v_match_kill_pairs_max_fields { + killer_side: (Scalars['String'] | null) + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + victim_side: (Scalars['String'] | null) + victim_steam_id: (Scalars['bigint'] | null) + weapon: (Scalars['String'] | null) + __typename: 'v_match_kill_pairs_max_fields' } /** aggregate min on columns */ -export interface tournaments_min_fields { - 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) - id: (Scalars['uuid'] | null) - match_options_id: (Scalars['uuid'] | 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - name: (Scalars['String'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - scheduling_mode: (Scalars['String'] | null) - start: (Scalars['timestamptz'] | null) - __typename: 'tournaments_min_fields' -} - - -/** response of any mutation on the table "tournaments" */ -export interface tournaments_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: tournaments[] - __typename: 'tournaments_mutation_response' +export interface v_match_kill_pairs_min_fields { + killer_side: (Scalars['String'] | null) + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + victim_side: (Scalars['String'] | null) + victim_steam_id: (Scalars['bigint'] | null) + weapon: (Scalars['String'] | null) + __typename: 'v_match_kill_pairs_min_fields' } -/** 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' - - -/** select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" */ -export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_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_bool_or_arguments_columns" columns of table "tournaments" */ -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 columns of table "v_match_kill_pairs" */ +export type v_match_kill_pairs_select_column = 'killer_side' | 'killer_steam_id' | 'kills' | 'match_id' | 'match_map_id' | 'victim_side' | 'victim_steam_id' | 'weapon' /** aggregate stddev on columns */ -export interface tournaments_stddev_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_stddev_fields' +export interface v_match_kill_pairs_stddev_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface tournaments_stddev_pop_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_stddev_pop_fields' +export interface v_match_kill_pairs_stddev_pop_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface tournaments_stddev_samp_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_stddev_samp_fields' +export interface v_match_kill_pairs_stddev_samp_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_stddev_samp_fields' } /** aggregate sum on columns */ -export interface tournaments_sum_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['bigint'] | null) - __typename: 'tournaments_sum_fields' +export interface v_match_kill_pairs_sum_fields { + killer_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['Int'] | null) + victim_steam_id: (Scalars['bigint'] | null) + __typename: 'v_match_kill_pairs_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' - - /** aggregate var_pop on columns */ -export interface tournaments_var_pop_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_var_pop_fields' +export interface v_match_kill_pairs_var_pop_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_var_pop_fields' } /** aggregate var_samp on columns */ -export interface tournaments_var_samp_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_var_samp_fields' +export interface v_match_kill_pairs_var_samp_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_var_samp_fields' } /** aggregate variance on columns */ -export interface tournaments_variance_fields { - /** 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" */ - min_players_per_lineup: (Scalars['Int'] | null) - organizer_steam_id: (Scalars['Float'] | null) - __typename: 'tournaments_variance_fields' +export interface v_match_kill_pairs_variance_fields { + killer_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + victim_steam_id: (Scalars['Float'] | null) + __typename: 'v_match_kill_pairs_variance_fields' } -/** columns and relationships of "v_gpu_pool_status" */ -export interface v_gpu_pool_status { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_in_progress: (Scalars['Boolean'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - highlights_in_progress: (Scalars['Boolean'] | null) - id: (Scalars['Int'] | null) - live_in_progress: (Scalars['Boolean'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - renders_paused_for_active_match: (Scalars['Boolean'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status' +/** columns and relationships of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types { + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types' } -/** aggregated selection of "v_gpu_pool_status" */ -export interface v_gpu_pool_status_aggregate { - aggregate: (v_gpu_pool_status_aggregate_fields | null) - nodes: v_gpu_pool_status[] - __typename: 'v_gpu_pool_status_aggregate' +/** aggregated selection of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types_aggregate { + aggregate: (v_match_lineup_buy_types_aggregate_fields | null) + nodes: v_match_lineup_buy_types[] + __typename: 'v_match_lineup_buy_types_aggregate' } -/** aggregate fields of "v_gpu_pool_status" */ -export interface v_gpu_pool_status_aggregate_fields { - avg: (v_gpu_pool_status_avg_fields | null) +/** aggregate fields of "v_match_lineup_buy_types" */ +export interface v_match_lineup_buy_types_aggregate_fields { + avg: (v_match_lineup_buy_types_avg_fields | null) count: Scalars['Int'] - max: (v_gpu_pool_status_max_fields | null) - min: (v_gpu_pool_status_min_fields | null) - stddev: (v_gpu_pool_status_stddev_fields | null) - stddev_pop: (v_gpu_pool_status_stddev_pop_fields | null) - stddev_samp: (v_gpu_pool_status_stddev_samp_fields | null) - sum: (v_gpu_pool_status_sum_fields | null) - var_pop: (v_gpu_pool_status_var_pop_fields | null) - var_samp: (v_gpu_pool_status_var_samp_fields | null) - variance: (v_gpu_pool_status_variance_fields | null) - __typename: 'v_gpu_pool_status_aggregate_fields' + max: (v_match_lineup_buy_types_max_fields | null) + min: (v_match_lineup_buy_types_min_fields | null) + stddev: (v_match_lineup_buy_types_stddev_fields | null) + stddev_pop: (v_match_lineup_buy_types_stddev_pop_fields | null) + stddev_samp: (v_match_lineup_buy_types_stddev_samp_fields | null) + sum: (v_match_lineup_buy_types_sum_fields | null) + var_pop: (v_match_lineup_buy_types_var_pop_fields | null) + var_samp: (v_match_lineup_buy_types_var_samp_fields | null) + variance: (v_match_lineup_buy_types_variance_fields | null) + __typename: 'v_match_lineup_buy_types_aggregate_fields' } /** aggregate avg on columns */ -export interface v_gpu_pool_status_avg_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_avg_fields' +export interface v_match_lineup_buy_types_avg_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_avg_fields' } /** aggregate max on columns */ -export interface v_gpu_pool_status_max_fields { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status_max_fields' +export interface v_match_lineup_buy_types_max_fields { + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types_max_fields' } /** aggregate min on columns */ -export interface v_gpu_pool_status_min_fields { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status_min_fields' +export interface v_match_lineup_buy_types_min_fields { + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types_min_fields' } -/** select columns of table "v_gpu_pool_status" */ -export type v_gpu_pool_status_select_column = 'demo_free_gpu_nodes' | 'demo_in_progress' | 'demo_total_gpu_nodes' | 'free_gpu_nodes' | 'free_gpu_nodes_for_batch' | 'highlights_in_progress' | 'id' | 'live_in_progress' | 'registered_gpu_nodes' | 'rendering_total_gpu_nodes' | 'renders_paused_for_active_match' | 'streaming_free_gpu_nodes' | 'streaming_total_gpu_nodes' | 'total_gpu_nodes' +/** select columns of table "v_match_lineup_buy_types" */ +export type v_match_lineup_buy_types_select_column = 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'wins' /** aggregate stddev on columns */ -export interface v_gpu_pool_status_stddev_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_stddev_fields' +export interface v_match_lineup_buy_types_stddev_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_gpu_pool_status_stddev_pop_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_stddev_pop_fields' +export interface v_match_lineup_buy_types_stddev_pop_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_gpu_pool_status_stddev_samp_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_stddev_samp_fields' +export interface v_match_lineup_buy_types_stddev_samp_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_gpu_pool_status_sum_fields { - demo_free_gpu_nodes: (Scalars['Int'] | null) - demo_total_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes: (Scalars['Int'] | null) - free_gpu_nodes_for_batch: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - registered_gpu_nodes: (Scalars['Int'] | null) - rendering_total_gpu_nodes: (Scalars['Int'] | null) - streaming_free_gpu_nodes: (Scalars['Int'] | null) - streaming_total_gpu_nodes: (Scalars['Int'] | null) - total_gpu_nodes: (Scalars['Int'] | null) - __typename: 'v_gpu_pool_status_sum_fields' +export interface v_match_lineup_buy_types_sum_fields { + rounds: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_lineup_buy_types_sum_fields' } /** aggregate var_pop on columns */ -export interface v_gpu_pool_status_var_pop_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_var_pop_fields' +export interface v_match_lineup_buy_types_var_pop_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_gpu_pool_status_var_samp_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_var_samp_fields' +export interface v_match_lineup_buy_types_var_samp_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_var_samp_fields' } /** aggregate variance on columns */ -export interface v_gpu_pool_status_variance_fields { - demo_free_gpu_nodes: (Scalars['Float'] | null) - demo_total_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes: (Scalars['Float'] | null) - free_gpu_nodes_for_batch: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - registered_gpu_nodes: (Scalars['Float'] | null) - rendering_total_gpu_nodes: (Scalars['Float'] | null) - streaming_free_gpu_nodes: (Scalars['Float'] | null) - streaming_total_gpu_nodes: (Scalars['Float'] | null) - total_gpu_nodes: (Scalars['Float'] | null) - __typename: 'v_gpu_pool_status_variance_fields' +export interface v_match_lineup_buy_types_variance_fields { + rounds: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_lineup_buy_types_variance_fields' } -/** columns and relationships of "v_league_division_standings" */ -export interface v_league_division_standings { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) +/** columns and relationships of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) /** An object relationship */ - league_team: (league_teams | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) + match: (matches | null) + match_id: (Scalars['uuid'] | null) /** An object relationship */ - season_division: (league_season_divisions | null) + match_lineup: (match_lineups | null) + match_lineup_id: (Scalars['uuid'] | null) /** An object relationship */ - team_season: (league_team_seasons | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings' + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats' } -/** aggregated selection of "v_league_division_standings" */ -export interface v_league_division_standings_aggregate { - aggregate: (v_league_division_standings_aggregate_fields | null) - nodes: v_league_division_standings[] - __typename: 'v_league_division_standings_aggregate' +/** aggregated selection of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats_aggregate { + aggregate: (v_match_lineup_map_stats_aggregate_fields | null) + nodes: v_match_lineup_map_stats[] + __typename: 'v_match_lineup_map_stats_aggregate' } -/** aggregate fields of "v_league_division_standings" */ -export interface v_league_division_standings_aggregate_fields { - avg: (v_league_division_standings_avg_fields | null) +/** aggregate fields of "v_match_lineup_map_stats" */ +export interface v_match_lineup_map_stats_aggregate_fields { + avg: (v_match_lineup_map_stats_avg_fields | null) count: Scalars['Int'] - max: (v_league_division_standings_max_fields | null) - min: (v_league_division_standings_min_fields | null) - stddev: (v_league_division_standings_stddev_fields | null) - stddev_pop: (v_league_division_standings_stddev_pop_fields | null) - stddev_samp: (v_league_division_standings_stddev_samp_fields | null) - sum: (v_league_division_standings_sum_fields | null) - var_pop: (v_league_division_standings_var_pop_fields | null) - var_samp: (v_league_division_standings_var_samp_fields | null) - variance: (v_league_division_standings_variance_fields | null) - __typename: 'v_league_division_standings_aggregate_fields' + max: (v_match_lineup_map_stats_max_fields | null) + min: (v_match_lineup_map_stats_min_fields | null) + stddev: (v_match_lineup_map_stats_stddev_fields | null) + stddev_pop: (v_match_lineup_map_stats_stddev_pop_fields | null) + stddev_samp: (v_match_lineup_map_stats_stddev_samp_fields | null) + sum: (v_match_lineup_map_stats_sum_fields | null) + var_pop: (v_match_lineup_map_stats_var_pop_fields | null) + var_samp: (v_match_lineup_map_stats_var_samp_fields | null) + variance: (v_match_lineup_map_stats_variance_fields | null) + __typename: 'v_match_lineup_map_stats_aggregate_fields' } /** aggregate avg on columns */ -export interface v_league_division_standings_avg_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_avg_fields' +export interface v_match_lineup_map_stats_avg_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_avg_fields' } /** aggregate max on columns */ -export interface v_league_division_standings_max_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings_max_fields' +export interface v_match_lineup_map_stats_max_fields { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats_max_fields' } /** aggregate min on columns */ -export interface v_league_division_standings_min_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings_min_fields' +export interface v_match_lineup_map_stats_min_fields { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) + match_lineup_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats_min_fields' } -/** select columns of table "v_league_division_standings" */ -export type v_league_division_standings_select_column = 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'rank' | 'round_diff' | 'rounds_lost' | 'rounds_won' | 'tournament_team_id' | 'wins' +/** select columns of table "v_match_lineup_map_stats" */ +export type v_match_lineup_map_stats_select_column = 'man_adv_rounds' | 'man_adv_wins' | 'man_dis_rounds' | 'man_dis_wins' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'opening_attempts' | 'opening_wins' | 'pistol_rounds' | 'pistol_wins' | 'round_wins' | 'rounds' | 'side' | 'won_buy_eco' | 'won_buy_force' | 'won_buy_full' | 'won_buy_pistol' /** aggregate stddev on columns */ -export interface v_league_division_standings_stddev_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_stddev_fields' +export interface v_match_lineup_map_stats_stddev_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_league_division_standings_stddev_pop_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_stddev_pop_fields' -} - - -/** aggregate stddev_samp on columns */ -export interface v_league_division_standings_stddev_samp_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_stddev_samp_fields' +export interface v_match_lineup_map_stats_stddev_pop_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_match_lineup_map_stats_stddev_samp_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_league_division_standings_sum_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - round_diff: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_league_division_standings_sum_fields' +export interface v_match_lineup_map_stats_sum_fields { + man_adv_rounds: (Scalars['Int'] | null) + man_adv_wins: (Scalars['Int'] | null) + man_dis_rounds: (Scalars['Int'] | null) + man_dis_wins: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + opening_wins: (Scalars['Int'] | null) + pistol_rounds: (Scalars['Int'] | null) + pistol_wins: (Scalars['Int'] | null) + round_wins: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + won_buy_eco: (Scalars['Int'] | null) + won_buy_force: (Scalars['Int'] | null) + won_buy_full: (Scalars['Int'] | null) + won_buy_pistol: (Scalars['Int'] | null) + __typename: 'v_match_lineup_map_stats_sum_fields' } /** aggregate var_pop on columns */ -export interface v_league_division_standings_var_pop_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_var_pop_fields' +export interface v_match_lineup_map_stats_var_pop_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_league_division_standings_var_samp_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_var_samp_fields' +export interface v_match_lineup_map_stats_var_samp_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_var_samp_fields' } /** aggregate variance on columns */ -export interface v_league_division_standings_variance_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - round_diff: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_league_division_standings_variance_fields' +export interface v_match_lineup_map_stats_variance_fields { + man_adv_rounds: (Scalars['Float'] | null) + man_adv_wins: (Scalars['Float'] | null) + man_dis_rounds: (Scalars['Float'] | null) + man_dis_wins: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + opening_wins: (Scalars['Float'] | null) + pistol_rounds: (Scalars['Float'] | null) + pistol_wins: (Scalars['Float'] | null) + round_wins: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + won_buy_eco: (Scalars['Float'] | null) + won_buy_force: (Scalars['Float'] | null) + won_buy_full: (Scalars['Float'] | null) + won_buy_pistol: (Scalars['Float'] | null) + __typename: 'v_match_lineup_map_stats_variance_fields' } -/** columns and relationships of "v_league_season_player_stats" */ -export interface v_league_season_player_stats { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - /** An object relationship */ - league_team: (league_teams | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - matches_played: (Scalars['Int'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats' +/** columns and relationships of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds { + has_backup_file: (Scalars['Boolean'] | null) + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds' } -/** aggregated selection of "v_league_season_player_stats" */ -export interface v_league_season_player_stats_aggregate { - aggregate: (v_league_season_player_stats_aggregate_fields | null) - nodes: v_league_season_player_stats[] - __typename: 'v_league_season_player_stats_aggregate' +/** aggregated selection of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_aggregate { + aggregate: (v_match_map_backup_rounds_aggregate_fields | null) + nodes: v_match_map_backup_rounds[] + __typename: 'v_match_map_backup_rounds_aggregate' } -/** aggregate fields of "v_league_season_player_stats" */ -export interface v_league_season_player_stats_aggregate_fields { - avg: (v_league_season_player_stats_avg_fields | null) +/** aggregate fields of "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_aggregate_fields { + avg: (v_match_map_backup_rounds_avg_fields | null) count: Scalars['Int'] - max: (v_league_season_player_stats_max_fields | null) - min: (v_league_season_player_stats_min_fields | null) - stddev: (v_league_season_player_stats_stddev_fields | null) - stddev_pop: (v_league_season_player_stats_stddev_pop_fields | null) - stddev_samp: (v_league_season_player_stats_stddev_samp_fields | null) - sum: (v_league_season_player_stats_sum_fields | null) - var_pop: (v_league_season_player_stats_var_pop_fields | null) - var_samp: (v_league_season_player_stats_var_samp_fields | null) - variance: (v_league_season_player_stats_variance_fields | null) - __typename: 'v_league_season_player_stats_aggregate_fields' + max: (v_match_map_backup_rounds_max_fields | null) + min: (v_match_map_backup_rounds_min_fields | null) + stddev: (v_match_map_backup_rounds_stddev_fields | null) + stddev_pop: (v_match_map_backup_rounds_stddev_pop_fields | null) + stddev_samp: (v_match_map_backup_rounds_stddev_samp_fields | null) + sum: (v_match_map_backup_rounds_sum_fields | null) + var_pop: (v_match_map_backup_rounds_var_pop_fields | null) + var_samp: (v_match_map_backup_rounds_var_samp_fields | null) + variance: (v_match_map_backup_rounds_variance_fields | null) + __typename: 'v_match_map_backup_rounds_aggregate_fields' } /** aggregate avg on columns */ -export interface v_league_season_player_stats_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_avg_fields' +export interface v_match_map_backup_rounds_avg_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_avg_fields' } /** aggregate max on columns */ -export interface v_league_season_player_stats_max_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats_max_fields' +export interface v_match_map_backup_rounds_max_fields { + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds_max_fields' } /** aggregate min on columns */ -export interface v_league_season_player_stats_min_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - league_division_id: (Scalars['uuid'] | null) - league_season_division_id: (Scalars['uuid'] | null) - league_season_id: (Scalars['uuid'] | null) - league_team_id: (Scalars['uuid'] | null) - league_team_season_id: (Scalars['uuid'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats_min_fields' +export interface v_match_map_backup_rounds_min_fields { + match_map_id: (Scalars['uuid'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds_min_fields' } -/** select columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'league_division_id' | 'league_season_division_id' | 'league_season_id' | 'league_team_id' | 'league_team_season_id' | 'matches_played' | 'player_steam_id' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' - - -/** select "v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' +/** response of any mutation on the table "v_match_map_backup_rounds" */ +export interface v_match_map_backup_rounds_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: v_match_map_backup_rounds[] + __typename: 'v_match_map_backup_rounds_mutation_response' +} -/** select "v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_league_season_player_stats" */ -export type v_league_season_player_stats_select_column_v_league_season_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' +/** select columns of table "v_match_map_backup_rounds" */ +export type v_match_map_backup_rounds_select_column = 'has_backup_file' | 'match_map_id' | 'round' /** aggregate stddev on columns */ -export interface v_league_season_player_stats_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_stddev_fields' +export interface v_match_map_backup_rounds_stddev_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_league_season_player_stats_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_stddev_pop_fields' +export interface v_match_map_backup_rounds_stddev_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_league_season_player_stats_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_stddev_samp_fields' +export interface v_match_map_backup_rounds_stddev_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_league_season_player_stats_sum_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_league_season_player_stats_sum_fields' +export interface v_match_map_backup_rounds_sum_fields { + round: (Scalars['Int'] | null) + __typename: 'v_match_map_backup_rounds_sum_fields' } /** aggregate var_pop on columns */ -export interface v_league_season_player_stats_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_var_pop_fields' +export interface v_match_map_backup_rounds_var_pop_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_league_season_player_stats_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_var_samp_fields' +export interface v_match_map_backup_rounds_var_samp_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_var_samp_fields' } /** aggregate variance on columns */ -export interface v_league_season_player_stats_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_league_season_player_stats_variance_fields' +export interface v_match_map_backup_rounds_variance_fields { + round: (Scalars['Float'] | null) + __typename: 'v_match_map_backup_rounds_variance_fields' } -/** columns and relationships of "v_match_captains" */ -export interface v_match_captains { - captain: (Scalars['Boolean'] | null) - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) +/** columns and relationships of "v_match_player_buy_types" */ +export interface v_match_player_buy_types { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) /** An object relationship */ - lineup: (match_lineups | null) + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_lineup: (match_lineups | null) match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) /** An object relationship */ player: (players | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains' + __typename: 'v_match_player_buy_types' } -/** aggregated selection of "v_match_captains" */ -export interface v_match_captains_aggregate { - aggregate: (v_match_captains_aggregate_fields | null) - nodes: v_match_captains[] - __typename: 'v_match_captains_aggregate' +/** aggregated selection of "v_match_player_buy_types" */ +export interface v_match_player_buy_types_aggregate { + aggregate: (v_match_player_buy_types_aggregate_fields | null) + nodes: v_match_player_buy_types[] + __typename: 'v_match_player_buy_types_aggregate' } -/** aggregate fields of "v_match_captains" */ -export interface v_match_captains_aggregate_fields { - avg: (v_match_captains_avg_fields | null) +/** aggregate fields of "v_match_player_buy_types" */ +export interface v_match_player_buy_types_aggregate_fields { + avg: (v_match_player_buy_types_avg_fields | null) count: Scalars['Int'] - max: (v_match_captains_max_fields | null) - min: (v_match_captains_min_fields | null) - stddev: (v_match_captains_stddev_fields | null) - stddev_pop: (v_match_captains_stddev_pop_fields | null) - stddev_samp: (v_match_captains_stddev_samp_fields | null) - sum: (v_match_captains_sum_fields | null) - var_pop: (v_match_captains_var_pop_fields | null) - var_samp: (v_match_captains_var_samp_fields | null) - variance: (v_match_captains_variance_fields | null) - __typename: 'v_match_captains_aggregate_fields' + max: (v_match_player_buy_types_max_fields | null) + min: (v_match_player_buy_types_min_fields | null) + stddev: (v_match_player_buy_types_stddev_fields | null) + stddev_pop: (v_match_player_buy_types_stddev_pop_fields | null) + stddev_samp: (v_match_player_buy_types_stddev_samp_fields | null) + sum: (v_match_player_buy_types_sum_fields | null) + var_pop: (v_match_player_buy_types_var_pop_fields | null) + var_samp: (v_match_player_buy_types_var_samp_fields | null) + variance: (v_match_player_buy_types_variance_fields | null) + __typename: 'v_match_player_buy_types_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_captains_avg_fields { +export interface v_match_player_buy_types_avg_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_avg_fields' + __typename: 'v_match_player_buy_types_avg_fields' } /** aggregate max on columns */ -export interface v_match_captains_max_fields { - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) +export interface v_match_player_buy_types_max_fields { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains_max_fields' + __typename: 'v_match_player_buy_types_max_fields' } /** aggregate min on columns */ -export interface v_match_captains_min_fields { - discord_id: (Scalars['String'] | null) - id: (Scalars['uuid'] | null) +export interface v_match_player_buy_types_min_fields { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + match_id: (Scalars['uuid'] | null) match_lineup_id: (Scalars['uuid'] | null) - placeholder_name: (Scalars['String'] | null) + match_map_id: (Scalars['uuid'] | null) + matchup: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + side: (Scalars['String'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains_min_fields' -} - - -/** response of any mutation on the table "v_match_captains" */ -export interface v_match_captains_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: v_match_captains[] - __typename: 'v_match_captains_mutation_response' + __typename: 'v_match_player_buy_types_min_fields' } -/** select columns of table "v_match_captains" */ -export type v_match_captains_select_column = 'captain' | 'discord_id' | 'id' | 'match_lineup_id' | 'placeholder_name' | 'steam_id' +/** select columns of table "v_match_player_buy_types" */ +export type v_match_player_buy_types_select_column = 'deaths' | 'kills' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'steam_id' /** aggregate stddev on columns */ -export interface v_match_captains_stddev_fields { +export interface v_match_player_buy_types_stddev_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_stddev_fields' + __typename: 'v_match_player_buy_types_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_captains_stddev_pop_fields { +export interface v_match_player_buy_types_stddev_pop_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_stddev_pop_fields' + __typename: 'v_match_player_buy_types_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_captains_stddev_samp_fields { +export interface v_match_player_buy_types_stddev_samp_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_stddev_samp_fields' + __typename: 'v_match_player_buy_types_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_captains_sum_fields { +export interface v_match_player_buy_types_sum_fields { + deaths: (Scalars['Int'] | null) + kills: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_captains_sum_fields' + __typename: 'v_match_player_buy_types_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_captains_var_pop_fields { +export interface v_match_player_buy_types_var_pop_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_var_pop_fields' + __typename: 'v_match_player_buy_types_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_captains_var_samp_fields { +export interface v_match_player_buy_types_var_samp_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_var_samp_fields' + __typename: 'v_match_player_buy_types_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_captains_variance_fields { +export interface v_match_player_buy_types_variance_fields { + deaths: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_match_captains_variance_fields' + __typename: 'v_match_player_buy_types_variance_fields' } -/** columns and relationships of "v_match_clutches" */ -export interface v_match_clutches { - against_count: (Scalars['Int'] | null) - /** An object relationship */ - clutcher: (players | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) +/** columns and relationships of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) /** An object relationship */ match: (matches | null) match_id: (Scalars['uuid'] | null) @@ -27692,7741 +30302,8250 @@ export interface v_match_clutches { /** An object relationship */ match_map: (match_maps | null) match_map_id: (Scalars['uuid'] | null) - outcome: (Scalars['String'] | null) - round: (Scalars['Int'] | null) + /** An object relationship */ + player: (players | null) side: (Scalars['String'] | null) - __typename: 'v_match_clutches' + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels' } -/** aggregated selection of "v_match_clutches" */ -export interface v_match_clutches_aggregate { - aggregate: (v_match_clutches_aggregate_fields | null) - nodes: v_match_clutches[] - __typename: 'v_match_clutches_aggregate' +/** aggregated selection of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_aggregate { + aggregate: (v_match_player_opening_duels_aggregate_fields | null) + nodes: v_match_player_opening_duels[] + __typename: 'v_match_player_opening_duels_aggregate' } -/** aggregate fields of "v_match_clutches" */ -export interface v_match_clutches_aggregate_fields { - avg: (v_match_clutches_avg_fields | null) +/** aggregate fields of "v_match_player_opening_duels" */ +export interface v_match_player_opening_duels_aggregate_fields { + avg: (v_match_player_opening_duels_avg_fields | null) count: Scalars['Int'] - max: (v_match_clutches_max_fields | null) - min: (v_match_clutches_min_fields | null) - stddev: (v_match_clutches_stddev_fields | null) - stddev_pop: (v_match_clutches_stddev_pop_fields | null) - stddev_samp: (v_match_clutches_stddev_samp_fields | null) - sum: (v_match_clutches_sum_fields | null) - var_pop: (v_match_clutches_var_pop_fields | null) - var_samp: (v_match_clutches_var_samp_fields | null) - variance: (v_match_clutches_variance_fields | null) - __typename: 'v_match_clutches_aggregate_fields' + max: (v_match_player_opening_duels_max_fields | null) + min: (v_match_player_opening_duels_min_fields | null) + stddev: (v_match_player_opening_duels_stddev_fields | null) + stddev_pop: (v_match_player_opening_duels_stddev_pop_fields | null) + stddev_samp: (v_match_player_opening_duels_stddev_samp_fields | null) + sum: (v_match_player_opening_duels_sum_fields | null) + var_pop: (v_match_player_opening_duels_var_pop_fields | null) + var_samp: (v_match_player_opening_duels_var_samp_fields | null) + variance: (v_match_player_opening_duels_variance_fields | null) + __typename: 'v_match_player_opening_duels_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_clutches_avg_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_avg_fields' +export interface v_match_player_opening_duels_avg_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_avg_fields' } /** aggregate max on columns */ -export interface v_match_clutches_max_fields { - against_count: (Scalars['Int'] | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) +export interface v_match_player_opening_duels_max_fields { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) match_id: (Scalars['uuid'] | null) match_lineup_id: (Scalars['uuid'] | null) match_map_id: (Scalars['uuid'] | null) - outcome: (Scalars['String'] | null) - round: (Scalars['Int'] | null) side: (Scalars['String'] | null) - __typename: 'v_match_clutches_max_fields' + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels_max_fields' } /** aggregate min on columns */ -export interface v_match_clutches_min_fields { - against_count: (Scalars['Int'] | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) +export interface v_match_player_opening_duels_min_fields { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) match_id: (Scalars['uuid'] | null) match_lineup_id: (Scalars['uuid'] | null) match_map_id: (Scalars['uuid'] | null) - outcome: (Scalars['String'] | null) - round: (Scalars['Int'] | null) side: (Scalars['String'] | null) - __typename: 'v_match_clutches_min_fields' + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels_min_fields' } -/** select columns of table "v_match_clutches" */ -export type v_match_clutches_select_column = 'against_count' | 'clutcher_steam_id' | 'kills_in_clutch' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'outcome' | 'round' | 'side' +/** select columns of table "v_match_player_opening_duels" */ +export type v_match_player_opening_duels_select_column = 'attempts' | 'deaths' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'side' | 'steam_id' | 'traded_deaths' | 'wins' /** aggregate stddev on columns */ -export interface v_match_clutches_stddev_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_stddev_fields' +export interface v_match_player_opening_duels_stddev_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_clutches_stddev_pop_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_stddev_pop_fields' +export interface v_match_player_opening_duels_stddev_pop_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_clutches_stddev_samp_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_stddev_samp_fields' +export interface v_match_player_opening_duels_stddev_samp_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_clutches_sum_fields { - against_count: (Scalars['Int'] | null) - clutcher_steam_id: (Scalars['bigint'] | null) - kills_in_clutch: (Scalars['Int'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_clutches_sum_fields' +export interface v_match_player_opening_duels_sum_fields { + attempts: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + traded_deaths: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_match_player_opening_duels_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_clutches_var_pop_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_var_pop_fields' +export interface v_match_player_opening_duels_var_pop_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_clutches_var_samp_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_var_samp_fields' +export interface v_match_player_opening_duels_var_samp_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_clutches_variance_fields { - against_count: (Scalars['Float'] | null) - clutcher_steam_id: (Scalars['Float'] | null) - kills_in_clutch: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_match_clutches_variance_fields' +export interface v_match_player_opening_duels_variance_fields { + attempts: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + traded_deaths: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_match_player_opening_duels_variance_fields' } -/** columns and relationships of "v_match_kill_pairs" */ -export interface v_match_kill_pairs { - killer_side: (Scalars['String'] | null) - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) +/** columns and relationships of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) + nemsis: (players | null) /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - victim_side: (Scalars['String'] | null) - victim_steam_id: (Scalars['bigint'] | null) - weapon: (Scalars['String'] | null) - __typename: 'v_match_kill_pairs' + player: (players | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis' } -/** aggregated selection of "v_match_kill_pairs" */ -export interface v_match_kill_pairs_aggregate { - aggregate: (v_match_kill_pairs_aggregate_fields | null) - nodes: v_match_kill_pairs[] - __typename: 'v_match_kill_pairs_aggregate' +/** aggregated selection of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis_aggregate { + aggregate: (v_player_arch_nemesis_aggregate_fields | null) + nodes: v_player_arch_nemesis[] + __typename: 'v_player_arch_nemesis_aggregate' } -/** aggregate fields of "v_match_kill_pairs" */ -export interface v_match_kill_pairs_aggregate_fields { - avg: (v_match_kill_pairs_avg_fields | null) +/** aggregate fields of "v_player_arch_nemesis" */ +export interface v_player_arch_nemesis_aggregate_fields { + avg: (v_player_arch_nemesis_avg_fields | null) count: Scalars['Int'] - max: (v_match_kill_pairs_max_fields | null) - min: (v_match_kill_pairs_min_fields | null) - stddev: (v_match_kill_pairs_stddev_fields | null) - stddev_pop: (v_match_kill_pairs_stddev_pop_fields | null) - stddev_samp: (v_match_kill_pairs_stddev_samp_fields | null) - sum: (v_match_kill_pairs_sum_fields | null) - var_pop: (v_match_kill_pairs_var_pop_fields | null) - var_samp: (v_match_kill_pairs_var_samp_fields | null) - variance: (v_match_kill_pairs_variance_fields | null) - __typename: 'v_match_kill_pairs_aggregate_fields' + max: (v_player_arch_nemesis_max_fields | null) + min: (v_player_arch_nemesis_min_fields | null) + stddev: (v_player_arch_nemesis_stddev_fields | null) + stddev_pop: (v_player_arch_nemesis_stddev_pop_fields | null) + stddev_samp: (v_player_arch_nemesis_stddev_samp_fields | null) + sum: (v_player_arch_nemesis_sum_fields | null) + var_pop: (v_player_arch_nemesis_var_pop_fields | null) + var_samp: (v_player_arch_nemesis_var_samp_fields | null) + variance: (v_player_arch_nemesis_variance_fields | null) + __typename: 'v_player_arch_nemesis_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_kill_pairs_avg_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_avg_fields' +export interface v_player_arch_nemesis_avg_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_avg_fields' } /** aggregate max on columns */ -export interface v_match_kill_pairs_max_fields { - killer_side: (Scalars['String'] | null) - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - victim_side: (Scalars['String'] | null) - victim_steam_id: (Scalars['bigint'] | null) - weapon: (Scalars['String'] | null) - __typename: 'v_match_kill_pairs_max_fields' +export interface v_player_arch_nemesis_max_fields { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis_max_fields' } /** aggregate min on columns */ -export interface v_match_kill_pairs_min_fields { - killer_side: (Scalars['String'] | null) - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - victim_side: (Scalars['String'] | null) - victim_steam_id: (Scalars['bigint'] | null) - weapon: (Scalars['String'] | null) - __typename: 'v_match_kill_pairs_min_fields' +export interface v_player_arch_nemesis_min_fields { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis_min_fields' } -/** select columns of table "v_match_kill_pairs" */ -export type v_match_kill_pairs_select_column = 'killer_side' | 'killer_steam_id' | 'kills' | 'match_id' | 'match_map_id' | 'victim_side' | 'victim_steam_id' | 'weapon' +/** select columns of table "v_player_arch_nemesis" */ +export type v_player_arch_nemesis_select_column = 'attacker_id' | 'kill_count' | 'victim_id' /** aggregate stddev on columns */ -export interface v_match_kill_pairs_stddev_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_stddev_fields' +export interface v_player_arch_nemesis_stddev_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_kill_pairs_stddev_pop_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_stddev_pop_fields' +export interface v_player_arch_nemesis_stddev_pop_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_kill_pairs_stddev_samp_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_stddev_samp_fields' +export interface v_player_arch_nemesis_stddev_samp_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_kill_pairs_sum_fields { - killer_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['Int'] | null) - victim_steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_kill_pairs_sum_fields' +export interface v_player_arch_nemesis_sum_fields { + attacker_id: (Scalars['bigint'] | null) + kill_count: (Scalars['bigint'] | null) + victim_id: (Scalars['bigint'] | null) + __typename: 'v_player_arch_nemesis_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_kill_pairs_var_pop_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_var_pop_fields' +export interface v_player_arch_nemesis_var_pop_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_kill_pairs_var_samp_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_var_samp_fields' +export interface v_player_arch_nemesis_var_samp_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_kill_pairs_variance_fields { - killer_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - victim_steam_id: (Scalars['Float'] | null) - __typename: 'v_match_kill_pairs_variance_fields' +export interface v_player_arch_nemesis_variance_fields { + attacker_id: (Scalars['Float'] | null) + kill_count: (Scalars['Float'] | null) + victim_id: (Scalars['Float'] | null) + __typename: 'v_player_arch_nemesis_variance_fields' } -/** columns and relationships of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types { - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) +/** columns and relationships of "v_player_damage" */ +export interface v_player_damage { + avg_damage_per_round: (Scalars['bigint'] | null) /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types' + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage' } -/** aggregated selection of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types_aggregate { - aggregate: (v_match_lineup_buy_types_aggregate_fields | null) - nodes: v_match_lineup_buy_types[] - __typename: 'v_match_lineup_buy_types_aggregate' +/** aggregated selection of "v_player_damage" */ +export interface v_player_damage_aggregate { + aggregate: (v_player_damage_aggregate_fields | null) + nodes: v_player_damage[] + __typename: 'v_player_damage_aggregate' } -/** aggregate fields of "v_match_lineup_buy_types" */ -export interface v_match_lineup_buy_types_aggregate_fields { - avg: (v_match_lineup_buy_types_avg_fields | null) +/** aggregate fields of "v_player_damage" */ +export interface v_player_damage_aggregate_fields { + avg: (v_player_damage_avg_fields | null) count: Scalars['Int'] - max: (v_match_lineup_buy_types_max_fields | null) - min: (v_match_lineup_buy_types_min_fields | null) - stddev: (v_match_lineup_buy_types_stddev_fields | null) - stddev_pop: (v_match_lineup_buy_types_stddev_pop_fields | null) - stddev_samp: (v_match_lineup_buy_types_stddev_samp_fields | null) - sum: (v_match_lineup_buy_types_sum_fields | null) - var_pop: (v_match_lineup_buy_types_var_pop_fields | null) - var_samp: (v_match_lineup_buy_types_var_samp_fields | null) - variance: (v_match_lineup_buy_types_variance_fields | null) - __typename: 'v_match_lineup_buy_types_aggregate_fields' + max: (v_player_damage_max_fields | null) + min: (v_player_damage_min_fields | null) + stddev: (v_player_damage_stddev_fields | null) + stddev_pop: (v_player_damage_stddev_pop_fields | null) + stddev_samp: (v_player_damage_stddev_samp_fields | null) + sum: (v_player_damage_sum_fields | null) + var_pop: (v_player_damage_var_pop_fields | null) + var_samp: (v_player_damage_var_samp_fields | null) + variance: (v_player_damage_variance_fields | null) + __typename: 'v_player_damage_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_lineup_buy_types_avg_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_avg_fields' +export interface v_player_damage_avg_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_avg_fields' } /** aggregate max on columns */ -export interface v_match_lineup_buy_types_max_fields { - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types_max_fields' +export interface v_player_damage_max_fields { + avg_damage_per_round: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage_max_fields' } /** aggregate min on columns */ -export interface v_match_lineup_buy_types_min_fields { - match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types_min_fields' +export interface v_player_damage_min_fields { + avg_damage_per_round: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage_min_fields' } -/** select columns of table "v_match_lineup_buy_types" */ -export type v_match_lineup_buy_types_select_column = 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'wins' +/** select columns of table "v_player_damage" */ +export type v_player_damage_select_column = 'avg_damage_per_round' | 'player_steam_id' | 'total_damage' | 'total_rounds' /** aggregate stddev on columns */ -export interface v_match_lineup_buy_types_stddev_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_stddev_fields' +export interface v_player_damage_stddev_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_lineup_buy_types_stddev_pop_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_stddev_pop_fields' +export interface v_player_damage_stddev_pop_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_lineup_buy_types_stddev_samp_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_stddev_samp_fields' +export interface v_player_damage_stddev_samp_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_lineup_buy_types_sum_fields { - rounds: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_lineup_buy_types_sum_fields' +export interface v_player_damage_sum_fields { + avg_damage_per_round: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + total_damage: (Scalars['bigint'] | null) + total_rounds: (Scalars['bigint'] | null) + __typename: 'v_player_damage_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_lineup_buy_types_var_pop_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_var_pop_fields' +export interface v_player_damage_var_pop_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_lineup_buy_types_var_samp_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_var_samp_fields' +export interface v_player_damage_var_samp_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_lineup_buy_types_variance_fields { - rounds: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_lineup_buy_types_variance_fields' +export interface v_player_damage_variance_fields { + avg_damage_per_round: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + total_damage: (Scalars['Float'] | null) + total_rounds: (Scalars['Float'] | null) + __typename: 'v_player_damage_variance_fields' } -/** columns and relationships of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) +/** columns and relationships of "v_player_elo" */ +export interface v_player_elo { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + current_elo: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + elo_change: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['float8'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) /** An object relationship */ match: (matches | null) + match_created_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats' + match_result: (Scalars['String'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + team_avg_kda: (Scalars['float8'] | null) + type: (Scalars['String'] | null) + updated_elo: (Scalars['Int'] | null) + __typename: 'v_player_elo' } -/** aggregated selection of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats_aggregate { - aggregate: (v_match_lineup_map_stats_aggregate_fields | null) - nodes: v_match_lineup_map_stats[] - __typename: 'v_match_lineup_map_stats_aggregate' +/** aggregated selection of "v_player_elo" */ +export interface v_player_elo_aggregate { + aggregate: (v_player_elo_aggregate_fields | null) + nodes: v_player_elo[] + __typename: 'v_player_elo_aggregate' } -/** aggregate fields of "v_match_lineup_map_stats" */ -export interface v_match_lineup_map_stats_aggregate_fields { - avg: (v_match_lineup_map_stats_avg_fields | null) +/** aggregate fields of "v_player_elo" */ +export interface v_player_elo_aggregate_fields { + avg: (v_player_elo_avg_fields | null) count: Scalars['Int'] - max: (v_match_lineup_map_stats_max_fields | null) - min: (v_match_lineup_map_stats_min_fields | null) - stddev: (v_match_lineup_map_stats_stddev_fields | null) - stddev_pop: (v_match_lineup_map_stats_stddev_pop_fields | null) - stddev_samp: (v_match_lineup_map_stats_stddev_samp_fields | null) - sum: (v_match_lineup_map_stats_sum_fields | null) - var_pop: (v_match_lineup_map_stats_var_pop_fields | null) - var_samp: (v_match_lineup_map_stats_var_samp_fields | null) - variance: (v_match_lineup_map_stats_variance_fields | null) - __typename: 'v_match_lineup_map_stats_aggregate_fields' + max: (v_player_elo_max_fields | null) + min: (v_player_elo_min_fields | null) + stddev: (v_player_elo_stddev_fields | null) + stddev_pop: (v_player_elo_stddev_pop_fields | null) + stddev_samp: (v_player_elo_stddev_samp_fields | null) + sum: (v_player_elo_sum_fields | null) + var_pop: (v_player_elo_var_pop_fields | null) + var_samp: (v_player_elo_var_samp_fields | null) + variance: (v_player_elo_variance_fields | null) + __typename: 'v_player_elo_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_lineup_map_stats_avg_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_avg_fields' +export interface v_player_elo_avg_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + updated_elo: (Scalars['Float'] | null) + __typename: 'v_player_elo_avg_fields' } /** aggregate max on columns */ -export interface v_match_lineup_map_stats_max_fields { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) +export interface v_player_elo_max_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + current_elo: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + elo_change: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['float8'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + match_created_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats_max_fields' + match_result: (Scalars['String'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + team_avg_kda: (Scalars['float8'] | null) + type: (Scalars['String'] | null) + updated_elo: (Scalars['Int'] | null) + __typename: 'v_player_elo_max_fields' } /** aggregate min on columns */ -export interface v_match_lineup_map_stats_min_fields { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) +export interface v_player_elo_min_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + current_elo: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + elo_change: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['float8'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + match_created_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats_min_fields' + match_result: (Scalars['String'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_name: (Scalars['String'] | null) + player_steam_id: (Scalars['bigint'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + season_id: (Scalars['uuid'] | null) + series_multiplier: (Scalars['Int'] | null) + team_avg_kda: (Scalars['float8'] | null) + type: (Scalars['String'] | null) + updated_elo: (Scalars['Int'] | null) + __typename: 'v_player_elo_min_fields' } -/** select columns of table "v_match_lineup_map_stats" */ -export type v_match_lineup_map_stats_select_column = 'man_adv_rounds' | 'man_adv_wins' | 'man_dis_rounds' | 'man_dis_wins' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'opening_attempts' | 'opening_wins' | 'pistol_rounds' | 'pistol_wins' | 'round_wins' | 'rounds' | 'side' | 'won_buy_eco' | 'won_buy_force' | 'won_buy_full' | 'won_buy_pistol' +/** select columns of table "v_player_elo" */ +export type v_player_elo_select_column = 'actual_score' | 'assists' | 'current_elo' | 'damage' | 'damage_percent' | 'deaths' | 'elo_change' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_created_at' | 'match_id' | 'match_result' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_name' | 'player_steam_id' | 'player_team_elo_avg' | 'season_id' | 'series_multiplier' | 'team_avg_kda' | 'type' | 'updated_elo' + + +/** select "v_player_elo_aggregate_bool_exp_avg_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_corr_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_max_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_min_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_sum_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' + + +/** select "v_player_elo_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' /** aggregate stddev on columns */ -export interface v_match_lineup_map_stats_stddev_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_stddev_fields' +export interface v_player_elo_stddev_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + updated_elo: (Scalars['Float'] | null) + __typename: 'v_player_elo_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_lineup_map_stats_stddev_pop_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_stddev_pop_fields' +export interface v_player_elo_stddev_pop_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + updated_elo: (Scalars['Float'] | null) + __typename: 'v_player_elo_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_lineup_map_stats_stddev_samp_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_stddev_samp_fields' +export interface v_player_elo_stddev_samp_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + updated_elo: (Scalars['Float'] | null) + __typename: 'v_player_elo_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_lineup_map_stats_sum_fields { - man_adv_rounds: (Scalars['Int'] | null) - man_adv_wins: (Scalars['Int'] | null) - man_dis_rounds: (Scalars['Int'] | null) - man_dis_wins: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - opening_wins: (Scalars['Int'] | null) - pistol_rounds: (Scalars['Int'] | null) - pistol_wins: (Scalars['Int'] | null) - round_wins: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - won_buy_eco: (Scalars['Int'] | null) - won_buy_force: (Scalars['Int'] | null) - won_buy_full: (Scalars['Int'] | null) - won_buy_pistol: (Scalars['Int'] | null) - __typename: 'v_match_lineup_map_stats_sum_fields' +export interface v_player_elo_sum_fields { + actual_score: (Scalars['float8'] | null) + assists: (Scalars['Int'] | null) + current_elo: (Scalars['Int'] | null) + damage: (Scalars['Int'] | null) + damage_percent: (Scalars['float8'] | null) + deaths: (Scalars['Int'] | null) + elo_change: (Scalars['Int'] | null) + expected_score: (Scalars['float8'] | null) + impact: (Scalars['float8'] | null) + k_factor: (Scalars['Int'] | null) + kda: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + map_losses: (Scalars['Int'] | null) + map_wins: (Scalars['Int'] | null) + opponent_team_elo_avg: (Scalars['float8'] | null) + performance_multiplier: (Scalars['float8'] | null) + player_steam_id: (Scalars['bigint'] | null) + player_team_elo_avg: (Scalars['float8'] | null) + series_multiplier: (Scalars['Int'] | null) + team_avg_kda: (Scalars['float8'] | null) + updated_elo: (Scalars['Int'] | null) + __typename: 'v_player_elo_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_lineup_map_stats_var_pop_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_var_pop_fields' +export interface v_player_elo_var_pop_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + updated_elo: (Scalars['Float'] | null) + __typename: 'v_player_elo_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_lineup_map_stats_var_samp_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_var_samp_fields' +export interface v_player_elo_var_samp_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + updated_elo: (Scalars['Float'] | null) + __typename: 'v_player_elo_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_lineup_map_stats_variance_fields { - man_adv_rounds: (Scalars['Float'] | null) - man_adv_wins: (Scalars['Float'] | null) - man_dis_rounds: (Scalars['Float'] | null) - man_dis_wins: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - opening_wins: (Scalars['Float'] | null) - pistol_rounds: (Scalars['Float'] | null) - pistol_wins: (Scalars['Float'] | null) - round_wins: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - won_buy_eco: (Scalars['Float'] | null) - won_buy_force: (Scalars['Float'] | null) - won_buy_full: (Scalars['Float'] | null) - won_buy_pistol: (Scalars['Float'] | null) - __typename: 'v_match_lineup_map_stats_variance_fields' +export interface v_player_elo_variance_fields { + actual_score: (Scalars['Float'] | null) + assists: (Scalars['Float'] | null) + current_elo: (Scalars['Float'] | null) + damage: (Scalars['Float'] | null) + damage_percent: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + elo_change: (Scalars['Float'] | null) + expected_score: (Scalars['Float'] | null) + impact: (Scalars['Float'] | null) + k_factor: (Scalars['Float'] | null) + kda: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + map_losses: (Scalars['Float'] | null) + map_wins: (Scalars['Float'] | null) + opponent_team_elo_avg: (Scalars['Float'] | null) + performance_multiplier: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + player_team_elo_avg: (Scalars['Float'] | null) + series_multiplier: (Scalars['Float'] | null) + team_avg_kda: (Scalars['Float'] | null) + updated_elo: (Scalars['Float'] | null) + __typename: 'v_player_elo_variance_fields' } -/** columns and relationships of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds { - has_backup_file: (Scalars['Boolean'] | null) - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds' +/** columns and relationships of "v_player_map_losses" */ +export interface v_player_map_losses { + /** An object relationship */ + map: (maps | null) + map_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + started_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_map_losses' } -/** aggregated selection of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_aggregate { - aggregate: (v_match_map_backup_rounds_aggregate_fields | null) - nodes: v_match_map_backup_rounds[] - __typename: 'v_match_map_backup_rounds_aggregate' +/** aggregated selection of "v_player_map_losses" */ +export interface v_player_map_losses_aggregate { + aggregate: (v_player_map_losses_aggregate_fields | null) + nodes: v_player_map_losses[] + __typename: 'v_player_map_losses_aggregate' } -/** aggregate fields of "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_aggregate_fields { - avg: (v_match_map_backup_rounds_avg_fields | null) +/** aggregate fields of "v_player_map_losses" */ +export interface v_player_map_losses_aggregate_fields { + avg: (v_player_map_losses_avg_fields | null) count: Scalars['Int'] - max: (v_match_map_backup_rounds_max_fields | null) - min: (v_match_map_backup_rounds_min_fields | null) - stddev: (v_match_map_backup_rounds_stddev_fields | null) - stddev_pop: (v_match_map_backup_rounds_stddev_pop_fields | null) - stddev_samp: (v_match_map_backup_rounds_stddev_samp_fields | null) - sum: (v_match_map_backup_rounds_sum_fields | null) - var_pop: (v_match_map_backup_rounds_var_pop_fields | null) - var_samp: (v_match_map_backup_rounds_var_samp_fields | null) - variance: (v_match_map_backup_rounds_variance_fields | null) - __typename: 'v_match_map_backup_rounds_aggregate_fields' + max: (v_player_map_losses_max_fields | null) + min: (v_player_map_losses_min_fields | null) + stddev: (v_player_map_losses_stddev_fields | null) + stddev_pop: (v_player_map_losses_stddev_pop_fields | null) + stddev_samp: (v_player_map_losses_stddev_samp_fields | null) + sum: (v_player_map_losses_sum_fields | null) + var_pop: (v_player_map_losses_var_pop_fields | null) + var_samp: (v_player_map_losses_var_samp_fields | null) + variance: (v_player_map_losses_variance_fields | null) + __typename: 'v_player_map_losses_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_map_backup_rounds_avg_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_avg_fields' +export interface v_player_map_losses_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_avg_fields' } /** aggregate max on columns */ -export interface v_match_map_backup_rounds_max_fields { - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds_max_fields' +export interface v_player_map_losses_max_fields { + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + started_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_map_losses_max_fields' } /** aggregate min on columns */ -export interface v_match_map_backup_rounds_min_fields { - match_map_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds_min_fields' -} - - -/** response of any mutation on the table "v_match_map_backup_rounds" */ -export interface v_match_map_backup_rounds_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: v_match_map_backup_rounds[] - __typename: 'v_match_map_backup_rounds_mutation_response' +export interface v_player_map_losses_min_fields { + map_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + started_at: (Scalars['timestamptz'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_map_losses_min_fields' } -/** select columns of table "v_match_map_backup_rounds" */ -export type v_match_map_backup_rounds_select_column = 'has_backup_file' | 'match_map_id' | 'round' +/** select columns of table "v_player_map_losses" */ +export type v_player_map_losses_select_column = 'map_id' | 'match_id' | 'started_at' | 'steam_id' /** aggregate stddev on columns */ -export interface v_match_map_backup_rounds_stddev_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_stddev_fields' +export interface v_player_map_losses_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_map_backup_rounds_stddev_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_stddev_pop_fields' +export interface v_player_map_losses_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_map_backup_rounds_stddev_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_stddev_samp_fields' +export interface v_player_map_losses_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_map_backup_rounds_sum_fields { - round: (Scalars['Int'] | null) - __typename: 'v_match_map_backup_rounds_sum_fields' +export interface v_player_map_losses_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_map_losses_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_map_backup_rounds_var_pop_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_var_pop_fields' +export interface v_player_map_losses_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_map_backup_rounds_var_samp_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_var_samp_fields' +export interface v_player_map_losses_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_map_backup_rounds_variance_fields { - round: (Scalars['Float'] | null) - __typename: 'v_match_map_backup_rounds_variance_fields' +export interface v_player_map_losses_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_map_losses_variance_fields' } -/** columns and relationships of "v_match_player_buy_types" */ -export interface v_match_player_buy_types { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) +/** columns and relationships of "v_player_map_wins" */ +export interface v_player_map_wins { + /** An object relationship */ + map: (maps | null) + map_id: (Scalars['uuid'] | null) /** An object relationship */ match: (matches | null) match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - /** An object relationship */ - player: (players | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) + started_at: (Scalars['timestamptz'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types' + __typename: 'v_player_map_wins' } -/** aggregated selection of "v_match_player_buy_types" */ -export interface v_match_player_buy_types_aggregate { - aggregate: (v_match_player_buy_types_aggregate_fields | null) - nodes: v_match_player_buy_types[] - __typename: 'v_match_player_buy_types_aggregate' +/** aggregated selection of "v_player_map_wins" */ +export interface v_player_map_wins_aggregate { + aggregate: (v_player_map_wins_aggregate_fields | null) + nodes: v_player_map_wins[] + __typename: 'v_player_map_wins_aggregate' } -/** aggregate fields of "v_match_player_buy_types" */ -export interface v_match_player_buy_types_aggregate_fields { - avg: (v_match_player_buy_types_avg_fields | null) +/** aggregate fields of "v_player_map_wins" */ +export interface v_player_map_wins_aggregate_fields { + avg: (v_player_map_wins_avg_fields | null) count: Scalars['Int'] - max: (v_match_player_buy_types_max_fields | null) - min: (v_match_player_buy_types_min_fields | null) - stddev: (v_match_player_buy_types_stddev_fields | null) - stddev_pop: (v_match_player_buy_types_stddev_pop_fields | null) - stddev_samp: (v_match_player_buy_types_stddev_samp_fields | null) - sum: (v_match_player_buy_types_sum_fields | null) - var_pop: (v_match_player_buy_types_var_pop_fields | null) - var_samp: (v_match_player_buy_types_var_samp_fields | null) - variance: (v_match_player_buy_types_variance_fields | null) - __typename: 'v_match_player_buy_types_aggregate_fields' + max: (v_player_map_wins_max_fields | null) + min: (v_player_map_wins_min_fields | null) + stddev: (v_player_map_wins_stddev_fields | null) + stddev_pop: (v_player_map_wins_stddev_pop_fields | null) + stddev_samp: (v_player_map_wins_stddev_samp_fields | null) + sum: (v_player_map_wins_sum_fields | null) + var_pop: (v_player_map_wins_var_pop_fields | null) + var_samp: (v_player_map_wins_var_samp_fields | null) + variance: (v_player_map_wins_variance_fields | null) + __typename: 'v_player_map_wins_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_player_buy_types_avg_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) +export interface v_player_map_wins_avg_fields { steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_avg_fields' + __typename: 'v_player_map_wins_avg_fields' } /** aggregate max on columns */ -export interface v_match_player_buy_types_max_fields { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) +export interface v_player_map_wins_max_fields { + map_id: (Scalars['uuid'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) + started_at: (Scalars['timestamptz'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types_max_fields' + __typename: 'v_player_map_wins_max_fields' } /** aggregate min on columns */ -export interface v_match_player_buy_types_min_fields { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) +export interface v_player_map_wins_min_fields { + map_id: (Scalars['uuid'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - matchup: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - side: (Scalars['String'] | null) + started_at: (Scalars['timestamptz'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types_min_fields' + __typename: 'v_player_map_wins_min_fields' } -/** select columns of table "v_match_player_buy_types" */ -export type v_match_player_buy_types_select_column = 'deaths' | 'kills' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'matchup' | 'rounds' | 'side' | 'steam_id' +/** select columns of table "v_player_map_wins" */ +export type v_player_map_wins_select_column = 'map_id' | 'match_id' | 'started_at' | 'steam_id' /** aggregate stddev on columns */ -export interface v_match_player_buy_types_stddev_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) +export interface v_player_map_wins_stddev_fields { steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_stddev_fields' + __typename: 'v_player_map_wins_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_player_buy_types_stddev_pop_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) +export interface v_player_map_wins_stddev_pop_fields { steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_stddev_pop_fields' + __typename: 'v_player_map_wins_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_player_buy_types_stddev_samp_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) +export interface v_player_map_wins_stddev_samp_fields { steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_stddev_samp_fields' + __typename: 'v_player_map_wins_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_player_buy_types_sum_fields { - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) +export interface v_player_map_wins_sum_fields { steam_id: (Scalars['bigint'] | null) - __typename: 'v_match_player_buy_types_sum_fields' + __typename: 'v_player_map_wins_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_player_buy_types_var_pop_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) +export interface v_player_map_wins_var_pop_fields { steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_var_pop_fields' + __typename: 'v_player_map_wins_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_player_buy_types_var_samp_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) +export interface v_player_map_wins_var_samp_fields { steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_var_samp_fields' + __typename: 'v_player_map_wins_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_player_buy_types_variance_fields { - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) +export interface v_player_map_wins_variance_fields { steam_id: (Scalars['Float'] | null) - __typename: 'v_match_player_buy_types_variance_fields' + __typename: 'v_player_map_wins_variance_fields' } -/** columns and relationships of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) +/** columns and relationships of "v_player_match_head_to_head" */ +export interface v_player_match_head_to_head { /** An object relationship */ - match_lineup: (match_lineups | null) - match_lineup_id: (Scalars['uuid'] | null) + attacked: (players | null) + attacked_steam_id: (Scalars['bigint'] | null) /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) + attacker: (players | null) + attacker_steam_id: (Scalars['bigint'] | null) + damage_dealt: (Scalars['Int'] | null) + flash_count: (Scalars['bigint'] | null) + headshot_kills: (Scalars['bigint'] | null) + hits: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) /** An object relationship */ - player: (players | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels' + match: (matches | null) + match_id: (Scalars['uuid'] | null) + __typename: 'v_player_match_head_to_head' } -/** aggregated selection of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_aggregate { - aggregate: (v_match_player_opening_duels_aggregate_fields | null) - nodes: v_match_player_opening_duels[] - __typename: 'v_match_player_opening_duels_aggregate' +/** aggregated selection of "v_player_match_head_to_head" */ +export interface v_player_match_head_to_head_aggregate { + aggregate: (v_player_match_head_to_head_aggregate_fields | null) + nodes: v_player_match_head_to_head[] + __typename: 'v_player_match_head_to_head_aggregate' } -/** aggregate fields of "v_match_player_opening_duels" */ -export interface v_match_player_opening_duels_aggregate_fields { - avg: (v_match_player_opening_duels_avg_fields | null) +/** aggregate fields of "v_player_match_head_to_head" */ +export interface v_player_match_head_to_head_aggregate_fields { + avg: (v_player_match_head_to_head_avg_fields | null) count: Scalars['Int'] - max: (v_match_player_opening_duels_max_fields | null) - min: (v_match_player_opening_duels_min_fields | null) - stddev: (v_match_player_opening_duels_stddev_fields | null) - stddev_pop: (v_match_player_opening_duels_stddev_pop_fields | null) - stddev_samp: (v_match_player_opening_duels_stddev_samp_fields | null) - sum: (v_match_player_opening_duels_sum_fields | null) - var_pop: (v_match_player_opening_duels_var_pop_fields | null) - var_samp: (v_match_player_opening_duels_var_samp_fields | null) - variance: (v_match_player_opening_duels_variance_fields | null) - __typename: 'v_match_player_opening_duels_aggregate_fields' + max: (v_player_match_head_to_head_max_fields | null) + min: (v_player_match_head_to_head_min_fields | null) + stddev: (v_player_match_head_to_head_stddev_fields | null) + stddev_pop: (v_player_match_head_to_head_stddev_pop_fields | null) + stddev_samp: (v_player_match_head_to_head_stddev_samp_fields | null) + sum: (v_player_match_head_to_head_sum_fields | null) + var_pop: (v_player_match_head_to_head_var_pop_fields | null) + var_samp: (v_player_match_head_to_head_var_samp_fields | null) + variance: (v_player_match_head_to_head_variance_fields | null) + __typename: 'v_player_match_head_to_head_aggregate_fields' } /** aggregate avg on columns */ -export interface v_match_player_opening_duels_avg_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_avg_fields' +export interface v_player_match_head_to_head_avg_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_avg_fields' } /** aggregate max on columns */ -export interface v_match_player_opening_duels_max_fields { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) +export interface v_player_match_head_to_head_max_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + damage_dealt: (Scalars['Int'] | null) + flash_count: (Scalars['bigint'] | null) + headshot_kills: (Scalars['bigint'] | null) + hits: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels_max_fields' + __typename: 'v_player_match_head_to_head_max_fields' } /** aggregate min on columns */ -export interface v_match_player_opening_duels_min_fields { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) +export interface v_player_match_head_to_head_min_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + damage_dealt: (Scalars['Int'] | null) + flash_count: (Scalars['bigint'] | null) + headshot_kills: (Scalars['bigint'] | null) + hits: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) match_id: (Scalars['uuid'] | null) - match_lineup_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - side: (Scalars['String'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels_min_fields' + __typename: 'v_player_match_head_to_head_min_fields' } -/** select columns of table "v_match_player_opening_duels" */ -export type v_match_player_opening_duels_select_column = 'attempts' | 'deaths' | 'match_id' | 'match_lineup_id' | 'match_map_id' | 'side' | 'steam_id' | 'traded_deaths' | 'wins' +/** select columns of table "v_player_match_head_to_head" */ +export type v_player_match_head_to_head_select_column = 'attacked_steam_id' | 'attacker_steam_id' | 'damage_dealt' | 'flash_count' | 'headshot_kills' | 'hits' | 'kills' | 'match_id' /** aggregate stddev on columns */ -export interface v_match_player_opening_duels_stddev_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_stddev_fields' +export interface v_player_match_head_to_head_stddev_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_match_player_opening_duels_stddev_pop_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_stddev_pop_fields' +export interface v_player_match_head_to_head_stddev_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_match_player_opening_duels_stddev_samp_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_stddev_samp_fields' +export interface v_player_match_head_to_head_stddev_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_match_player_opening_duels_sum_fields { - attempts: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - traded_deaths: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_match_player_opening_duels_sum_fields' +export interface v_player_match_head_to_head_sum_fields { + attacked_steam_id: (Scalars['bigint'] | null) + attacker_steam_id: (Scalars['bigint'] | null) + damage_dealt: (Scalars['Int'] | null) + flash_count: (Scalars['bigint'] | null) + headshot_kills: (Scalars['bigint'] | null) + hits: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + __typename: 'v_player_match_head_to_head_sum_fields' } /** aggregate var_pop on columns */ -export interface v_match_player_opening_duels_var_pop_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_var_pop_fields' +export interface v_player_match_head_to_head_var_pop_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_match_player_opening_duels_var_samp_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_var_samp_fields' +export interface v_player_match_head_to_head_var_samp_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_var_samp_fields' } /** aggregate variance on columns */ -export interface v_match_player_opening_duels_variance_fields { - attempts: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - traded_deaths: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_match_player_opening_duels_variance_fields' +export interface v_player_match_head_to_head_variance_fields { + attacked_steam_id: (Scalars['Float'] | null) + attacker_steam_id: (Scalars['Float'] | null) + damage_dealt: (Scalars['Float'] | null) + flash_count: (Scalars['Float'] | null) + headshot_kills: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + __typename: 'v_player_match_head_to_head_variance_fields' } -/** columns and relationships of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) +/** columns and relationships of "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) /** An object relationship */ - nemsis: (players | null) + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) /** An object relationship */ player: (players | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis' + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv' } -/** aggregated selection of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis_aggregate { - aggregate: (v_player_arch_nemesis_aggregate_fields | null) - nodes: v_player_arch_nemesis[] - __typename: 'v_player_arch_nemesis_aggregate' +/** aggregated selection of "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_aggregate { + aggregate: (v_player_match_map_hltv_aggregate_fields | null) + nodes: v_player_match_map_hltv[] + __typename: 'v_player_match_map_hltv_aggregate' } -/** aggregate fields of "v_player_arch_nemesis" */ -export interface v_player_arch_nemesis_aggregate_fields { - avg: (v_player_arch_nemesis_avg_fields | null) +/** aggregate fields of "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_aggregate_fields { + avg: (v_player_match_map_hltv_avg_fields | null) count: Scalars['Int'] - max: (v_player_arch_nemesis_max_fields | null) - min: (v_player_arch_nemesis_min_fields | null) - stddev: (v_player_arch_nemesis_stddev_fields | null) - stddev_pop: (v_player_arch_nemesis_stddev_pop_fields | null) - stddev_samp: (v_player_arch_nemesis_stddev_samp_fields | null) - sum: (v_player_arch_nemesis_sum_fields | null) - var_pop: (v_player_arch_nemesis_var_pop_fields | null) - var_samp: (v_player_arch_nemesis_var_samp_fields | null) - variance: (v_player_arch_nemesis_variance_fields | null) - __typename: 'v_player_arch_nemesis_aggregate_fields' + max: (v_player_match_map_hltv_max_fields | null) + min: (v_player_match_map_hltv_min_fields | null) + stddev: (v_player_match_map_hltv_stddev_fields | null) + stddev_pop: (v_player_match_map_hltv_stddev_pop_fields | null) + stddev_samp: (v_player_match_map_hltv_stddev_samp_fields | null) + sum: (v_player_match_map_hltv_sum_fields | null) + var_pop: (v_player_match_map_hltv_var_pop_fields | null) + var_samp: (v_player_match_map_hltv_var_samp_fields | null) + variance: (v_player_match_map_hltv_variance_fields | null) + __typename: 'v_player_match_map_hltv_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_arch_nemesis_avg_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_avg_fields' +export interface v_player_match_map_hltv_avg_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_avg_fields' } /** aggregate max on columns */ -export interface v_player_arch_nemesis_max_fields { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis_max_fields' +export interface v_player_match_map_hltv_max_fields { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv_max_fields' } /** aggregate min on columns */ -export interface v_player_arch_nemesis_min_fields { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis_min_fields' +export interface v_player_match_map_hltv_min_fields { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv_min_fields' } -/** select columns of table "v_player_arch_nemesis" */ -export type v_player_arch_nemesis_select_column = 'attacker_id' | 'kill_count' | 'victim_id' +/** response of any mutation on the table "v_player_match_map_hltv" */ +export interface v_player_match_map_hltv_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: v_player_match_map_hltv[] + __typename: 'v_player_match_map_hltv_mutation_response' +} + + +/** select columns of table "v_player_match_map_hltv" */ +export type v_player_match_map_hltv_select_column = 'adr' | 'apr' | 'dpr' | 'hltv_rating' | 'kast_pct' | 'kpr' | 'match_id' | 'match_map_id' | 'rounds_played' | 'steam_id' /** aggregate stddev on columns */ -export interface v_player_arch_nemesis_stddev_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_stddev_fields' +export interface v_player_match_map_hltv_stddev_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_arch_nemesis_stddev_pop_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_stddev_pop_fields' +export interface v_player_match_map_hltv_stddev_pop_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_arch_nemesis_stddev_samp_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_stddev_samp_fields' +export interface v_player_match_map_hltv_stddev_samp_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_arch_nemesis_sum_fields { - attacker_id: (Scalars['bigint'] | null) - kill_count: (Scalars['bigint'] | null) - victim_id: (Scalars['bigint'] | null) - __typename: 'v_player_arch_nemesis_sum_fields' +export interface v_player_match_map_hltv_sum_fields { + adr: (Scalars['numeric'] | null) + apr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + rounds_played: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_match_map_hltv_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_arch_nemesis_var_pop_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_var_pop_fields' +export interface v_player_match_map_hltv_var_pop_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_arch_nemesis_var_samp_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_var_samp_fields' +export interface v_player_match_map_hltv_var_samp_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_arch_nemesis_variance_fields { - attacker_id: (Scalars['Float'] | null) - kill_count: (Scalars['Float'] | null) - victim_id: (Scalars['Float'] | null) - __typename: 'v_player_arch_nemesis_variance_fields' +export interface v_player_match_map_hltv_variance_fields { + adr: (Scalars['Float'] | null) + apr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'v_player_match_map_hltv_variance_fields' } -/** columns and relationships of "v_player_damage" */ -export interface v_player_damage { - avg_damage_per_round: (Scalars['bigint'] | null) +/** columns and relationships of "v_player_match_map_roles" */ +export interface v_player_match_map_roles { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + lineup_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + /** An object relationship */ + match_map: (match_maps | null) + match_map_id: (Scalars['uuid'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) /** An object relationship */ player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage' + role: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles' } -/** aggregated selection of "v_player_damage" */ -export interface v_player_damage_aggregate { - aggregate: (v_player_damage_aggregate_fields | null) - nodes: v_player_damage[] - __typename: 'v_player_damage_aggregate' +/** aggregated selection of "v_player_match_map_roles" */ +export interface v_player_match_map_roles_aggregate { + aggregate: (v_player_match_map_roles_aggregate_fields | null) + nodes: v_player_match_map_roles[] + __typename: 'v_player_match_map_roles_aggregate' } -/** aggregate fields of "v_player_damage" */ -export interface v_player_damage_aggregate_fields { - avg: (v_player_damage_avg_fields | null) +/** aggregate fields of "v_player_match_map_roles" */ +export interface v_player_match_map_roles_aggregate_fields { + avg: (v_player_match_map_roles_avg_fields | null) count: Scalars['Int'] - max: (v_player_damage_max_fields | null) - min: (v_player_damage_min_fields | null) - stddev: (v_player_damage_stddev_fields | null) - stddev_pop: (v_player_damage_stddev_pop_fields | null) - stddev_samp: (v_player_damage_stddev_samp_fields | null) - sum: (v_player_damage_sum_fields | null) - var_pop: (v_player_damage_var_pop_fields | null) - var_samp: (v_player_damage_var_samp_fields | null) - variance: (v_player_damage_variance_fields | null) - __typename: 'v_player_damage_aggregate_fields' + max: (v_player_match_map_roles_max_fields | null) + min: (v_player_match_map_roles_min_fields | null) + stddev: (v_player_match_map_roles_stddev_fields | null) + stddev_pop: (v_player_match_map_roles_stddev_pop_fields | null) + stddev_samp: (v_player_match_map_roles_stddev_samp_fields | null) + sum: (v_player_match_map_roles_sum_fields | null) + var_pop: (v_player_match_map_roles_var_pop_fields | null) + var_samp: (v_player_match_map_roles_var_samp_fields | null) + variance: (v_player_match_map_roles_variance_fields | null) + __typename: 'v_player_match_map_roles_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_damage_avg_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_avg_fields' +export interface v_player_match_map_roles_avg_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_avg_fields' } /** aggregate max on columns */ -export interface v_player_damage_max_fields { - avg_damage_per_round: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage_max_fields' +export interface v_player_match_map_roles_max_fields { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + lineup_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + role: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles_max_fields' } /** aggregate min on columns */ -export interface v_player_damage_min_fields { - avg_damage_per_round: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage_min_fields' +export interface v_player_match_map_roles_min_fields { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + lineup_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_map_id: (Scalars['uuid'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + role: (Scalars['String'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles_min_fields' } -/** select columns of table "v_player_damage" */ -export type v_player_damage_select_column = 'avg_damage_per_round' | 'player_steam_id' | 'total_damage' | 'total_rounds' +/** select columns of table "v_player_match_map_roles" */ +export type v_player_match_map_roles_select_column = 'adr' | 'awp_kills' | 'awp_share' | 'deaths' | 'dpr' | 'entry_rate' | 'flash_assists' | 'hltv_rating' | 'kast_pct' | 'kills' | 'kpr' | 'lineup_id' | 'match_id' | 'match_map_id' | 'open_deaths' | 'open_kills' | 'opening_attempts' | 'role' | 'rounds' | 'steam_id' | 'support_idx' | 'total_kills' | 'trade_kill_successes' | 'traded_death_successes' | 'util_damage' /** aggregate stddev on columns */ -export interface v_player_damage_stddev_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_stddev_fields' +export interface v_player_match_map_roles_stddev_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_damage_stddev_pop_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_stddev_pop_fields' +export interface v_player_match_map_roles_stddev_pop_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_damage_stddev_samp_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_stddev_samp_fields' +export interface v_player_match_map_roles_stddev_samp_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_damage_sum_fields { - avg_damage_per_round: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - total_damage: (Scalars['bigint'] | null) - total_rounds: (Scalars['bigint'] | null) - __typename: 'v_player_damage_sum_fields' +export interface v_player_match_map_roles_sum_fields { + adr: (Scalars['numeric'] | null) + awp_kills: (Scalars['Int'] | null) + awp_share: (Scalars['numeric'] | null) + deaths: (Scalars['Int'] | null) + dpr: (Scalars['numeric'] | null) + entry_rate: (Scalars['numeric'] | null) + flash_assists: (Scalars['Int'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kills: (Scalars['Int'] | null) + kpr: (Scalars['numeric'] | null) + open_deaths: (Scalars['Int'] | null) + open_kills: (Scalars['Int'] | null) + opening_attempts: (Scalars['Int'] | null) + rounds: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + support_idx: (Scalars['numeric'] | null) + total_kills: (Scalars['Int'] | null) + trade_kill_successes: (Scalars['Int'] | null) + traded_death_successes: (Scalars['Int'] | null) + util_damage: (Scalars['Int'] | null) + __typename: 'v_player_match_map_roles_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_damage_var_pop_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_var_pop_fields' +export interface v_player_match_map_roles_var_pop_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_damage_var_samp_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_var_samp_fields' +export interface v_player_match_map_roles_var_samp_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_damage_variance_fields { - avg_damage_per_round: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - total_damage: (Scalars['Float'] | null) - total_rounds: (Scalars['Float'] | null) - __typename: 'v_player_damage_variance_fields' +export interface v_player_match_map_roles_variance_fields { + adr: (Scalars['Float'] | null) + awp_kills: (Scalars['Float'] | null) + awp_share: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + entry_rate: (Scalars['Float'] | null) + flash_assists: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + open_deaths: (Scalars['Float'] | null) + open_kills: (Scalars['Float'] | null) + opening_attempts: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + support_idx: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + trade_kill_successes: (Scalars['Float'] | null) + traded_death_successes: (Scalars['Float'] | null) + util_damage: (Scalars['Float'] | null) + __typename: 'v_player_match_map_roles_variance_fields' } -/** columns and relationships of "v_player_elo" */ -export interface v_player_elo { - actual_score: (Scalars['float8'] | null) +/** columns and relationships of "v_player_match_performance" */ +export interface v_player_match_performance { assists: (Scalars['Int'] | null) - current_elo: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) deaths: (Scalars['Int'] | null) - elo_change: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['float8'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) + /** An object relationship */ + map: (maps | null) + map_id: (Scalars['uuid'] | null) /** An object relationship */ match: (matches | null) match_created_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) match_result: (Scalars['String'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_name: (Scalars['String'] | null) player_steam_id: (Scalars['bigint'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - team_avg_kda: (Scalars['float8'] | null) + source: (Scalars['String'] | null) type: (Scalars['String'] | null) - updated_elo: (Scalars['Int'] | null) - __typename: 'v_player_elo' + __typename: 'v_player_match_performance' } -/** aggregated selection of "v_player_elo" */ -export interface v_player_elo_aggregate { - aggregate: (v_player_elo_aggregate_fields | null) - nodes: v_player_elo[] - __typename: 'v_player_elo_aggregate' +/** aggregated selection of "v_player_match_performance" */ +export interface v_player_match_performance_aggregate { + aggregate: (v_player_match_performance_aggregate_fields | null) + nodes: v_player_match_performance[] + __typename: 'v_player_match_performance_aggregate' } -/** aggregate fields of "v_player_elo" */ -export interface v_player_elo_aggregate_fields { - avg: (v_player_elo_avg_fields | null) +/** aggregate fields of "v_player_match_performance" */ +export interface v_player_match_performance_aggregate_fields { + avg: (v_player_match_performance_avg_fields | null) count: Scalars['Int'] - max: (v_player_elo_max_fields | null) - min: (v_player_elo_min_fields | null) - stddev: (v_player_elo_stddev_fields | null) - stddev_pop: (v_player_elo_stddev_pop_fields | null) - stddev_samp: (v_player_elo_stddev_samp_fields | null) - sum: (v_player_elo_sum_fields | null) - var_pop: (v_player_elo_var_pop_fields | null) - var_samp: (v_player_elo_var_samp_fields | null) - variance: (v_player_elo_variance_fields | null) - __typename: 'v_player_elo_aggregate_fields' + max: (v_player_match_performance_max_fields | null) + min: (v_player_match_performance_min_fields | null) + stddev: (v_player_match_performance_stddev_fields | null) + stddev_pop: (v_player_match_performance_stddev_pop_fields | null) + stddev_samp: (v_player_match_performance_stddev_samp_fields | null) + sum: (v_player_match_performance_sum_fields | null) + var_pop: (v_player_match_performance_var_pop_fields | null) + var_samp: (v_player_match_performance_var_samp_fields | null) + variance: (v_player_match_performance_variance_fields | null) + __typename: 'v_player_match_performance_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_elo_avg_fields { - actual_score: (Scalars['Float'] | null) +export interface v_player_match_performance_avg_fields { assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - updated_elo: (Scalars['Float'] | null) - __typename: 'v_player_elo_avg_fields' + __typename: 'v_player_match_performance_avg_fields' } /** aggregate max on columns */ -export interface v_player_elo_max_fields { - actual_score: (Scalars['float8'] | null) +export interface v_player_match_performance_max_fields { assists: (Scalars['Int'] | null) - current_elo: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) deaths: (Scalars['Int'] | null) - elo_change: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['float8'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) + map_id: (Scalars['uuid'] | null) match_created_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) match_result: (Scalars['String'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_name: (Scalars['String'] | null) player_steam_id: (Scalars['bigint'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - team_avg_kda: (Scalars['float8'] | null) + source: (Scalars['String'] | null) type: (Scalars['String'] | null) - updated_elo: (Scalars['Int'] | null) - __typename: 'v_player_elo_max_fields' + __typename: 'v_player_match_performance_max_fields' } /** aggregate min on columns */ -export interface v_player_elo_min_fields { - actual_score: (Scalars['float8'] | null) +export interface v_player_match_performance_min_fields { assists: (Scalars['Int'] | null) - current_elo: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) deaths: (Scalars['Int'] | null) - elo_change: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['float8'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) + map_id: (Scalars['uuid'] | null) match_created_at: (Scalars['timestamptz'] | null) match_id: (Scalars['uuid'] | null) match_result: (Scalars['String'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) - player_name: (Scalars['String'] | null) player_steam_id: (Scalars['bigint'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - season_id: (Scalars['uuid'] | null) - series_multiplier: (Scalars['Int'] | null) - team_avg_kda: (Scalars['float8'] | null) + source: (Scalars['String'] | null) type: (Scalars['String'] | null) - updated_elo: (Scalars['Int'] | null) - __typename: 'v_player_elo_min_fields' + __typename: 'v_player_match_performance_min_fields' } -/** select columns of table "v_player_elo" */ -export type v_player_elo_select_column = 'actual_score' | 'assists' | 'current_elo' | 'damage' | 'damage_percent' | 'deaths' | 'elo_change' | 'expected_score' | 'impact' | 'k_factor' | 'kda' | 'kills' | 'map_losses' | 'map_wins' | 'match_created_at' | 'match_id' | 'match_result' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_name' | 'player_steam_id' | 'player_team_elo_avg' | 'season_id' | 'series_multiplier' | 'team_avg_kda' | 'type' | 'updated_elo' - - -/** select "v_player_elo_aggregate_bool_exp_avg_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_corr_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_max_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_max_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_min_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_min_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_stddev_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_sum_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_sum_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' - - -/** select "v_player_elo_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'team_avg_kda' +/** select columns of table "v_player_match_performance" */ +export type v_player_match_performance_select_column = 'assists' | 'deaths' | 'kills' | 'map_id' | 'match_created_at' | 'match_id' | 'match_result' | 'player_steam_id' | 'source' | 'type' /** aggregate stddev on columns */ -export interface v_player_elo_stddev_fields { - actual_score: (Scalars['Float'] | null) +export interface v_player_match_performance_stddev_fields { assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - updated_elo: (Scalars['Float'] | null) - __typename: 'v_player_elo_stddev_fields' + __typename: 'v_player_match_performance_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_elo_stddev_pop_fields { - actual_score: (Scalars['Float'] | null) +export interface v_player_match_performance_stddev_pop_fields { assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - updated_elo: (Scalars['Float'] | null) - __typename: 'v_player_elo_stddev_pop_fields' + __typename: 'v_player_match_performance_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_elo_stddev_samp_fields { - actual_score: (Scalars['Float'] | null) +export interface v_player_match_performance_stddev_samp_fields { assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - updated_elo: (Scalars['Float'] | null) - __typename: 'v_player_elo_stddev_samp_fields' + __typename: 'v_player_match_performance_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_elo_sum_fields { - actual_score: (Scalars['float8'] | null) +export interface v_player_match_performance_sum_fields { assists: (Scalars['Int'] | null) - current_elo: (Scalars['Int'] | null) - damage: (Scalars['Int'] | null) - damage_percent: (Scalars['float8'] | null) deaths: (Scalars['Int'] | null) - elo_change: (Scalars['Int'] | null) - expected_score: (Scalars['float8'] | null) - impact: (Scalars['float8'] | null) - k_factor: (Scalars['Int'] | null) - kda: (Scalars['float8'] | null) kills: (Scalars['Int'] | null) - map_losses: (Scalars['Int'] | null) - map_wins: (Scalars['Int'] | null) - opponent_team_elo_avg: (Scalars['float8'] | null) - performance_multiplier: (Scalars['float8'] | null) player_steam_id: (Scalars['bigint'] | null) - player_team_elo_avg: (Scalars['float8'] | null) - series_multiplier: (Scalars['Int'] | null) - team_avg_kda: (Scalars['float8'] | null) - updated_elo: (Scalars['Int'] | null) - __typename: 'v_player_elo_sum_fields' + __typename: 'v_player_match_performance_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_elo_var_pop_fields { - actual_score: (Scalars['Float'] | null) +export interface v_player_match_performance_var_pop_fields { assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - updated_elo: (Scalars['Float'] | null) - __typename: 'v_player_elo_var_pop_fields' + __typename: 'v_player_match_performance_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_elo_var_samp_fields { - actual_score: (Scalars['Float'] | null) +export interface v_player_match_performance_var_samp_fields { assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - updated_elo: (Scalars['Float'] | null) - __typename: 'v_player_elo_var_samp_fields' + __typename: 'v_player_match_performance_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_elo_variance_fields { - actual_score: (Scalars['Float'] | null) +export interface v_player_match_performance_variance_fields { assists: (Scalars['Float'] | null) - current_elo: (Scalars['Float'] | null) - damage: (Scalars['Float'] | null) - damage_percent: (Scalars['Float'] | null) deaths: (Scalars['Float'] | null) - elo_change: (Scalars['Float'] | null) - expected_score: (Scalars['Float'] | null) - impact: (Scalars['Float'] | null) - k_factor: (Scalars['Float'] | null) - kda: (Scalars['Float'] | null) kills: (Scalars['Float'] | null) - map_losses: (Scalars['Float'] | null) - map_wins: (Scalars['Float'] | null) - opponent_team_elo_avg: (Scalars['Float'] | null) - performance_multiplier: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - player_team_elo_avg: (Scalars['Float'] | null) - series_multiplier: (Scalars['Float'] | null) - team_avg_kda: (Scalars['Float'] | null) - updated_elo: (Scalars['Float'] | null) - __typename: 'v_player_elo_variance_fields' + __typename: 'v_player_match_performance_variance_fields' } -/** columns and relationships of "v_player_map_losses" */ -export interface v_player_map_losses { - /** An object relationship */ - map: (maps | null) - map_id: (Scalars['uuid'] | null) +/** columns and relationships of "v_player_match_rating" */ +export interface v_player_match_rating { + adr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) /** An object relationship */ match: (matches | null) match_id: (Scalars['uuid'] | null) - started_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + player: (players | null) + rounds_played: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_losses' + __typename: 'v_player_match_rating' } -/** aggregated selection of "v_player_map_losses" */ -export interface v_player_map_losses_aggregate { - aggregate: (v_player_map_losses_aggregate_fields | null) - nodes: v_player_map_losses[] - __typename: 'v_player_map_losses_aggregate' +/** aggregated selection of "v_player_match_rating" */ +export interface v_player_match_rating_aggregate { + aggregate: (v_player_match_rating_aggregate_fields | null) + nodes: v_player_match_rating[] + __typename: 'v_player_match_rating_aggregate' } -/** aggregate fields of "v_player_map_losses" */ -export interface v_player_map_losses_aggregate_fields { - avg: (v_player_map_losses_avg_fields | null) +/** aggregate fields of "v_player_match_rating" */ +export interface v_player_match_rating_aggregate_fields { + avg: (v_player_match_rating_avg_fields | null) count: Scalars['Int'] - max: (v_player_map_losses_max_fields | null) - min: (v_player_map_losses_min_fields | null) - stddev: (v_player_map_losses_stddev_fields | null) - stddev_pop: (v_player_map_losses_stddev_pop_fields | null) - stddev_samp: (v_player_map_losses_stddev_samp_fields | null) - sum: (v_player_map_losses_sum_fields | null) - var_pop: (v_player_map_losses_var_pop_fields | null) - var_samp: (v_player_map_losses_var_samp_fields | null) - variance: (v_player_map_losses_variance_fields | null) - __typename: 'v_player_map_losses_aggregate_fields' + max: (v_player_match_rating_max_fields | null) + min: (v_player_match_rating_min_fields | null) + stddev: (v_player_match_rating_stddev_fields | null) + stddev_pop: (v_player_match_rating_stddev_pop_fields | null) + stddev_samp: (v_player_match_rating_stddev_samp_fields | null) + sum: (v_player_match_rating_sum_fields | null) + var_pop: (v_player_match_rating_var_pop_fields | null) + var_samp: (v_player_match_rating_var_samp_fields | null) + variance: (v_player_match_rating_variance_fields | null) + __typename: 'v_player_match_rating_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_map_losses_avg_fields { +export interface v_player_match_rating_avg_fields { + adr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_losses_avg_fields' + __typename: 'v_player_match_rating_avg_fields' } /** aggregate max on columns */ -export interface v_player_map_losses_max_fields { - map_id: (Scalars['uuid'] | null) +export interface v_player_match_rating_max_fields { + adr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) match_id: (Scalars['uuid'] | null) - started_at: (Scalars['timestamptz'] | null) + rounds_played: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_losses_max_fields' + __typename: 'v_player_match_rating_max_fields' } /** aggregate min on columns */ -export interface v_player_map_losses_min_fields { - map_id: (Scalars['uuid'] | null) +export interface v_player_match_rating_min_fields { + adr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) match_id: (Scalars['uuid'] | null) - started_at: (Scalars['timestamptz'] | null) + rounds_played: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_losses_min_fields' + __typename: 'v_player_match_rating_min_fields' } -/** select columns of table "v_player_map_losses" */ -export type v_player_map_losses_select_column = 'map_id' | 'match_id' | 'started_at' | 'steam_id' +/** select columns of table "v_player_match_rating" */ +export type v_player_match_rating_select_column = 'adr' | 'dpr' | 'hltv_rating' | 'kast_pct' | 'kpr' | 'match_id' | 'rounds_played' | 'steam_id' /** aggregate stddev on columns */ -export interface v_player_map_losses_stddev_fields { +export interface v_player_match_rating_stddev_fields { + adr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_losses_stddev_fields' + __typename: 'v_player_match_rating_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_map_losses_stddev_pop_fields { +export interface v_player_match_rating_stddev_pop_fields { + adr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_losses_stddev_pop_fields' + __typename: 'v_player_match_rating_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_map_losses_stddev_samp_fields { +export interface v_player_match_rating_stddev_samp_fields { + adr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_losses_stddev_samp_fields' + __typename: 'v_player_match_rating_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_map_losses_sum_fields { +export interface v_player_match_rating_sum_fields { + adr: (Scalars['numeric'] | null) + dpr: (Scalars['numeric'] | null) + hltv_rating: (Scalars['numeric'] | null) + kast_pct: (Scalars['numeric'] | null) + kpr: (Scalars['numeric'] | null) + rounds_played: (Scalars['Int'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_losses_sum_fields' + __typename: 'v_player_match_rating_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_map_losses_var_pop_fields { +export interface v_player_match_rating_var_pop_fields { + adr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_losses_var_pop_fields' + __typename: 'v_player_match_rating_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_map_losses_var_samp_fields { +export interface v_player_match_rating_var_samp_fields { + adr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_losses_var_samp_fields' + __typename: 'v_player_match_rating_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_map_losses_variance_fields { +export interface v_player_match_rating_variance_fields { + adr: (Scalars['Float'] | null) + dpr: (Scalars['Float'] | null) + hltv_rating: (Scalars['Float'] | null) + kast_pct: (Scalars['Float'] | null) + kpr: (Scalars['Float'] | null) + rounds_played: (Scalars['Float'] | null) steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_losses_variance_fields' + __typename: 'v_player_match_rating_variance_fields' } -/** columns and relationships of "v_player_map_wins" */ -export interface v_player_map_wins { - /** An object relationship */ - map: (maps | null) - map_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: (matches | null) +/** columns and relationships of "v_player_multi_kills" */ +export interface v_player_multi_kills { + attacker_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) match_id: (Scalars['uuid'] | null) - started_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_wins' + round: (Scalars['Int'] | null) + __typename: 'v_player_multi_kills' } -/** aggregated selection of "v_player_map_wins" */ -export interface v_player_map_wins_aggregate { - aggregate: (v_player_map_wins_aggregate_fields | null) - nodes: v_player_map_wins[] - __typename: 'v_player_map_wins_aggregate' +/** aggregated selection of "v_player_multi_kills" */ +export interface v_player_multi_kills_aggregate { + aggregate: (v_player_multi_kills_aggregate_fields | null) + nodes: v_player_multi_kills[] + __typename: 'v_player_multi_kills_aggregate' } -/** aggregate fields of "v_player_map_wins" */ -export interface v_player_map_wins_aggregate_fields { - avg: (v_player_map_wins_avg_fields | null) +/** aggregate fields of "v_player_multi_kills" */ +export interface v_player_multi_kills_aggregate_fields { + avg: (v_player_multi_kills_avg_fields | null) count: Scalars['Int'] - max: (v_player_map_wins_max_fields | null) - min: (v_player_map_wins_min_fields | null) - stddev: (v_player_map_wins_stddev_fields | null) - stddev_pop: (v_player_map_wins_stddev_pop_fields | null) - stddev_samp: (v_player_map_wins_stddev_samp_fields | null) - sum: (v_player_map_wins_sum_fields | null) - var_pop: (v_player_map_wins_var_pop_fields | null) - var_samp: (v_player_map_wins_var_samp_fields | null) - variance: (v_player_map_wins_variance_fields | null) - __typename: 'v_player_map_wins_aggregate_fields' + max: (v_player_multi_kills_max_fields | null) + min: (v_player_multi_kills_min_fields | null) + stddev: (v_player_multi_kills_stddev_fields | null) + stddev_pop: (v_player_multi_kills_stddev_pop_fields | null) + stddev_samp: (v_player_multi_kills_stddev_samp_fields | null) + sum: (v_player_multi_kills_sum_fields | null) + var_pop: (v_player_multi_kills_var_pop_fields | null) + var_samp: (v_player_multi_kills_var_samp_fields | null) + variance: (v_player_multi_kills_variance_fields | null) + __typename: 'v_player_multi_kills_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_map_wins_avg_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_wins_avg_fields' +export interface v_player_multi_kills_avg_fields { + attacker_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_player_multi_kills_avg_fields' } /** aggregate max on columns */ -export interface v_player_map_wins_max_fields { - map_id: (Scalars['uuid'] | null) +export interface v_player_multi_kills_max_fields { + attacker_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) match_id: (Scalars['uuid'] | null) - started_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_wins_max_fields' + round: (Scalars['Int'] | null) + __typename: 'v_player_multi_kills_max_fields' } /** aggregate min on columns */ -export interface v_player_map_wins_min_fields { - map_id: (Scalars['uuid'] | null) +export interface v_player_multi_kills_min_fields { + attacker_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) match_id: (Scalars['uuid'] | null) - started_at: (Scalars['timestamptz'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_wins_min_fields' + round: (Scalars['Int'] | null) + __typename: 'v_player_multi_kills_min_fields' } -/** select columns of table "v_player_map_wins" */ -export type v_player_map_wins_select_column = 'map_id' | 'match_id' | 'started_at' | 'steam_id' +/** select columns of table "v_player_multi_kills" */ +export type v_player_multi_kills_select_column = 'attacker_steam_id' | 'kills' | 'match_id' | 'round' /** aggregate stddev on columns */ -export interface v_player_map_wins_stddev_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_wins_stddev_fields' +export interface v_player_multi_kills_stddev_fields { + attacker_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_player_multi_kills_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_map_wins_stddev_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_wins_stddev_pop_fields' +export interface v_player_multi_kills_stddev_pop_fields { + attacker_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_player_multi_kills_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_map_wins_stddev_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_wins_stddev_samp_fields' +export interface v_player_multi_kills_stddev_samp_fields { + attacker_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_player_multi_kills_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_map_wins_sum_fields { - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_map_wins_sum_fields' +export interface v_player_multi_kills_sum_fields { + attacker_steam_id: (Scalars['bigint'] | null) + kills: (Scalars['bigint'] | null) + round: (Scalars['Int'] | null) + __typename: 'v_player_multi_kills_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_map_wins_var_pop_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_wins_var_pop_fields' +export interface v_player_multi_kills_var_pop_fields { + attacker_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_player_multi_kills_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_map_wins_var_samp_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_wins_var_samp_fields' +export interface v_player_multi_kills_var_samp_fields { + attacker_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_player_multi_kills_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_map_wins_variance_fields { - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_map_wins_variance_fields' +export interface v_player_multi_kills_variance_fields { + attacker_steam_id: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + round: (Scalars['Float'] | null) + __typename: 'v_player_multi_kills_variance_fields' } -/** columns and relationships of "v_player_match_head_to_head" */ -export interface v_player_match_head_to_head { - /** An object relationship */ - attacked: (players | null) - attacked_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - attacker: (players | null) - attacker_steam_id: (Scalars['bigint'] | null) - damage_dealt: (Scalars['Int'] | null) - flash_count: (Scalars['bigint'] | null) - headshot_kills: (Scalars['bigint'] | null) +/** columns and relationships of "v_player_weapon_damage" */ +export interface v_player_weapon_damage { + damage: (Scalars['bigint'] | null) hits: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - __typename: 'v_player_match_head_to_head' + player_steam_id: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_damage' } -/** aggregated selection of "v_player_match_head_to_head" */ -export interface v_player_match_head_to_head_aggregate { - aggregate: (v_player_match_head_to_head_aggregate_fields | null) - nodes: v_player_match_head_to_head[] - __typename: 'v_player_match_head_to_head_aggregate' +/** aggregated selection of "v_player_weapon_damage" */ +export interface v_player_weapon_damage_aggregate { + aggregate: (v_player_weapon_damage_aggregate_fields | null) + nodes: v_player_weapon_damage[] + __typename: 'v_player_weapon_damage_aggregate' } -/** aggregate fields of "v_player_match_head_to_head" */ -export interface v_player_match_head_to_head_aggregate_fields { - avg: (v_player_match_head_to_head_avg_fields | null) +/** aggregate fields of "v_player_weapon_damage" */ +export interface v_player_weapon_damage_aggregate_fields { + avg: (v_player_weapon_damage_avg_fields | null) count: Scalars['Int'] - max: (v_player_match_head_to_head_max_fields | null) - min: (v_player_match_head_to_head_min_fields | null) - stddev: (v_player_match_head_to_head_stddev_fields | null) - stddev_pop: (v_player_match_head_to_head_stddev_pop_fields | null) - stddev_samp: (v_player_match_head_to_head_stddev_samp_fields | null) - sum: (v_player_match_head_to_head_sum_fields | null) - var_pop: (v_player_match_head_to_head_var_pop_fields | null) - var_samp: (v_player_match_head_to_head_var_samp_fields | null) - variance: (v_player_match_head_to_head_variance_fields | null) - __typename: 'v_player_match_head_to_head_aggregate_fields' + max: (v_player_weapon_damage_max_fields | null) + min: (v_player_weapon_damage_min_fields | null) + stddev: (v_player_weapon_damage_stddev_fields | null) + stddev_pop: (v_player_weapon_damage_stddev_pop_fields | null) + stddev_samp: (v_player_weapon_damage_stddev_samp_fields | null) + sum: (v_player_weapon_damage_sum_fields | null) + var_pop: (v_player_weapon_damage_var_pop_fields | null) + var_samp: (v_player_weapon_damage_var_samp_fields | null) + variance: (v_player_weapon_damage_variance_fields | null) + __typename: 'v_player_weapon_damage_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_match_head_to_head_avg_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) +export interface v_player_weapon_damage_avg_fields { + damage: (Scalars['Float'] | null) hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_avg_fields' + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_avg_fields' } /** aggregate max on columns */ -export interface v_player_match_head_to_head_max_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - damage_dealt: (Scalars['Int'] | null) - flash_count: (Scalars['bigint'] | null) - headshot_kills: (Scalars['bigint'] | null) +export interface v_player_weapon_damage_max_fields { + damage: (Scalars['bigint'] | null) hits: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - match_id: (Scalars['uuid'] | null) - __typename: 'v_player_match_head_to_head_max_fields' + player_steam_id: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_damage_max_fields' } /** aggregate min on columns */ -export interface v_player_match_head_to_head_min_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - damage_dealt: (Scalars['Int'] | null) - flash_count: (Scalars['bigint'] | null) - headshot_kills: (Scalars['bigint'] | null) +export interface v_player_weapon_damage_min_fields { + damage: (Scalars['bigint'] | null) hits: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - match_id: (Scalars['uuid'] | null) - __typename: 'v_player_match_head_to_head_min_fields' + player_steam_id: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_damage_min_fields' +} + + +/** select columns of table "v_player_weapon_damage" */ +export type v_player_weapon_damage_select_column = 'damage' | 'hits' | 'player_steam_id' | 'source' | 'type' | 'with' + + +/** aggregate stddev on columns */ +export interface v_player_weapon_damage_stddev_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_player_weapon_damage_stddev_pop_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_player_weapon_damage_stddev_samp_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_player_weapon_damage_sum_fields { + damage: (Scalars['bigint'] | null) + hits: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_player_weapon_damage_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_player_weapon_damage_var_pop_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_player_weapon_damage_var_samp_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_player_weapon_damage_variance_fields { + damage: (Scalars['Float'] | null) + hits: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_player_weapon_damage_variance_fields' +} + + +/** columns and relationships of "v_player_weapon_kills" */ +export interface v_player_weapon_kills { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_kills' +} + + +/** aggregated selection of "v_player_weapon_kills" */ +export interface v_player_weapon_kills_aggregate { + aggregate: (v_player_weapon_kills_aggregate_fields | null) + nodes: v_player_weapon_kills[] + __typename: 'v_player_weapon_kills_aggregate' +} + + +/** aggregate fields of "v_player_weapon_kills" */ +export interface v_player_weapon_kills_aggregate_fields { + avg: (v_player_weapon_kills_avg_fields | null) + count: Scalars['Int'] + max: (v_player_weapon_kills_max_fields | null) + min: (v_player_weapon_kills_min_fields | null) + stddev: (v_player_weapon_kills_stddev_fields | null) + stddev_pop: (v_player_weapon_kills_stddev_pop_fields | null) + stddev_samp: (v_player_weapon_kills_stddev_samp_fields | null) + sum: (v_player_weapon_kills_sum_fields | null) + var_pop: (v_player_weapon_kills_var_pop_fields | null) + var_samp: (v_player_weapon_kills_var_samp_fields | null) + variance: (v_player_weapon_kills_variance_fields | null) + __typename: 'v_player_weapon_kills_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_player_weapon_kills_avg_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_player_weapon_kills_max_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_kills_max_fields' } -/** select columns of table "v_player_match_head_to_head" */ -export type v_player_match_head_to_head_select_column = 'attacked_steam_id' | 'attacker_steam_id' | 'damage_dealt' | 'flash_count' | 'headshot_kills' | 'hits' | 'kills' | 'match_id' +/** aggregate min on columns */ +export interface v_player_weapon_kills_min_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + source: (Scalars['String'] | null) + type: (Scalars['String'] | null) + with: (Scalars['String'] | null) + __typename: 'v_player_weapon_kills_min_fields' +} + + +/** select columns of table "v_player_weapon_kills" */ +export type v_player_weapon_kills_select_column = 'kill_count' | 'player_steam_id' | 'rounds' | 'source' | 'type' | 'with' /** aggregate stddev on columns */ -export interface v_player_match_head_to_head_stddev_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_fields' +export interface v_player_weapon_kills_stddev_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_match_head_to_head_stddev_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_pop_fields' +export interface v_player_weapon_kills_stddev_pop_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_match_head_to_head_stddev_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_stddev_samp_fields' +export interface v_player_weapon_kills_stddev_samp_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_match_head_to_head_sum_fields { - attacked_steam_id: (Scalars['bigint'] | null) - attacker_steam_id: (Scalars['bigint'] | null) - damage_dealt: (Scalars['Int'] | null) - flash_count: (Scalars['bigint'] | null) - headshot_kills: (Scalars['bigint'] | null) - hits: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - __typename: 'v_player_match_head_to_head_sum_fields' +export interface v_player_weapon_kills_sum_fields { + kill_count: (Scalars['bigint'] | null) + player_steam_id: (Scalars['bigint'] | null) + rounds: (Scalars['bigint'] | null) + __typename: 'v_player_weapon_kills_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_match_head_to_head_var_pop_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_var_pop_fields' +export interface v_player_weapon_kills_var_pop_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_match_head_to_head_var_samp_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_var_samp_fields' +export interface v_player_weapon_kills_var_samp_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_match_head_to_head_variance_fields { - attacked_steam_id: (Scalars['Float'] | null) - attacker_steam_id: (Scalars['Float'] | null) - damage_dealt: (Scalars['Float'] | null) - flash_count: (Scalars['Float'] | null) - headshot_kills: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - __typename: 'v_player_match_head_to_head_variance_fields' +export interface v_player_weapon_kills_variance_fields { + kill_count: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + rounds: (Scalars['Float'] | null) + __typename: 'v_player_weapon_kills_variance_fields' } -/** columns and relationships of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) +/** columns and relationships of "v_pool_maps" */ +export interface v_pool_maps { + active_pool: (Scalars['Boolean'] | null) + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) /** An object relationship */ - player: (players | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv' + map_pool: (map_pools | null) + map_pool_id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + type: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'v_pool_maps' } -/** aggregated selection of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_aggregate { - aggregate: (v_player_match_map_hltv_aggregate_fields | null) - nodes: v_player_match_map_hltv[] - __typename: 'v_player_match_map_hltv_aggregate' +/** aggregated selection of "v_pool_maps" */ +export interface v_pool_maps_aggregate { + aggregate: (v_pool_maps_aggregate_fields | null) + nodes: v_pool_maps[] + __typename: 'v_pool_maps_aggregate' } -/** aggregate fields of "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_aggregate_fields { - avg: (v_player_match_map_hltv_avg_fields | null) +/** aggregate fields of "v_pool_maps" */ +export interface v_pool_maps_aggregate_fields { count: Scalars['Int'] - max: (v_player_match_map_hltv_max_fields | null) - min: (v_player_match_map_hltv_min_fields | null) - stddev: (v_player_match_map_hltv_stddev_fields | null) - stddev_pop: (v_player_match_map_hltv_stddev_pop_fields | null) - stddev_samp: (v_player_match_map_hltv_stddev_samp_fields | null) - sum: (v_player_match_map_hltv_sum_fields | null) - var_pop: (v_player_match_map_hltv_var_pop_fields | null) - var_samp: (v_player_match_map_hltv_var_samp_fields | null) - variance: (v_player_match_map_hltv_variance_fields | null) - __typename: 'v_player_match_map_hltv_aggregate_fields' -} - - -/** aggregate avg on columns */ -export interface v_player_match_map_hltv_avg_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_avg_fields' + max: (v_pool_maps_max_fields | null) + min: (v_pool_maps_min_fields | null) + __typename: 'v_pool_maps_aggregate_fields' } /** aggregate max on columns */ -export interface v_player_match_map_hltv_max_fields { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv_max_fields' +export interface v_pool_maps_max_fields { + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + map_pool_id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + type: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'v_pool_maps_max_fields' } /** aggregate min on columns */ -export interface v_player_match_map_hltv_min_fields { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv_min_fields' +export interface v_pool_maps_min_fields { + id: (Scalars['uuid'] | null) + label: (Scalars['String'] | null) + map_pool_id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + patch: (Scalars['String'] | null) + poster: (Scalars['String'] | null) + type: (Scalars['String'] | null) + workshop_map_id: (Scalars['String'] | null) + __typename: 'v_pool_maps_min_fields' } -/** response of any mutation on the table "v_player_match_map_hltv" */ -export interface v_player_match_map_hltv_mutation_response { +/** response of any mutation on the table "v_pool_maps" */ +export interface v_pool_maps_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: v_player_match_map_hltv[] - __typename: 'v_player_match_map_hltv_mutation_response' + returning: v_pool_maps[] + __typename: 'v_pool_maps_mutation_response' } -/** select columns of table "v_player_match_map_hltv" */ -export type v_player_match_map_hltv_select_column = 'adr' | 'apr' | 'dpr' | 'hltv_rating' | 'kast_pct' | 'kpr' | 'match_id' | 'match_map_id' | 'rounds_played' | 'steam_id' +/** select columns of table "v_pool_maps" */ +export type v_pool_maps_select_column = 'active_pool' | 'id' | 'label' | 'map_pool_id' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' + + +/** select "v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_pool_maps" */ +export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns = 'active_pool' + + +/** select "v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_pool_maps" */ +export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns = 'active_pool' + + +/** columns and relationships of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status' +} + + +/** aggregated selection of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_aggregate { + aggregate: (v_steam_account_pool_status_aggregate_fields | null) + nodes: v_steam_account_pool_status[] + __typename: 'v_steam_account_pool_status_aggregate' +} + + +/** aggregate fields of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_aggregate_fields { + avg: (v_steam_account_pool_status_avg_fields | null) + count: Scalars['Int'] + max: (v_steam_account_pool_status_max_fields | null) + min: (v_steam_account_pool_status_min_fields | null) + stddev: (v_steam_account_pool_status_stddev_fields | null) + stddev_pop: (v_steam_account_pool_status_stddev_pop_fields | null) + stddev_samp: (v_steam_account_pool_status_stddev_samp_fields | null) + sum: (v_steam_account_pool_status_sum_fields | null) + var_pop: (v_steam_account_pool_status_var_pop_fields | null) + var_samp: (v_steam_account_pool_status_var_samp_fields | null) + variance: (v_steam_account_pool_status_variance_fields | null) + __typename: 'v_steam_account_pool_status_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_steam_account_pool_status_avg_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_steam_account_pool_status_max_fields { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status_max_fields' +} + + +/** aggregate min on columns */ +export interface v_steam_account_pool_status_min_fields { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status_min_fields' +} + + +/** select columns of table "v_steam_account_pool_status" */ +export type v_steam_account_pool_status_select_column = 'busy_accounts' | 'free_accounts' | 'id' | 'total_accounts' /** aggregate stddev on columns */ -export interface v_player_match_map_hltv_stddev_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_stddev_fields' +export interface v_steam_account_pool_status_stddev_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_match_map_hltv_stddev_pop_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_stddev_pop_fields' +export interface v_steam_account_pool_status_stddev_pop_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_match_map_hltv_stddev_samp_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_stddev_samp_fields' +export interface v_steam_account_pool_status_stddev_samp_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_match_map_hltv_sum_fields { - adr: (Scalars['numeric'] | null) - apr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_map_hltv_sum_fields' +export interface v_steam_account_pool_status_sum_fields { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_match_map_hltv_var_pop_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_var_pop_fields' +export interface v_steam_account_pool_status_var_pop_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_match_map_hltv_var_samp_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_var_samp_fields' +export interface v_steam_account_pool_status_var_samp_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_match_map_hltv_variance_fields { - adr: (Scalars['Float'] | null) - apr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_map_hltv_variance_fields' +export interface v_steam_account_pool_status_variance_fields { + busy_accounts: (Scalars['Float'] | null) + free_accounts: (Scalars['Float'] | null) + id: (Scalars['Float'] | null) + total_accounts: (Scalars['Float'] | null) + __typename: 'v_steam_account_pool_status_variance_fields' } -/** columns and relationships of "v_player_match_map_roles" */ -export interface v_player_match_map_roles { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - lineup_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) +/** columns and relationships of "v_team_ranks" */ +export interface v_team_ranks { + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + roster_size: (Scalars['bigint'] | null) /** An object relationship */ - player: (players | null) - role: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles' + team: (teams | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_ranks' } -/** aggregated selection of "v_player_match_map_roles" */ -export interface v_player_match_map_roles_aggregate { - aggregate: (v_player_match_map_roles_aggregate_fields | null) - nodes: v_player_match_map_roles[] - __typename: 'v_player_match_map_roles_aggregate' +/** aggregated selection of "v_team_ranks" */ +export interface v_team_ranks_aggregate { + aggregate: (v_team_ranks_aggregate_fields | null) + nodes: v_team_ranks[] + __typename: 'v_team_ranks_aggregate' } -/** aggregate fields of "v_player_match_map_roles" */ -export interface v_player_match_map_roles_aggregate_fields { - avg: (v_player_match_map_roles_avg_fields | null) +/** aggregate fields of "v_team_ranks" */ +export interface v_team_ranks_aggregate_fields { + avg: (v_team_ranks_avg_fields | null) count: Scalars['Int'] - max: (v_player_match_map_roles_max_fields | null) - min: (v_player_match_map_roles_min_fields | null) - stddev: (v_player_match_map_roles_stddev_fields | null) - stddev_pop: (v_player_match_map_roles_stddev_pop_fields | null) - stddev_samp: (v_player_match_map_roles_stddev_samp_fields | null) - sum: (v_player_match_map_roles_sum_fields | null) - var_pop: (v_player_match_map_roles_var_pop_fields | null) - var_samp: (v_player_match_map_roles_var_samp_fields | null) - variance: (v_player_match_map_roles_variance_fields | null) - __typename: 'v_player_match_map_roles_aggregate_fields' + max: (v_team_ranks_max_fields | null) + min: (v_team_ranks_min_fields | null) + stddev: (v_team_ranks_stddev_fields | null) + stddev_pop: (v_team_ranks_stddev_pop_fields | null) + stddev_samp: (v_team_ranks_stddev_samp_fields | null) + sum: (v_team_ranks_sum_fields | null) + var_pop: (v_team_ranks_var_pop_fields | null) + var_samp: (v_team_ranks_var_samp_fields | null) + variance: (v_team_ranks_variance_fields | null) + __typename: 'v_team_ranks_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_match_map_roles_avg_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_avg_fields' +export interface v_team_ranks_avg_fields { + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + roster_size: (Scalars['Float'] | null) + __typename: 'v_team_ranks_avg_fields' } /** aggregate max on columns */ -export interface v_player_match_map_roles_max_fields { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - lineup_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - role: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles_max_fields' +export interface v_team_ranks_max_fields { + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + roster_size: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_ranks_max_fields' } /** aggregate min on columns */ -export interface v_player_match_map_roles_min_fields { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - lineup_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - match_map_id: (Scalars['uuid'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - role: (Scalars['String'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles_min_fields' +export interface v_team_ranks_min_fields { + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + roster_size: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_ranks_min_fields' } -/** select columns of table "v_player_match_map_roles" */ -export type v_player_match_map_roles_select_column = 'adr' | 'awp_kills' | 'awp_share' | 'deaths' | 'dpr' | 'entry_rate' | 'flash_assists' | 'hltv_rating' | 'kast_pct' | 'kills' | 'kpr' | 'lineup_id' | 'match_id' | 'match_map_id' | 'open_deaths' | 'open_kills' | 'opening_attempts' | 'role' | 'rounds' | 'steam_id' | 'support_idx' | 'total_kills' | 'trade_kill_successes' | 'traded_death_successes' | 'util_damage' +/** select columns of table "v_team_ranks" */ +export type v_team_ranks_select_column = 'avg_elo' | 'avg_faceit_elo' | 'avg_faceit_level' | 'avg_premier' | 'max_elo' | 'min_elo' | 'roster_size' | 'team_id' /** aggregate stddev on columns */ -export interface v_player_match_map_roles_stddev_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_stddev_fields' +export interface v_team_ranks_stddev_fields { + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + roster_size: (Scalars['Float'] | null) + __typename: 'v_team_ranks_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_match_map_roles_stddev_pop_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_stddev_pop_fields' +export interface v_team_ranks_stddev_pop_fields { + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + roster_size: (Scalars['Float'] | null) + __typename: 'v_team_ranks_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_match_map_roles_stddev_samp_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_stddev_samp_fields' +export interface v_team_ranks_stddev_samp_fields { + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + roster_size: (Scalars['Float'] | null) + __typename: 'v_team_ranks_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_match_map_roles_sum_fields { - adr: (Scalars['numeric'] | null) - awp_kills: (Scalars['Int'] | null) - awp_share: (Scalars['numeric'] | null) - deaths: (Scalars['Int'] | null) - dpr: (Scalars['numeric'] | null) - entry_rate: (Scalars['numeric'] | null) - flash_assists: (Scalars['Int'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kills: (Scalars['Int'] | null) - kpr: (Scalars['numeric'] | null) - open_deaths: (Scalars['Int'] | null) - open_kills: (Scalars['Int'] | null) - opening_attempts: (Scalars['Int'] | null) - rounds: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - support_idx: (Scalars['numeric'] | null) - total_kills: (Scalars['Int'] | null) - trade_kill_successes: (Scalars['Int'] | null) - traded_death_successes: (Scalars['Int'] | null) - util_damage: (Scalars['Int'] | null) - __typename: 'v_player_match_map_roles_sum_fields' +export interface v_team_ranks_sum_fields { + avg_elo: (Scalars['Int'] | null) + avg_faceit_elo: (Scalars['Int'] | null) + avg_faceit_level: (Scalars['float8'] | null) + avg_premier: (Scalars['Int'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + roster_size: (Scalars['bigint'] | null) + __typename: 'v_team_ranks_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_match_map_roles_var_pop_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_var_pop_fields' +export interface v_team_ranks_var_pop_fields { + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + roster_size: (Scalars['Float'] | null) + __typename: 'v_team_ranks_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_match_map_roles_var_samp_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_var_samp_fields' +export interface v_team_ranks_var_samp_fields { + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + roster_size: (Scalars['Float'] | null) + __typename: 'v_team_ranks_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_match_map_roles_variance_fields { - adr: (Scalars['Float'] | null) - awp_kills: (Scalars['Float'] | null) - awp_share: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - entry_rate: (Scalars['Float'] | null) - flash_assists: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - open_deaths: (Scalars['Float'] | null) - open_kills: (Scalars['Float'] | null) - opening_attempts: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - support_idx: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - trade_kill_successes: (Scalars['Float'] | null) - traded_death_successes: (Scalars['Float'] | null) - util_damage: (Scalars['Float'] | null) - __typename: 'v_player_match_map_roles_variance_fields' +export interface v_team_ranks_variance_fields { + avg_elo: (Scalars['Float'] | null) + avg_faceit_elo: (Scalars['Float'] | null) + avg_faceit_level: (Scalars['Float'] | null) + avg_premier: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + roster_size: (Scalars['Float'] | null) + __typename: 'v_team_ranks_variance_fields' } -/** columns and relationships of "v_player_match_performance" */ -export interface v_player_match_performance { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - /** An object relationship */ - map: (maps | null) - map_id: (Scalars['uuid'] | null) +/** columns and relationships of "v_team_reputation" */ +export interface v_team_reputation { + late_cancels: (Scalars['bigint'] | null) + no_shows: (Scalars['bigint'] | null) + reliability_pct: (Scalars['numeric'] | null) + scrims_completed: (Scalars['bigint'] | null) /** An object relationship */ - match: (matches | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - __typename: 'v_player_match_performance' + team: (teams | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_reputation' } -/** aggregated selection of "v_player_match_performance" */ -export interface v_player_match_performance_aggregate { - aggregate: (v_player_match_performance_aggregate_fields | null) - nodes: v_player_match_performance[] - __typename: 'v_player_match_performance_aggregate' +/** aggregated selection of "v_team_reputation" */ +export interface v_team_reputation_aggregate { + aggregate: (v_team_reputation_aggregate_fields | null) + nodes: v_team_reputation[] + __typename: 'v_team_reputation_aggregate' } -/** aggregate fields of "v_player_match_performance" */ -export interface v_player_match_performance_aggregate_fields { - avg: (v_player_match_performance_avg_fields | null) +/** aggregate fields of "v_team_reputation" */ +export interface v_team_reputation_aggregate_fields { + avg: (v_team_reputation_avg_fields | null) count: Scalars['Int'] - max: (v_player_match_performance_max_fields | null) - min: (v_player_match_performance_min_fields | null) - stddev: (v_player_match_performance_stddev_fields | null) - stddev_pop: (v_player_match_performance_stddev_pop_fields | null) - stddev_samp: (v_player_match_performance_stddev_samp_fields | null) - sum: (v_player_match_performance_sum_fields | null) - var_pop: (v_player_match_performance_var_pop_fields | null) - var_samp: (v_player_match_performance_var_samp_fields | null) - variance: (v_player_match_performance_variance_fields | null) - __typename: 'v_player_match_performance_aggregate_fields' + max: (v_team_reputation_max_fields | null) + min: (v_team_reputation_min_fields | null) + stddev: (v_team_reputation_stddev_fields | null) + stddev_pop: (v_team_reputation_stddev_pop_fields | null) + stddev_samp: (v_team_reputation_stddev_samp_fields | null) + sum: (v_team_reputation_sum_fields | null) + var_pop: (v_team_reputation_var_pop_fields | null) + var_samp: (v_team_reputation_var_samp_fields | null) + variance: (v_team_reputation_variance_fields | null) + __typename: 'v_team_reputation_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_match_performance_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_avg_fields' +export interface v_team_reputation_avg_fields { + late_cancels: (Scalars['Float'] | null) + no_shows: (Scalars['Float'] | null) + reliability_pct: (Scalars['Float'] | null) + scrims_completed: (Scalars['Float'] | null) + __typename: 'v_team_reputation_avg_fields' } /** aggregate max on columns */ -export interface v_player_match_performance_max_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - map_id: (Scalars['uuid'] | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - __typename: 'v_player_match_performance_max_fields' +export interface v_team_reputation_max_fields { + late_cancels: (Scalars['bigint'] | null) + no_shows: (Scalars['bigint'] | null) + reliability_pct: (Scalars['numeric'] | null) + scrims_completed: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_reputation_max_fields' } /** aggregate min on columns */ -export interface v_player_match_performance_min_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - map_id: (Scalars['uuid'] | null) - match_created_at: (Scalars['timestamptz'] | null) - match_id: (Scalars['uuid'] | null) - match_result: (Scalars['String'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - __typename: 'v_player_match_performance_min_fields' +export interface v_team_reputation_min_fields { + late_cancels: (Scalars['bigint'] | null) + no_shows: (Scalars['bigint'] | null) + reliability_pct: (Scalars['numeric'] | null) + scrims_completed: (Scalars['bigint'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'v_team_reputation_min_fields' } -/** select columns of table "v_player_match_performance" */ -export type v_player_match_performance_select_column = 'assists' | 'deaths' | 'kills' | 'map_id' | 'match_created_at' | 'match_id' | 'match_result' | 'player_steam_id' | 'source' | 'type' +/** select columns of table "v_team_reputation" */ +export type v_team_reputation_select_column = 'late_cancels' | 'no_shows' | 'reliability_pct' | 'scrims_completed' | 'team_id' /** aggregate stddev on columns */ -export interface v_player_match_performance_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_stddev_fields' +export interface v_team_reputation_stddev_fields { + late_cancels: (Scalars['Float'] | null) + no_shows: (Scalars['Float'] | null) + reliability_pct: (Scalars['Float'] | null) + scrims_completed: (Scalars['Float'] | null) + __typename: 'v_team_reputation_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_match_performance_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_stddev_pop_fields' +export interface v_team_reputation_stddev_pop_fields { + late_cancels: (Scalars['Float'] | null) + no_shows: (Scalars['Float'] | null) + reliability_pct: (Scalars['Float'] | null) + scrims_completed: (Scalars['Float'] | null) + __typename: 'v_team_reputation_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_match_performance_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_stddev_samp_fields' +export interface v_team_reputation_stddev_samp_fields { + late_cancels: (Scalars['Float'] | null) + no_shows: (Scalars['Float'] | null) + reliability_pct: (Scalars['Float'] | null) + scrims_completed: (Scalars['Float'] | null) + __typename: 'v_team_reputation_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_match_performance_sum_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - kills: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_performance_sum_fields' +export interface v_team_reputation_sum_fields { + late_cancels: (Scalars['bigint'] | null) + no_shows: (Scalars['bigint'] | null) + reliability_pct: (Scalars['numeric'] | null) + scrims_completed: (Scalars['bigint'] | null) + __typename: 'v_team_reputation_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_match_performance_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_var_pop_fields' +export interface v_team_reputation_var_pop_fields { + late_cancels: (Scalars['Float'] | null) + no_shows: (Scalars['Float'] | null) + reliability_pct: (Scalars['Float'] | null) + scrims_completed: (Scalars['Float'] | null) + __typename: 'v_team_reputation_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_match_performance_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_var_samp_fields' +export interface v_team_reputation_var_samp_fields { + late_cancels: (Scalars['Float'] | null) + no_shows: (Scalars['Float'] | null) + reliability_pct: (Scalars['Float'] | null) + scrims_completed: (Scalars['Float'] | null) + __typename: 'v_team_reputation_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_match_performance_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_performance_variance_fields' +export interface v_team_reputation_variance_fields { + late_cancels: (Scalars['Float'] | null) + no_shows: (Scalars['Float'] | null) + reliability_pct: (Scalars['Float'] | null) + scrims_completed: (Scalars['Float'] | null) + __typename: 'v_team_reputation_variance_fields' } -/** columns and relationships of "v_player_match_rating" */ -export interface v_player_match_rating { - adr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) +/** columns and relationships of "v_team_stage_results" */ +export interface v_team_stage_results { + group_number: Scalars['Int'] + head_to_head_match_wins: Scalars['Int'] + head_to_head_rounds_won: Scalars['Int'] + losses: Scalars['Int'] + maps_lost: Scalars['Int'] + maps_won: Scalars['Int'] + matches_played: Scalars['Int'] + matches_remaining: Scalars['Int'] + placement: Scalars['Int'] + rank: Scalars['Int'] + rounds_lost: Scalars['Int'] + rounds_won: Scalars['Int'] /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) + stage: (tournament_stages | null) /** An object relationship */ - player: (players | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_rating' + team: (tournament_teams | null) + team_kdr: Scalars['float8'] + total_deaths: Scalars['Int'] + total_kills: Scalars['Int'] + tournament_stage_id: Scalars['uuid'] + tournament_team_id: Scalars['uuid'] + wins: Scalars['Int'] + __typename: 'v_team_stage_results' } -/** aggregated selection of "v_player_match_rating" */ -export interface v_player_match_rating_aggregate { - aggregate: (v_player_match_rating_aggregate_fields | null) - nodes: v_player_match_rating[] - __typename: 'v_player_match_rating_aggregate' +/** aggregated selection of "v_team_stage_results" */ +export interface v_team_stage_results_aggregate { + aggregate: (v_team_stage_results_aggregate_fields | null) + nodes: v_team_stage_results[] + __typename: 'v_team_stage_results_aggregate' } -/** aggregate fields of "v_player_match_rating" */ -export interface v_player_match_rating_aggregate_fields { - avg: (v_player_match_rating_avg_fields | null) +/** aggregate fields of "v_team_stage_results" */ +export interface v_team_stage_results_aggregate_fields { + avg: (v_team_stage_results_avg_fields | null) count: Scalars['Int'] - max: (v_player_match_rating_max_fields | null) - min: (v_player_match_rating_min_fields | null) - stddev: (v_player_match_rating_stddev_fields | null) - stddev_pop: (v_player_match_rating_stddev_pop_fields | null) - stddev_samp: (v_player_match_rating_stddev_samp_fields | null) - sum: (v_player_match_rating_sum_fields | null) - var_pop: (v_player_match_rating_var_pop_fields | null) - var_samp: (v_player_match_rating_var_samp_fields | null) - variance: (v_player_match_rating_variance_fields | null) - __typename: 'v_player_match_rating_aggregate_fields' + max: (v_team_stage_results_max_fields | null) + min: (v_team_stage_results_min_fields | null) + stddev: (v_team_stage_results_stddev_fields | null) + stddev_pop: (v_team_stage_results_stddev_pop_fields | null) + stddev_samp: (v_team_stage_results_stddev_samp_fields | null) + sum: (v_team_stage_results_sum_fields | null) + var_pop: (v_team_stage_results_var_pop_fields | null) + var_samp: (v_team_stage_results_var_samp_fields | null) + variance: (v_team_stage_results_variance_fields | null) + __typename: 'v_team_stage_results_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_match_rating_avg_fields { - adr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_rating_avg_fields' +export interface v_team_stage_results_avg_fields { + group_number: (Scalars['Float'] | null) + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_stage_results_avg_fields' } +/** unique or primary key constraints on table "v_team_stage_results" */ +export type v_team_stage_results_constraint = 'v_team_stage_results_pkey' + + /** aggregate max on columns */ -export interface v_player_match_rating_max_fields { - adr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_rating_max_fields' +export interface v_team_stage_results_max_fields { + group_number: (Scalars['Int'] | null) + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + placement: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_stage_results_max_fields' } /** aggregate min on columns */ -export interface v_player_match_rating_min_fields { - adr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - match_id: (Scalars['uuid'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_rating_min_fields' +export interface v_team_stage_results_min_fields { + group_number: (Scalars['Int'] | null) + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + placement: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + tournament_stage_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_stage_results_min_fields' } -/** select columns of table "v_player_match_rating" */ -export type v_player_match_rating_select_column = 'adr' | 'dpr' | 'hltv_rating' | 'kast_pct' | 'kpr' | 'match_id' | 'rounds_played' | 'steam_id' +/** response of any mutation on the table "v_team_stage_results" */ +export interface v_team_stage_results_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: v_team_stage_results[] + __typename: 'v_team_stage_results_mutation_response' +} -/** aggregate stddev on columns */ -export interface v_player_match_rating_stddev_fields { - adr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_rating_stddev_fields' -} +/** select columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column = 'group_number' | 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'placement' | 'rank' | 'rounds_lost' | 'rounds_won' | 'team_kdr' | 'total_deaths' | 'total_kills' | 'tournament_stage_id' | 'tournament_team_id' | 'wins' -/** aggregate stddev_pop on columns */ -export interface v_player_match_rating_stddev_pop_fields { - adr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_rating_stddev_pop_fields' -} +/** select "v_team_stage_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns = 'team_kdr' -/** aggregate stddev_samp on columns */ -export interface v_player_match_rating_stddev_samp_fields { - adr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_rating_stddev_samp_fields' -} +/** select "v_team_stage_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns = 'team_kdr' -/** aggregate sum on columns */ -export interface v_player_match_rating_sum_fields { - adr: (Scalars['numeric'] | null) - dpr: (Scalars['numeric'] | null) - hltv_rating: (Scalars['numeric'] | null) - kast_pct: (Scalars['numeric'] | null) - kpr: (Scalars['numeric'] | null) - rounds_played: (Scalars['Int'] | null) - steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_match_rating_sum_fields' -} +/** select "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns = 'team_kdr' -/** aggregate var_pop on columns */ -export interface v_player_match_rating_var_pop_fields { - adr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_rating_var_pop_fields' -} +/** select "v_team_stage_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns = 'team_kdr' -/** aggregate var_samp on columns */ -export interface v_player_match_rating_var_samp_fields { - adr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_rating_var_samp_fields' -} +/** select "v_team_stage_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns = 'team_kdr' -/** aggregate variance on columns */ -export interface v_player_match_rating_variance_fields { - adr: (Scalars['Float'] | null) - dpr: (Scalars['Float'] | null) - hltv_rating: (Scalars['Float'] | null) - kast_pct: (Scalars['Float'] | null) - kpr: (Scalars['Float'] | null) - rounds_played: (Scalars['Float'] | null) - steam_id: (Scalars['Float'] | null) - __typename: 'v_player_match_rating_variance_fields' -} +/** select "v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'team_kdr' -/** columns and relationships of "v_player_multi_kills" */ -export interface v_player_multi_kills { - attacker_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - match_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_player_multi_kills' +/** select "v_team_stage_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns = 'team_kdr' + + +/** select "v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_stage_results" */ +export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns = 'team_kdr' + + +/** aggregate stddev on columns */ +export interface v_team_stage_results_stddev_fields { + group_number: (Scalars['Float'] | null) + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_stage_results_stddev_fields' } -/** aggregated selection of "v_player_multi_kills" */ -export interface v_player_multi_kills_aggregate { - aggregate: (v_player_multi_kills_aggregate_fields | null) - nodes: v_player_multi_kills[] - __typename: 'v_player_multi_kills_aggregate' +/** aggregate stddev_pop on columns */ +export interface v_team_stage_results_stddev_pop_fields { + group_number: (Scalars['Float'] | null) + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_stage_results_stddev_pop_fields' } -/** aggregate fields of "v_player_multi_kills" */ -export interface v_player_multi_kills_aggregate_fields { - avg: (v_player_multi_kills_avg_fields | null) - count: Scalars['Int'] - max: (v_player_multi_kills_max_fields | null) - min: (v_player_multi_kills_min_fields | null) - stddev: (v_player_multi_kills_stddev_fields | null) - stddev_pop: (v_player_multi_kills_stddev_pop_fields | null) - stddev_samp: (v_player_multi_kills_stddev_samp_fields | null) - sum: (v_player_multi_kills_sum_fields | null) - var_pop: (v_player_multi_kills_var_pop_fields | null) - var_samp: (v_player_multi_kills_var_samp_fields | null) - variance: (v_player_multi_kills_variance_fields | null) - __typename: 'v_player_multi_kills_aggregate_fields' +/** aggregate stddev_samp on columns */ +export interface v_team_stage_results_stddev_samp_fields { + group_number: (Scalars['Float'] | null) + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_stage_results_stddev_samp_fields' } -/** aggregate avg on columns */ -export interface v_player_multi_kills_avg_fields { - attacker_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_player_multi_kills_avg_fields' +/** aggregate sum on columns */ +export interface v_team_stage_results_sum_fields { + group_number: (Scalars['Int'] | null) + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + placement: (Scalars['Int'] | null) + rank: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_stage_results_sum_fields' } -/** aggregate max on columns */ -export interface v_player_multi_kills_max_fields { - attacker_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - match_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_player_multi_kills_max_fields' +/** update columns of table "v_team_stage_results" */ +export type v_team_stage_results_update_column = 'group_number' | 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'placement' | 'rank' | 'rounds_lost' | 'rounds_won' | 'team_kdr' | 'total_deaths' | 'total_kills' | 'tournament_stage_id' | 'tournament_team_id' | 'wins' + + +/** aggregate var_pop on columns */ +export interface v_team_stage_results_var_pop_fields { + group_number: (Scalars['Float'] | null) + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_stage_results_var_pop_fields' } -/** aggregate min on columns */ -export interface v_player_multi_kills_min_fields { - attacker_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - match_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_player_multi_kills_min_fields' +/** aggregate var_samp on columns */ +export interface v_team_stage_results_var_samp_fields { + group_number: (Scalars['Float'] | null) + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_stage_results_var_samp_fields' } -/** select columns of table "v_player_multi_kills" */ -export type v_player_multi_kills_select_column = 'attacker_steam_id' | 'kills' | 'match_id' | 'round' +/** aggregate variance on columns */ +export interface v_team_stage_results_variance_fields { + group_number: (Scalars['Float'] | null) + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + placement: (Scalars['Float'] | null) + rank: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_stage_results_variance_fields' +} -/** aggregate stddev on columns */ -export interface v_player_multi_kills_stddev_fields { - attacker_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_player_multi_kills_stddev_fields' +/** columns and relationships of "v_team_tournament_results" */ +export interface v_team_tournament_results { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + /** An object relationship */ + team: (tournament_teams | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + /** An object relationship */ + tournament: (tournaments | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_tournament_results' } -/** aggregate stddev_pop on columns */ -export interface v_player_multi_kills_stddev_pop_fields { - attacker_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_player_multi_kills_stddev_pop_fields' +/** aggregated selection of "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregate { + aggregate: (v_team_tournament_results_aggregate_fields | null) + nodes: v_team_tournament_results[] + __typename: 'v_team_tournament_results_aggregate' } -/** aggregate stddev_samp on columns */ -export interface v_player_multi_kills_stddev_samp_fields { - attacker_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_player_multi_kills_stddev_samp_fields' +/** aggregate fields of "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregate_fields { + avg: (v_team_tournament_results_avg_fields | null) + count: Scalars['Int'] + max: (v_team_tournament_results_max_fields | null) + min: (v_team_tournament_results_min_fields | null) + stddev: (v_team_tournament_results_stddev_fields | null) + stddev_pop: (v_team_tournament_results_stddev_pop_fields | null) + stddev_samp: (v_team_tournament_results_stddev_samp_fields | null) + sum: (v_team_tournament_results_sum_fields | null) + var_pop: (v_team_tournament_results_var_pop_fields | null) + var_samp: (v_team_tournament_results_var_samp_fields | null) + variance: (v_team_tournament_results_variance_fields | null) + __typename: 'v_team_tournament_results_aggregate_fields' } -/** aggregate sum on columns */ -export interface v_player_multi_kills_sum_fields { - attacker_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_player_multi_kills_sum_fields' +/** aggregate avg on columns */ +export interface v_team_tournament_results_avg_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_tournament_results_avg_fields' } -/** aggregate var_pop on columns */ -export interface v_player_multi_kills_var_pop_fields { - attacker_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_player_multi_kills_var_pop_fields' +/** aggregate max on columns */ +export interface v_team_tournament_results_max_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_tournament_results_max_fields' } -/** aggregate var_samp on columns */ -export interface v_player_multi_kills_var_samp_fields { - attacker_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_player_multi_kills_var_samp_fields' +/** aggregate min on columns */ +export interface v_team_tournament_results_min_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + tournament_id: (Scalars['uuid'] | null) + tournament_team_id: (Scalars['uuid'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_tournament_results_min_fields' } -/** aggregate variance on columns */ -export interface v_player_multi_kills_variance_fields { - attacker_steam_id: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - round: (Scalars['Float'] | null) - __typename: 'v_player_multi_kills_variance_fields' -} +/** select columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column = 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'rounds_lost' | 'rounds_won' | 'team_kdr' | 'total_deaths' | 'total_kills' | 'tournament_id' | 'tournament_team_id' | 'wins' -/** columns and relationships of "v_player_weapon_damage" */ -export interface v_player_weapon_damage { - damage: (Scalars['bigint'] | null) - hits: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_damage' -} +/** select "v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns = 'team_kdr' -/** aggregated selection of "v_player_weapon_damage" */ -export interface v_player_weapon_damage_aggregate { - aggregate: (v_player_weapon_damage_aggregate_fields | null) - nodes: v_player_weapon_damage[] - __typename: 'v_player_weapon_damage_aggregate' -} +/** select "v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns = 'team_kdr' -/** aggregate fields of "v_player_weapon_damage" */ -export interface v_player_weapon_damage_aggregate_fields { - avg: (v_player_weapon_damage_avg_fields | null) - count: Scalars['Int'] - max: (v_player_weapon_damage_max_fields | null) - min: (v_player_weapon_damage_min_fields | null) - stddev: (v_player_weapon_damage_stddev_fields | null) - stddev_pop: (v_player_weapon_damage_stddev_pop_fields | null) - stddev_samp: (v_player_weapon_damage_stddev_samp_fields | null) - sum: (v_player_weapon_damage_sum_fields | null) - var_pop: (v_player_weapon_damage_var_pop_fields | null) - var_samp: (v_player_weapon_damage_var_samp_fields | null) - variance: (v_player_weapon_damage_variance_fields | null) - __typename: 'v_player_weapon_damage_aggregate_fields' -} +/** select "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns = 'team_kdr' -/** aggregate avg on columns */ -export interface v_player_weapon_damage_avg_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_avg_fields' -} +/** select "v_team_tournament_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns = 'team_kdr' -/** aggregate max on columns */ -export interface v_player_weapon_damage_max_fields { - damage: (Scalars['bigint'] | null) - hits: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_damage_max_fields' -} +/** select "v_team_tournament_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns = 'team_kdr' -/** aggregate min on columns */ -export interface v_player_weapon_damage_min_fields { - damage: (Scalars['bigint'] | null) - hits: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_damage_min_fields' -} +/** select "v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'team_kdr' -/** select columns of table "v_player_weapon_damage" */ -export type v_player_weapon_damage_select_column = 'damage' | 'hits' | 'player_steam_id' | 'source' | 'type' | 'with' +/** select "v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns = 'team_kdr' + + +/** select "v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_tournament_results" */ +export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns = 'team_kdr' /** aggregate stddev on columns */ -export interface v_player_weapon_damage_stddev_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_stddev_fields' +export interface v_team_tournament_results_stddev_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_tournament_results_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_weapon_damage_stddev_pop_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_stddev_pop_fields' +export interface v_team_tournament_results_stddev_pop_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_tournament_results_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_weapon_damage_stddev_samp_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_stddev_samp_fields' +export interface v_team_tournament_results_stddev_samp_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_tournament_results_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_weapon_damage_sum_fields { - damage: (Scalars['bigint'] | null) - hits: (Scalars['bigint'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_player_weapon_damage_sum_fields' +export interface v_team_tournament_results_sum_fields { + head_to_head_match_wins: (Scalars['Int'] | null) + head_to_head_rounds_won: (Scalars['Int'] | null) + losses: (Scalars['Int'] | null) + maps_lost: (Scalars['Int'] | null) + maps_won: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + matches_remaining: (Scalars['Int'] | null) + rounds_lost: (Scalars['Int'] | null) + rounds_won: (Scalars['Int'] | null) + team_kdr: (Scalars['float8'] | null) + total_deaths: (Scalars['Int'] | null) + total_kills: (Scalars['Int'] | null) + wins: (Scalars['Int'] | null) + __typename: 'v_team_tournament_results_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_weapon_damage_var_pop_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_var_pop_fields' +export interface v_team_tournament_results_var_pop_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_tournament_results_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_weapon_damage_var_samp_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_var_samp_fields' +export interface v_team_tournament_results_var_samp_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_tournament_results_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_weapon_damage_variance_fields { - damage: (Scalars['Float'] | null) - hits: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_player_weapon_damage_variance_fields' +export interface v_team_tournament_results_variance_fields { + head_to_head_match_wins: (Scalars['Float'] | null) + head_to_head_rounds_won: (Scalars['Float'] | null) + losses: (Scalars['Float'] | null) + maps_lost: (Scalars['Float'] | null) + maps_won: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + matches_remaining: (Scalars['Float'] | null) + rounds_lost: (Scalars['Float'] | null) + rounds_won: (Scalars['Float'] | null) + team_kdr: (Scalars['Float'] | null) + total_deaths: (Scalars['Float'] | null) + total_kills: (Scalars['Float'] | null) + wins: (Scalars['Float'] | null) + __typename: 'v_team_tournament_results_variance_fields' } -/** columns and relationships of "v_player_weapon_kills" */ -export interface v_player_weapon_kills { - kill_count: (Scalars['bigint'] | null) +/** columns and relationships of "v_tournament_player_stats" */ +export interface v_tournament_player_stats { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + /** An object relationship */ + player: (players | null) player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_kills' + /** An object relationship */ + tournament: (tournaments | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'v_tournament_player_stats' } -/** aggregated selection of "v_player_weapon_kills" */ -export interface v_player_weapon_kills_aggregate { - aggregate: (v_player_weapon_kills_aggregate_fields | null) - nodes: v_player_weapon_kills[] - __typename: 'v_player_weapon_kills_aggregate' +/** aggregated selection of "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregate { + aggregate: (v_tournament_player_stats_aggregate_fields | null) + nodes: v_tournament_player_stats[] + __typename: 'v_tournament_player_stats_aggregate' } -/** aggregate fields of "v_player_weapon_kills" */ -export interface v_player_weapon_kills_aggregate_fields { - avg: (v_player_weapon_kills_avg_fields | null) +/** aggregate fields of "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregate_fields { + avg: (v_tournament_player_stats_avg_fields | null) count: Scalars['Int'] - max: (v_player_weapon_kills_max_fields | null) - min: (v_player_weapon_kills_min_fields | null) - stddev: (v_player_weapon_kills_stddev_fields | null) - stddev_pop: (v_player_weapon_kills_stddev_pop_fields | null) - stddev_samp: (v_player_weapon_kills_stddev_samp_fields | null) - sum: (v_player_weapon_kills_sum_fields | null) - var_pop: (v_player_weapon_kills_var_pop_fields | null) - var_samp: (v_player_weapon_kills_var_samp_fields | null) - variance: (v_player_weapon_kills_variance_fields | null) - __typename: 'v_player_weapon_kills_aggregate_fields' + max: (v_tournament_player_stats_max_fields | null) + min: (v_tournament_player_stats_min_fields | null) + stddev: (v_tournament_player_stats_stddev_fields | null) + stddev_pop: (v_tournament_player_stats_stddev_pop_fields | null) + stddev_samp: (v_tournament_player_stats_stddev_samp_fields | null) + sum: (v_tournament_player_stats_sum_fields | null) + var_pop: (v_tournament_player_stats_var_pop_fields | null) + var_samp: (v_tournament_player_stats_var_samp_fields | null) + variance: (v_tournament_player_stats_variance_fields | null) + __typename: 'v_tournament_player_stats_aggregate_fields' } /** aggregate avg on columns */ -export interface v_player_weapon_kills_avg_fields { - kill_count: (Scalars['Float'] | null) +export interface v_tournament_player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_avg_fields' + __typename: 'v_tournament_player_stats_avg_fields' } /** aggregate max on columns */ -export interface v_player_weapon_kills_max_fields { - kill_count: (Scalars['bigint'] | null) +export interface v_tournament_player_stats_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_kills_max_fields' + tournament_id: (Scalars['uuid'] | null) + __typename: 'v_tournament_player_stats_max_fields' } /** aggregate min on columns */ -export interface v_player_weapon_kills_min_fields { - kill_count: (Scalars['bigint'] | null) +export interface v_tournament_player_stats_min_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - source: (Scalars['String'] | null) - type: (Scalars['String'] | null) - with: (Scalars['String'] | null) - __typename: 'v_player_weapon_kills_min_fields' + tournament_id: (Scalars['uuid'] | null) + __typename: 'v_tournament_player_stats_min_fields' } -/** select columns of table "v_player_weapon_kills" */ -export type v_player_weapon_kills_select_column = 'kill_count' | 'player_steam_id' | 'rounds' | 'source' | 'type' | 'with' +/** select columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'matches_played' | 'player_steam_id' | 'tournament_id' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_tournament_player_stats" */ +export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' /** aggregate stddev on columns */ -export interface v_player_weapon_kills_stddev_fields { - kill_count: (Scalars['Float'] | null) +export interface v_tournament_player_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_stddev_fields' + __typename: 'v_tournament_player_stats_stddev_fields' } /** aggregate stddev_pop on columns */ -export interface v_player_weapon_kills_stddev_pop_fields { - kill_count: (Scalars['Float'] | null) +export interface v_tournament_player_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_stddev_pop_fields' + __typename: 'v_tournament_player_stats_stddev_pop_fields' } /** aggregate stddev_samp on columns */ -export interface v_player_weapon_kills_stddev_samp_fields { - kill_count: (Scalars['Float'] | null) +export interface v_tournament_player_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_stddev_samp_fields' + __typename: 'v_tournament_player_stats_stddev_samp_fields' } /** aggregate sum on columns */ -export interface v_player_weapon_kills_sum_fields { - kill_count: (Scalars['bigint'] | null) +export interface v_tournament_player_stats_sum_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) player_steam_id: (Scalars['bigint'] | null) - rounds: (Scalars['bigint'] | null) - __typename: 'v_player_weapon_kills_sum_fields' + __typename: 'v_tournament_player_stats_sum_fields' } /** aggregate var_pop on columns */ -export interface v_player_weapon_kills_var_pop_fields { - kill_count: (Scalars['Float'] | null) +export interface v_tournament_player_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_var_pop_fields' + __typename: 'v_tournament_player_stats_var_pop_fields' } /** aggregate var_samp on columns */ -export interface v_player_weapon_kills_var_samp_fields { - kill_count: (Scalars['Float'] | null) +export interface v_tournament_player_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_var_samp_fields' + __typename: 'v_tournament_player_stats_var_samp_fields' } /** aggregate variance on columns */ -export interface v_player_weapon_kills_variance_fields { - kill_count: (Scalars['Float'] | null) +export interface v_tournament_player_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) player_steam_id: (Scalars['Float'] | null) - rounds: (Scalars['Float'] | null) - __typename: 'v_player_weapon_kills_variance_fields' -} - - -/** columns and relationships of "v_pool_maps" */ -export interface v_pool_maps { - active_pool: (Scalars['Boolean'] | null) - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - /** An object relationship */ - map_pool: (map_pools | null) - map_pool_id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - type: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'v_pool_maps' -} - - -/** aggregated selection of "v_pool_maps" */ -export interface v_pool_maps_aggregate { - aggregate: (v_pool_maps_aggregate_fields | null) - nodes: v_pool_maps[] - __typename: 'v_pool_maps_aggregate' -} - - -/** aggregate fields of "v_pool_maps" */ -export interface v_pool_maps_aggregate_fields { - count: Scalars['Int'] - max: (v_pool_maps_max_fields | null) - min: (v_pool_maps_min_fields | null) - __typename: 'v_pool_maps_aggregate_fields' + __typename: 'v_tournament_player_stats_variance_fields' } +export type Query = query_root +export type Mutation = mutation_root +export type Subscription = subscription_root -/** aggregate max on columns */ -export interface v_pool_maps_max_fields { - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - map_pool_id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - type: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'v_pool_maps_max_fields' +export interface ActiveConnectionGenqlSelection{ + application_name?: boolean | number + client_addr?: boolean | number + pid?: boolean | number + query?: boolean | number + query_start?: boolean | number + state?: boolean | number + usename?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate min on columns */ -export interface v_pool_maps_min_fields { - id: (Scalars['uuid'] | null) - label: (Scalars['String'] | null) - map_pool_id: (Scalars['uuid'] | null) - name: (Scalars['String'] | null) - patch: (Scalars['String'] | null) - poster: (Scalars['String'] | null) - type: (Scalars['String'] | null) - workshop_map_id: (Scalars['String'] | null) - __typename: 'v_pool_maps_min_fields' +export interface ActiveQueryGenqlSelection{ + application_name?: boolean | number + client_addr?: boolean | number + duration_seconds?: boolean | number + pid?: boolean | number + query?: boolean | number + query_start?: boolean | number + state?: boolean | number + usename?: boolean | number + wait_event?: boolean | number + wait_event_type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** response of any mutation on the table "v_pool_maps" */ -export interface v_pool_maps_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: v_pool_maps[] - __typename: 'v_pool_maps_mutation_response' +export interface ApiKeyResponseGenqlSelection{ + key?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** select columns of table "v_pool_maps" */ -export type v_pool_maps_select_column = 'active_pool' | 'id' | 'label' | 'map_pool_id' | 'name' | 'patch' | 'poster' | 'type' | 'workshop_map_id' +/** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */ +export interface Boolean_comparison_exp {_eq?: (Scalars['Boolean'] | null),_gt?: (Scalars['Boolean'] | null),_gte?: (Scalars['Boolean'] | null),_in?: (Scalars['Boolean'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Boolean'] | null),_lte?: (Scalars['Boolean'] | null),_neq?: (Scalars['Boolean'] | null),_nin?: (Scalars['Boolean'][] | null)} +export interface ClipAudioInput {duck_game_audio?: (Scalars['Boolean'] | null),fade_in_ms?: (Scalars['Int'] | null),fade_out_ms?: (Scalars['Int'] | null),track_url?: (Scalars['String'] | null),volume?: (Scalars['Float'] | null)} -/** select "v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns" columns of table "v_pool_maps" */ -export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_and_arguments_columns = 'active_pool' +export interface ClipOutputInput {format: Scalars['String'],fps: Scalars['Int'],resolution: Scalars['String']} +export interface ClipOverlayInput {end_ms: Scalars['Int'],payload?: (Scalars['jsonb'] | null),start_ms: Scalars['Int'],type: Scalars['String']} -/** select "v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_pool_maps" */ -export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns = 'active_pool' +export interface ClipSegmentInput {end_tick: Scalars['Int'],pov_steam_id?: (Scalars['String'] | null),start_tick: Scalars['Int']} +export interface ClipSpecInput {audio?: (ClipAudioInput | null),destination: Scalars['String'],match_map_id: Scalars['uuid'],output: ClipOutputInput,overlays?: (ClipOverlayInput[] | null),segments: ClipSegmentInput[],title?: (Scalars['String'] | null)} -/** columns and relationships of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status { - busy_accounts: (Scalars['Int'] | null) - free_accounts: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - total_accounts: (Scalars['Int'] | null) - __typename: 'v_steam_account_pool_status' +export interface ConnectionByStateGenqlSelection{ + count?: boolean | number + state?: boolean | number + wait_event_type?: boolean | number + waiting_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregated selection of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_aggregate { - aggregate: (v_steam_account_pool_status_aggregate_fields | null) - nodes: v_steam_account_pool_status[] - __typename: 'v_steam_account_pool_status_aggregate' +export interface ConnectionStatsGenqlSelection{ + active?: boolean | number + by_state?: ConnectionByStateGenqlSelection + idle?: boolean | number + idle_in_transaction?: boolean | number + total?: boolean | number + waiting?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate fields of "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_aggregate_fields { - avg: (v_steam_account_pool_status_avg_fields | null) - count: Scalars['Int'] - max: (v_steam_account_pool_status_max_fields | null) - min: (v_steam_account_pool_status_min_fields | null) - stddev: (v_steam_account_pool_status_stddev_fields | null) - stddev_pop: (v_steam_account_pool_status_stddev_pop_fields | null) - stddev_samp: (v_steam_account_pool_status_stddev_samp_fields | null) - sum: (v_steam_account_pool_status_sum_fields | null) - var_pop: (v_steam_account_pool_status_var_pop_fields | null) - var_samp: (v_steam_account_pool_status_var_samp_fields | null) - variance: (v_steam_account_pool_status_variance_fields | null) - __typename: 'v_steam_account_pool_status_aggregate_fields' +export interface CpuStatGenqlSelection{ + time?: boolean | number + total?: boolean | number + used?: boolean | number + window?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate avg on columns */ -export interface v_steam_account_pool_status_avg_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_avg_fields' +export interface CreateClipRenderOutputGenqlSelection{ + job_id?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate max on columns */ -export interface v_steam_account_pool_status_max_fields { - busy_accounts: (Scalars['Int'] | null) - free_accounts: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - total_accounts: (Scalars['Int'] | null) - __typename: 'v_steam_account_pool_status_max_fields' +export interface CreateDraftGameOutputGenqlSelection{ + draftGameId?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate min on columns */ -export interface v_steam_account_pool_status_min_fields { - busy_accounts: (Scalars['Int'] | null) - free_accounts: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - total_accounts: (Scalars['Int'] | null) - __typename: 'v_steam_account_pool_status_min_fields' +export interface CreateScheduledMatchOutputGenqlSelection{ + matchId?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** select columns of table "v_steam_account_pool_status" */ -export type v_steam_account_pool_status_select_column = 'busy_accounts' | 'free_accounts' | 'id' | 'total_accounts' - - -/** aggregate stddev on columns */ -export interface v_steam_account_pool_status_stddev_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_stddev_fields' +export interface DatabaseStatsGenqlSelection{ + blks_hit?: boolean | number + blks_read?: boolean | number + cache_hit_ratio?: boolean | number + conflicts?: boolean | number + datname?: boolean | number + deadlocks?: boolean | number + numbackends?: boolean | number + tup_deleted?: boolean | number + tup_fetched?: boolean | number + tup_inserted?: boolean | number + tup_returned?: boolean | number + tup_updated?: boolean | number + xact_commit?: boolean | number + xact_rollback?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate stddev_pop on columns */ -export interface v_steam_account_pool_status_stddev_pop_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_stddev_pop_fields' +export interface DbStatsGenqlSelection{ + calls?: boolean | number + local_blks_hit?: boolean | number + local_blks_read?: boolean | number + max_exec_time?: boolean | number + mean_exec_time?: boolean | number + min_exec_time?: boolean | number + query?: boolean | number + queryid?: boolean | number + shared_blks_hit?: boolean | number + shared_blks_read?: boolean | number + total_exec_time?: boolean | number + total_rows?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate stddev_samp on columns */ -export interface v_steam_account_pool_status_stddev_samp_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_stddev_samp_fields' +export interface DedicatedSeverInfoGenqlSelection{ + id?: boolean | number + lastPing?: boolean | number + map?: boolean | number + players?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate sum on columns */ -export interface v_steam_account_pool_status_sum_fields { - busy_accounts: (Scalars['Int'] | null) - free_accounts: (Scalars['Int'] | null) - id: (Scalars['Int'] | null) - total_accounts: (Scalars['Int'] | null) - __typename: 'v_steam_account_pool_status_sum_fields' +export interface DeleteOrphansOutputGenqlSelection{ + bytes_freed?: boolean | number + deleted?: boolean | number + remaining_orphans?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate var_pop on columns */ -export interface v_steam_account_pool_status_var_pop_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_var_pop_fields' +export interface DiskStatGenqlSelection{ + available?: boolean | number + filesystem?: boolean | number + mountpoint?: boolean | number + size?: boolean | number + used?: boolean | number + usedPercent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate var_samp on columns */ -export interface v_steam_account_pool_status_var_samp_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_var_samp_fields' +export interface DiskStatsGenqlSelection{ + disks?: DiskStatGenqlSelection + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate variance on columns */ -export interface v_steam_account_pool_status_variance_fields { - busy_accounts: (Scalars['Float'] | null) - free_accounts: (Scalars['Float'] | null) - id: (Scalars['Float'] | null) - total_accounts: (Scalars['Float'] | null) - __typename: 'v_steam_account_pool_status_variance_fields' +export interface DraftGamePreviewOutputGenqlSelection{ + accepted_count?: boolean | number + access?: boolean | number + capacity?: boolean | number + host_avatar_url?: boolean | number + host_name?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + mode?: boolean | number + players?: DraftGamePreviewPlayerGenqlSelection + require_approval?: boolean | number + status?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** columns and relationships of "v_team_ranks" */ -export interface v_team_ranks { - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - max_elo: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - roster_size: (Scalars['bigint'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_ranks' +export interface DraftGamePreviewPlayerGenqlSelection{ + avatar_url?: boolean | number + name?: boolean | number + status?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregated selection of "v_team_ranks" */ -export interface v_team_ranks_aggregate { - aggregate: (v_team_ranks_aggregate_fields | null) - nodes: v_team_ranks[] - __typename: 'v_team_ranks_aggregate' +export interface FaceitTestOutputGenqlSelection{ + dataApi?: FaceitTestResultGenqlSelection + downloadApi?: FaceitTestResultGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate fields of "v_team_ranks" */ -export interface v_team_ranks_aggregate_fields { - avg: (v_team_ranks_avg_fields | null) - count: Scalars['Int'] - max: (v_team_ranks_max_fields | null) - min: (v_team_ranks_min_fields | null) - stddev: (v_team_ranks_stddev_fields | null) - stddev_pop: (v_team_ranks_stddev_pop_fields | null) - stddev_samp: (v_team_ranks_stddev_samp_fields | null) - sum: (v_team_ranks_sum_fields | null) - var_pop: (v_team_ranks_var_pop_fields | null) - var_samp: (v_team_ranks_var_samp_fields | null) - variance: (v_team_ranks_variance_fields | null) - __typename: 'v_team_ranks_aggregate_fields' +export interface FaceitTestResultGenqlSelection{ + detail?: boolean | number + ok?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate avg on columns */ -export interface v_team_ranks_avg_fields { - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_avg_fields' +export interface FileContentResponseGenqlSelection{ + content?: boolean | number + path?: boolean | number + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate max on columns */ -export interface v_team_ranks_max_fields { - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - max_elo: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - roster_size: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_ranks_max_fields' +export interface FileItemGenqlSelection{ + isDirectory?: boolean | number + modified?: boolean | number + name?: boolean | number + path?: boolean | number + size?: boolean | number + type?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate min on columns */ -export interface v_team_ranks_min_fields { - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - max_elo: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - roster_size: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_ranks_min_fields' +export interface FileListResponseGenqlSelection{ + currentPath?: boolean | number + items?: FileItemGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } -/** select columns of table "v_team_ranks" */ -export type v_team_ranks_select_column = 'avg_elo' | 'avg_faceit_elo' | 'avg_faceit_level' | 'avg_premier' | 'max_elo' | 'min_elo' | 'roster_size' | 'team_id' +/** Boolean expression to compare columns of type "Float". All fields are combined with logical 'AND'. */ +export interface Float_comparison_exp {_eq?: (Scalars['Float'] | null),_gt?: (Scalars['Float'] | null),_gte?: (Scalars['Float'] | null),_in?: (Scalars['Float'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Float'] | null),_lte?: (Scalars['Float'] | null),_neq?: (Scalars['Float'] | null),_nin?: (Scalars['Float'][] | null)} +export interface GetTestUploadResponseGenqlSelection{ + error?: boolean | number + link?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev on columns */ -export interface v_team_ranks_stddev_fields { - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_stddev_fields' +export interface GpuDeviceStatGenqlSelection{ + index?: boolean | number + memory_mb?: boolean | number + memory_used_mb?: boolean | number + name?: boolean | number + power_w?: boolean | number + temperature_c?: boolean | number + utilization_percent?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate stddev_pop on columns */ -export interface v_team_ranks_stddev_pop_fields { - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_stddev_pop_fields' +export interface GpuStatsGenqlSelection{ + devices?: GpuDeviceStatGenqlSelection + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface HighlightPresetAvailabilityGenqlSelection{ + best_round?: boolean | number + has_demo?: boolean | number + knife?: boolean | number + multikills?: boolean | number + recap?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_samp on columns */ -export interface v_team_ranks_stddev_samp_fields { - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_stddev_samp_fields' +export interface HypertableInfoGenqlSelection{ + compression_enabled?: boolean | number + hypertable_name?: boolean | number + num_chunks?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface IndexIOStatGenqlSelection{ + idx_blks_hit?: boolean | number + idx_blks_read?: boolean | number + indexname?: boolean | number + schemaname?: boolean | number + tablename?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate sum on columns */ -export interface v_team_ranks_sum_fields { - avg_elo: (Scalars['Int'] | null) - avg_faceit_elo: (Scalars['Int'] | null) - avg_faceit_level: (Scalars['float8'] | null) - avg_premier: (Scalars['Int'] | null) - max_elo: (Scalars['Int'] | null) - min_elo: (Scalars['Int'] | null) - roster_size: (Scalars['bigint'] | null) - __typename: 'v_team_ranks_sum_fields' +export interface IndexStatGenqlSelection{ + idx_scan?: boolean | number + idx_tup_fetch?: boolean | number + idx_tup_read?: boolean | number + index_size?: boolean | number + indexname?: boolean | number + schemaname?: boolean | number + table_size?: boolean | number + tablename?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate var_pop on columns */ -export interface v_team_ranks_var_pop_fields { - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_var_pop_fields' -} +/** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */ +export interface Int_comparison_exp {_eq?: (Scalars['Int'] | null),_gt?: (Scalars['Int'] | null),_gte?: (Scalars['Int'] | null),_in?: (Scalars['Int'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Int'] | null),_lte?: (Scalars['Int'] | null),_neq?: (Scalars['Int'] | null),_nin?: (Scalars['Int'][] | null)} +export interface KickResultGenqlSelection{ + kicked?: boolean | number + message?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate var_samp on columns */ -export interface v_team_ranks_var_samp_fields { - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_var_samp_fields' +export interface LiveSpecGsiGenqlSelection{ + map_name?: boolean | number + map_phase?: boolean | number + round_number?: boolean | number + round_phase?: boolean | number + spec_slots?: LiveSpecSlotGenqlSelection + spectated_steam_id?: boolean | number + team_ct_name?: boolean | number + team_ct_score?: boolean | number + team_t_name?: boolean | number + team_t_score?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface LiveSpecSlotGenqlSelection{ + alive?: boolean | number + health?: boolean | number + name?: boolean | number + slot?: boolean | number + steam_id?: boolean | number + team?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate variance on columns */ -export interface v_team_ranks_variance_fields { - avg_elo: (Scalars['Float'] | null) - avg_faceit_elo: (Scalars['Float'] | null) - avg_faceit_level: (Scalars['Float'] | null) - avg_premier: (Scalars['Float'] | null) - max_elo: (Scalars['Float'] | null) - min_elo: (Scalars['Float'] | null) - roster_size: (Scalars['Float'] | null) - __typename: 'v_team_ranks_variance_fields' +export interface LiveStreamSpecStateGenqlSelection{ + gsi?: LiveSpecGsiGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } +export interface LockInfoGenqlSelection{ + granted?: boolean | number + locktype?: boolean | number + mode?: boolean | number + pid?: boolean | number + query?: boolean | number + relation?: boolean | number + usename?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** columns and relationships of "v_team_reputation" */ -export interface v_team_reputation { - late_cancels: (Scalars['bigint'] | null) - no_shows: (Scalars['bigint'] | null) - reliability_pct: (Scalars['numeric'] | null) - scrims_completed: (Scalars['bigint'] | null) - /** An object relationship */ - team: (teams | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_reputation' +export interface MeResponseGenqlSelection{ + avatar_url?: boolean | number + country?: boolean | number + discord_id?: boolean | number + language?: boolean | number + name?: boolean | number + player?: playersGenqlSelection + profile_url?: boolean | number + role?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface MemoryStatGenqlSelection{ + time?: boolean | number + total?: boolean | number + used?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregated selection of "v_team_reputation" */ -export interface v_team_reputation_aggregate { - aggregate: (v_team_reputation_aggregate_fields | null) - nodes: v_team_reputation[] - __typename: 'v_team_reputation_aggregate' +export interface NetworkStatsGenqlSelection{ + nics?: NicStatGenqlSelection + time?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface NewsPostGenqlSelection{ + author_steam_id?: boolean | number + content_markdown?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + published_at?: boolean | number + slug?: boolean | number + status?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + view_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate fields of "v_team_reputation" */ -export interface v_team_reputation_aggregate_fields { - avg: (v_team_reputation_avg_fields | null) - count: Scalars['Int'] - max: (v_team_reputation_max_fields | null) - min: (v_team_reputation_min_fields | null) - stddev: (v_team_reputation_stddev_fields | null) - stddev_pop: (v_team_reputation_stddev_pop_fields | null) - stddev_samp: (v_team_reputation_stddev_samp_fields | null) - sum: (v_team_reputation_sum_fields | null) - var_pop: (v_team_reputation_var_pop_fields | null) - var_samp: (v_team_reputation_var_samp_fields | null) - variance: (v_team_reputation_variance_fields | null) - __typename: 'v_team_reputation_aggregate_fields' +export interface NicStatGenqlSelection{ + name?: boolean | number + rx?: boolean | number + tx?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface NodeStatsGenqlSelection{ + cpu?: CpuStatGenqlSelection + disks?: DiskStatsGenqlSelection + gpu?: GpuStatsGenqlSelection + memory?: MemoryStatGenqlSelection + network?: NetworkStatsGenqlSelection + node?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate avg on columns */ -export interface v_team_reputation_avg_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_avg_fields' +export interface OrphanObjectGenqlSelection{ + key?: boolean | number + size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface OrphanScanResultOutputGenqlSelection{ + bucket?: boolean | number + clip_bytes?: boolean | number + clip_objects?: boolean | number + demo_bytes?: boolean | number + demo_objects?: boolean | number + found?: boolean | number + orphan_bytes?: boolean | number + orphan_objects?: boolean | number + orphans?: OrphanObjectGenqlSelection + other_bytes?: boolean | number + other_objects?: boolean | number + scanned_at?: boolean | number + scanning?: boolean | number + total_bytes?: boolean | number + total_objects?: boolean | number + tracked_bytes?: boolean | number + tracked_objects?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate max on columns */ -export interface v_team_reputation_max_fields { - late_cancels: (Scalars['bigint'] | null) - no_shows: (Scalars['bigint'] | null) - reliability_pct: (Scalars['numeric'] | null) - scrims_completed: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_reputation_max_fields' +export interface PendingMatchImportActionOutputGenqlSelection{ + error?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface PodStatsGenqlSelection{ + cpu?: CpuStatGenqlSelection + memory?: MemoryStatGenqlSelection + name?: boolean | number + node?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate min on columns */ -export interface v_team_reputation_min_fields { - late_cancels: (Scalars['bigint'] | null) - no_shows: (Scalars['bigint'] | null) - reliability_pct: (Scalars['numeric'] | null) - scrims_completed: (Scalars['bigint'] | null) - team_id: (Scalars['uuid'] | null) - __typename: 'v_team_reputation_min_fields' +export interface PreviewTournamentMatchResetOutputGenqlSelection{ + impacts?: TournamentMatchResetImpactGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } +export interface QueryDetailGenqlSelection{ + explain_plan?: boolean | number + query?: boolean | number + queryid?: boolean | number + stats?: QueryStatGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** select columns of table "v_team_reputation" */ -export type v_team_reputation_select_column = 'late_cancels' | 'no_shows' | 'reliability_pct' | 'scrims_completed' | 'team_id' +export interface QueryStatGenqlSelection{ + cache_hit_ratio?: boolean | number + calls?: boolean | number + local_blks_hit?: boolean | number + local_blks_read?: boolean | number + max_exec_time?: boolean | number + mean_exec_time?: boolean | number + min_exec_time?: boolean | number + query?: boolean | number + queryid?: boolean | number + shared_blks_hit?: boolean | number + shared_blks_read?: boolean | number + stddev_exec_time?: boolean | number + temp_blks_written?: boolean | number + total_exec_time?: boolean | number + total_rows?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} +export interface RecomputeEloStartedOutputGenqlSelection{ + running?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev on columns */ -export interface v_team_reputation_stddev_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_stddev_fields' +export interface RecomputeEloStatusOutputGenqlSelection{ + canceled?: boolean | number + completed?: boolean | number + current_match_id?: boolean | number + failed?: boolean | number + finished_at?: boolean | number + running?: boolean | number + started_at?: boolean | number + total?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface ReindexStartedOutputGenqlSelection{ + running?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_pop on columns */ -export interface v_team_reputation_stddev_pop_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_stddev_pop_fields' +export interface ReindexStatusOutputGenqlSelection{ + canceled?: boolean | number + completed?: boolean | number + current_steam_id?: boolean | number + failed?: boolean | number + finished_at?: boolean | number + running?: boolean | number + started_at?: boolean | number + total?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface ReparseAllStartedOutputGenqlSelection{ + running?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_samp on columns */ -export interface v_team_reputation_stddev_samp_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_stddev_samp_fields' +export interface ReparseAllStatusOutputGenqlSelection{ + canceled?: boolean | number + completed?: boolean | number + current_demo_id?: boolean | number + failed?: boolean | number + finished_at?: boolean | number + running?: boolean | number + started_at?: boolean | number + total?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface SanctionResultGenqlSelection{ + enforced?: boolean | number + id?: boolean | number + message?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate sum on columns */ -export interface v_team_reputation_sum_fields { - late_cancels: (Scalars['bigint'] | null) - no_shows: (Scalars['bigint'] | null) - reliability_pct: (Scalars['numeric'] | null) - scrims_completed: (Scalars['bigint'] | null) - __typename: 'v_team_reputation_sum_fields' +export interface ScanStartedOutputGenqlSelection{ + scanning?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface ScheduledLineupInput {steam_ids?: (Scalars['String'][] | null),team_id?: (Scalars['String'] | null)} -/** aggregate var_pop on columns */ -export interface v_team_reputation_var_pop_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_var_pop_fields' +export interface SeasonBackfillStatusOutputGenqlSelection{ + canceled?: boolean | number + completed?: boolean | number + current_match_id?: boolean | number + failed?: boolean | number + finished_at?: boolean | number + running?: boolean | number + season_id?: boolean | number + started_at?: boolean | number + total?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate var_samp on columns */ -export interface v_team_reputation_var_samp_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_var_samp_fields' +export interface ServerPlayerGenqlSelection{ + name?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface SetupGameServeOutputGenqlSelection{ + gameServerId?: boolean | number + link?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate variance on columns */ -export interface v_team_reputation_variance_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_variance_fields' +export interface SteamMatchHistoryLinkOutputGenqlSelection{ + error?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface SteamMatchHistoryPollOutputGenqlSelection{ + collected?: boolean | number + error?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** columns and relationships of "v_team_stage_results" */ -export interface v_team_stage_results { - group_number: Scalars['Int'] - head_to_head_match_wins: Scalars['Int'] - head_to_head_rounds_won: Scalars['Int'] - losses: Scalars['Int'] - maps_lost: Scalars['Int'] - maps_won: Scalars['Int'] - matches_played: Scalars['Int'] - matches_remaining: Scalars['Int'] - placement: Scalars['Int'] - rank: Scalars['Int'] - rounds_lost: Scalars['Int'] - rounds_won: Scalars['Int'] - /** An object relationship */ - stage: (tournament_stages | null) - /** An object relationship */ - team: (tournament_teams | null) - team_kdr: Scalars['float8'] - total_deaths: Scalars['Int'] - total_kills: Scalars['Int'] - tournament_stage_id: Scalars['uuid'] - tournament_team_id: Scalars['uuid'] - wins: Scalars['Int'] - __typename: 'v_team_stage_results' +export interface SteamPresenceAdminStatusOutputGenqlSelection{ + bots?: SteamPresenceBotGenqlSelection + enabled?: boolean | number + pool?: SteamPresencePoolGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregated selection of "v_team_stage_results" */ -export interface v_team_stage_results_aggregate { - aggregate: (v_team_stage_results_aggregate_fields | null) - nodes: v_team_stage_results[] - __typename: 'v_team_stage_results_aggregate' +export interface SteamPresenceBotGenqlSelection{ + assigned?: boolean | number + capacity?: boolean | number + guardLastWrong?: boolean | number + guardType?: boolean | number + id?: boolean | number + needs2fa?: boolean | number + online?: boolean | number + steamId?: boolean | number + steamLevel?: boolean | number + username?: boolean | number + watching?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface SteamPresenceBotAssignmentGenqlSelection{ + addUrl?: boolean | number + enabled?: boolean | number + status?: boolean | number + steamId?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate fields of "v_team_stage_results" */ -export interface v_team_stage_results_aggregate_fields { - avg: (v_team_stage_results_avg_fields | null) - count: Scalars['Int'] - max: (v_team_stage_results_max_fields | null) - min: (v_team_stage_results_min_fields | null) - stddev: (v_team_stage_results_stddev_fields | null) - stddev_pop: (v_team_stage_results_stddev_pop_fields | null) - stddev_samp: (v_team_stage_results_stddev_samp_fields | null) - sum: (v_team_stage_results_sum_fields | null) - var_pop: (v_team_stage_results_var_pop_fields | null) - var_samp: (v_team_stage_results_var_samp_fields | null) - variance: (v_team_stage_results_variance_fields | null) - __typename: 'v_team_stage_results_aggregate_fields' +export interface SteamPresencePoolGenqlSelection{ + bots?: boolean | number + capacity?: boolean | number + online?: boolean | number + pending?: boolean | number + watching?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface StorageStatsGenqlSelection{ + summary?: StorageSummaryGenqlSelection + tables?: TableSizeInfoGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate avg on columns */ -export interface v_team_stage_results_avg_fields { - group_number: (Scalars['Float'] | null) - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_stage_results_avg_fields' +export interface StorageSummaryGenqlSelection{ + estimated_reclaimable_space?: boolean | number + total_database_size?: boolean | number + total_indexes_size?: boolean | number + total_table_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** unique or primary key constraints on table "v_team_stage_results" */ -export type v_team_stage_results_constraint = 'v_team_stage_results_pkey' +/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ +export interface String_array_comparison_exp { +/** is the array contained in the given array value */ +_contained_in?: (Scalars['String'][] | null), +/** does the array contain the given value */ +_contains?: (Scalars['String'][] | null),_eq?: (Scalars['String'][] | null),_gt?: (Scalars['String'][] | null),_gte?: (Scalars['String'][] | null),_in?: (Scalars['String'][][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['String'][] | null),_lte?: (Scalars['String'][] | null),_neq?: (Scalars['String'][] | null),_nin?: (Scalars['String'][][] | null)} -/** aggregate max on columns */ -export interface v_team_stage_results_max_fields { - group_number: (Scalars['Int'] | null) - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - placement: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_stage_results_max_fields' +/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ +export interface String_comparison_exp {_eq?: (Scalars['String'] | null),_gt?: (Scalars['String'] | null),_gte?: (Scalars['String'] | null), +/** does the column match the given case-insensitive pattern */ +_ilike?: (Scalars['String'] | null),_in?: (Scalars['String'][] | null), +/** does the column match the given POSIX regular expression, case insensitive */ +_iregex?: (Scalars['String'] | null),_is_null?: (Scalars['Boolean'] | null), +/** does the column match the given pattern */ +_like?: (Scalars['String'] | null),_lt?: (Scalars['String'] | null),_lte?: (Scalars['String'] | null),_neq?: (Scalars['String'] | null), +/** does the column NOT match the given case-insensitive pattern */ +_nilike?: (Scalars['String'] | null),_nin?: (Scalars['String'][] | null), +/** does the column NOT match the given POSIX regular expression, case insensitive */ +_niregex?: (Scalars['String'] | null), +/** does the column NOT match the given pattern */ +_nlike?: (Scalars['String'] | null), +/** does the column NOT match the given POSIX regular expression, case sensitive */ +_nregex?: (Scalars['String'] | null), +/** does the column NOT match the given SQL regular expression */ +_nsimilar?: (Scalars['String'] | null), +/** does the column match the given POSIX regular expression, case sensitive */ +_regex?: (Scalars['String'] | null), +/** does the column match the given SQL regular expression */ +_similar?: (Scalars['String'] | null)} + +export interface SuccessOutputGenqlSelection{ + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface TableIOStatGenqlSelection{ + cache_hit_ratio?: boolean | number + heap_blks_hit?: boolean | number + heap_blks_read?: boolean | number + idx_blks_hit?: boolean | number + idx_blks_read?: boolean | number + relname?: boolean | number + schemaname?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate min on columns */ -export interface v_team_stage_results_min_fields { - group_number: (Scalars['Int'] | null) - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - placement: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - tournament_stage_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_stage_results_min_fields' +export interface TableSizeInfoGenqlSelection{ + estimated_dead_tuple_bytes?: boolean | number + indexes_size?: boolean | number + n_dead_tup?: boolean | number + n_live_tup?: boolean | number + schemaname?: boolean | number + table_size?: boolean | number + tablename?: boolean | number + total_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface TableStatGenqlSelection{ + idx_scan?: boolean | number + idx_tup_fetch?: boolean | number + last_analyze?: boolean | number + last_autoanalyze?: boolean | number + last_autovacuum?: boolean | number + last_vacuum?: boolean | number + n_dead_tup?: boolean | number + n_live_tup?: boolean | number + n_tup_del?: boolean | number + n_tup_hot_upd?: boolean | number + n_tup_ins?: boolean | number + n_tup_upd?: boolean | number + relname?: boolean | number + schemaname?: boolean | number + seq_scan?: boolean | number + seq_tup_read?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** response of any mutation on the table "v_team_stage_results" */ -export interface v_team_stage_results_mutation_response { - /** number of rows affected by the mutation */ - affected_rows: Scalars['Int'] - /** data from the rows affected by the mutation */ - returning: v_team_stage_results[] - __typename: 'v_team_stage_results_mutation_response' +export interface TeamCalendarOutputGenqlSelection{ + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface TelemetryStatsGenqlSelection{ + online?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column = 'group_number' | 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'placement' | 'rank' | 'rounds_lost' | 'rounds_won' | 'team_kdr' | 'total_deaths' | 'total_kills' | 'tournament_stage_id' | 'tournament_team_id' | 'wins' +export interface TestUploadResponseGenqlSelection{ + error?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} +export interface TimescaleJobGenqlSelection{ + hypertable_name?: boolean | number + job_id?: boolean | number + job_type?: boolean | number + last_run_status?: boolean | number + next_start?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_stage_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns = 'team_kdr' +export interface TimescaleStatsGenqlSelection{ + chunks_count?: boolean | number + hypertables?: HypertableInfoGenqlSelection + jobs?: TimescaleJobGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} +export interface TournamentMatchResetImpactGenqlSelection{ + bracket_id?: boolean | number + depth?: boolean | number + is_source?: boolean | number + match_id?: boolean | number + match_number?: boolean | number + match_status?: boolean | number + path?: boolean | number + round?: boolean | number + stage_type?: boolean | number + will_delete_match?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_stage_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns = 'team_kdr' +export interface WatchDemoOutputGenqlSelection{ + match_map_id?: boolean | number + session_id?: boolean | number + stream_url?: boolean | number + success?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns = 'team_kdr' +/** columns and relationships of "_map_pool" */ +export interface _map_poolGenqlSelection{ + map_id?: boolean | number + map_pool_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_stage_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns = 'team_kdr' +/** aggregated selection of "_map_pool" */ +export interface _map_pool_aggregateGenqlSelection{ + aggregate?: _map_pool_aggregate_fieldsGenqlSelection + nodes?: _map_poolGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_stage_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns = 'team_kdr' +/** aggregate fields of "_map_pool" */ +export interface _map_pool_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (_map_pool_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: _map_pool_max_fieldsGenqlSelection + min?: _map_pool_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'team_kdr' +/** Boolean expression to filter rows from the table "_map_pool". All fields are combined with a logical 'AND'. */ +export interface _map_pool_bool_exp {_and?: (_map_pool_bool_exp[] | null),_not?: (_map_pool_bool_exp | null),_or?: (_map_pool_bool_exp[] | null),map_id?: (uuid_comparison_exp | null),map_pool_id?: (uuid_comparison_exp | null)} -/** select "v_team_stage_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns = 'team_kdr' +/** input type for inserting data into table "_map_pool" */ +export interface _map_pool_insert_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} -/** select "v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_stage_results" */ -export type v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns = 'team_kdr' +/** aggregate max on columns */ +export interface _map_pool_max_fieldsGenqlSelection{ + map_id?: boolean | number + map_pool_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev on columns */ -export interface v_team_stage_results_stddev_fields { - group_number: (Scalars['Float'] | null) - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_stage_results_stddev_fields' +/** aggregate min on columns */ +export interface _map_pool_min_fieldsGenqlSelection{ + map_id?: boolean | number + map_pool_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate stddev_pop on columns */ -export interface v_team_stage_results_stddev_pop_fields { - group_number: (Scalars['Float'] | null) - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_stage_results_stddev_pop_fields' +/** response of any mutation on the table "_map_pool" */ +export interface _map_pool_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: _map_poolGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate stddev_samp on columns */ -export interface v_team_stage_results_stddev_samp_fields { - group_number: (Scalars['Float'] | null) - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_stage_results_stddev_samp_fields' -} +/** on_conflict condition type for table "_map_pool" */ +export interface _map_pool_on_conflict {constraint: _map_pool_constraint,update_columns?: _map_pool_update_column[],where?: (_map_pool_bool_exp | null)} -/** aggregate sum on columns */ -export interface v_team_stage_results_sum_fields { - group_number: (Scalars['Int'] | null) - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - placement: (Scalars['Int'] | null) - rank: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_stage_results_sum_fields' -} +/** Ordering options when selecting data from "_map_pool". */ +export interface _map_pool_order_by {map_id?: (order_by | null),map_pool_id?: (order_by | null)} -/** update columns of table "v_team_stage_results" */ -export type v_team_stage_results_update_column = 'group_number' | 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'placement' | 'rank' | 'rounds_lost' | 'rounds_won' | 'team_kdr' | 'total_deaths' | 'total_kills' | 'tournament_stage_id' | 'tournament_team_id' | 'wins' +/** primary key columns input for table: _map_pool */ +export interface _map_pool_pk_columns_input {map_id: Scalars['uuid'],map_pool_id: Scalars['uuid']} -/** aggregate var_pop on columns */ -export interface v_team_stage_results_var_pop_fields { - group_number: (Scalars['Float'] | null) - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_stage_results_var_pop_fields' -} +/** input type for updating data in table "_map_pool" */ +export interface _map_pool_set_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} -/** aggregate var_samp on columns */ -export interface v_team_stage_results_var_samp_fields { - group_number: (Scalars['Float'] | null) - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_stage_results_var_samp_fields' -} +/** Streaming cursor of the table "_map_pool" */ +export interface _map_pool_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: _map_pool_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** aggregate variance on columns */ -export interface v_team_stage_results_variance_fields { - group_number: (Scalars['Float'] | null) - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - placement: (Scalars['Float'] | null) - rank: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_stage_results_variance_fields' -} +/** Initial value of the column from where the streaming should start */ +export interface _map_pool_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} +export interface _map_pool_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (_map_pool_set_input | null), +/** filter the rows which have to be updated */ +where: _map_pool_bool_exp} -/** columns and relationships of "v_team_tournament_results" */ -export interface v_team_tournament_results { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - /** An object relationship */ - team: (tournament_teams | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - /** An object relationship */ - tournament: (tournaments | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_tournament_results' + +/** columns and relationships of "abandoned_matches" */ +export interface abandoned_matchesGenqlSelection{ + abandoned_at?: boolean | number + id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregated selection of "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregate { - aggregate: (v_team_tournament_results_aggregate_fields | null) - nodes: v_team_tournament_results[] - __typename: 'v_team_tournament_results_aggregate' +/** aggregated selection of "abandoned_matches" */ +export interface abandoned_matches_aggregateGenqlSelection{ + aggregate?: abandoned_matches_aggregate_fieldsGenqlSelection + nodes?: abandoned_matchesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } +export interface abandoned_matches_aggregate_bool_exp {count?: (abandoned_matches_aggregate_bool_exp_count | null)} -/** aggregate fields of "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregate_fields { - avg: (v_team_tournament_results_avg_fields | null) - count: Scalars['Int'] - max: (v_team_tournament_results_max_fields | null) - min: (v_team_tournament_results_min_fields | null) - stddev: (v_team_tournament_results_stddev_fields | null) - stddev_pop: (v_team_tournament_results_stddev_pop_fields | null) - stddev_samp: (v_team_tournament_results_stddev_samp_fields | null) - sum: (v_team_tournament_results_sum_fields | null) - var_pop: (v_team_tournament_results_var_pop_fields | null) - var_samp: (v_team_tournament_results_var_samp_fields | null) - variance: (v_team_tournament_results_variance_fields | null) - __typename: 'v_team_tournament_results_aggregate_fields' +export interface abandoned_matches_aggregate_bool_exp_count {arguments?: (abandoned_matches_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (abandoned_matches_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "abandoned_matches" */ +export interface abandoned_matches_aggregate_fieldsGenqlSelection{ + avg?: abandoned_matches_avg_fieldsGenqlSelection + count?: { __args: {columns?: (abandoned_matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: abandoned_matches_max_fieldsGenqlSelection + min?: abandoned_matches_min_fieldsGenqlSelection + stddev?: abandoned_matches_stddev_fieldsGenqlSelection + stddev_pop?: abandoned_matches_stddev_pop_fieldsGenqlSelection + stddev_samp?: abandoned_matches_stddev_samp_fieldsGenqlSelection + sum?: abandoned_matches_sum_fieldsGenqlSelection + var_pop?: abandoned_matches_var_pop_fieldsGenqlSelection + var_samp?: abandoned_matches_var_samp_fieldsGenqlSelection + variance?: abandoned_matches_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } +/** order by aggregate values of table "abandoned_matches" */ +export interface abandoned_matches_aggregate_order_by {avg?: (abandoned_matches_avg_order_by | null),count?: (order_by | null),max?: (abandoned_matches_max_order_by | null),min?: (abandoned_matches_min_order_by | null),stddev?: (abandoned_matches_stddev_order_by | null),stddev_pop?: (abandoned_matches_stddev_pop_order_by | null),stddev_samp?: (abandoned_matches_stddev_samp_order_by | null),sum?: (abandoned_matches_sum_order_by | null),var_pop?: (abandoned_matches_var_pop_order_by | null),var_samp?: (abandoned_matches_var_samp_order_by | null),variance?: (abandoned_matches_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "abandoned_matches" */ +export interface abandoned_matches_arr_rel_insert_input {data: abandoned_matches_insert_input[], +/** upsert condition */ +on_conflict?: (abandoned_matches_on_conflict | null)} + + /** aggregate avg on columns */ -export interface v_team_tournament_results_avg_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_tournament_results_avg_fields' +export interface abandoned_matches_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate max on columns */ -export interface v_team_tournament_results_max_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_tournament_results_max_fields' -} +/** order by avg() on columns of table "abandoned_matches" */ +export interface abandoned_matches_avg_order_by {steam_id?: (order_by | null)} -/** aggregate min on columns */ -export interface v_team_tournament_results_min_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - tournament_id: (Scalars['uuid'] | null) - tournament_team_id: (Scalars['uuid'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_tournament_results_min_fields' -} +/** Boolean expression to filter rows from the table "abandoned_matches". All fields are combined with a logical 'AND'. */ +export interface abandoned_matches_bool_exp {_and?: (abandoned_matches_bool_exp[] | null),_not?: (abandoned_matches_bool_exp | null),_or?: (abandoned_matches_bool_exp[] | null),abandoned_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} -/** select columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column = 'head_to_head_match_wins' | 'head_to_head_rounds_won' | 'losses' | 'maps_lost' | 'maps_won' | 'matches_played' | 'matches_remaining' | 'rounds_lost' | 'rounds_won' | 'team_kdr' | 'total_deaths' | 'total_kills' | 'tournament_id' | 'tournament_team_id' | 'wins' +/** input type for incrementing numeric columns in table "abandoned_matches" */ +export interface abandoned_matches_inc_input {steam_id?: (Scalars['bigint'] | null)} -/** select "v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns = 'team_kdr' +/** input type for inserting data into table "abandoned_matches" */ +export interface abandoned_matches_insert_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} -/** select "v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns = 'team_kdr' +/** aggregate max on columns */ +export interface abandoned_matches_max_fieldsGenqlSelection{ + abandoned_at?: boolean | number + id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns = 'team_kdr' +/** order by max() on columns of table "abandoned_matches" */ +export interface abandoned_matches_max_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),steam_id?: (order_by | null)} -/** select "v_team_tournament_results_aggregate_bool_exp_max_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns = 'team_kdr' +/** aggregate min on columns */ +export interface abandoned_matches_min_fieldsGenqlSelection{ + abandoned_at?: boolean | number + id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_tournament_results_aggregate_bool_exp_min_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns = 'team_kdr' +/** order by min() on columns of table "abandoned_matches" */ +export interface abandoned_matches_min_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),steam_id?: (order_by | null)} -/** select "v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns = 'team_kdr' +/** response of any mutation on the table "abandoned_matches" */ +export interface abandoned_matches_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: abandoned_matchesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns = 'team_kdr' +/** on_conflict condition type for table "abandoned_matches" */ +export interface abandoned_matches_on_conflict {constraint: abandoned_matches_constraint,update_columns?: abandoned_matches_update_column[],where?: (abandoned_matches_bool_exp | null)} -/** select "v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_team_tournament_results" */ -export type v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns = 'team_kdr' +/** Ordering options when selecting data from "abandoned_matches". */ +export interface abandoned_matches_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: abandoned_matches */ +export interface abandoned_matches_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "abandoned_matches" */ +export interface abandoned_matches_set_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} /** aggregate stddev on columns */ -export interface v_team_tournament_results_stddev_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_tournament_results_stddev_fields' +export interface abandoned_matches_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +/** order by stddev() on columns of table "abandoned_matches" */ +export interface abandoned_matches_stddev_order_by {steam_id?: (order_by | null)} + + /** aggregate stddev_pop on columns */ -export interface v_team_tournament_results_stddev_pop_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_tournament_results_stddev_pop_fields' +export interface abandoned_matches_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +/** order by stddev_pop() on columns of table "abandoned_matches" */ +export interface abandoned_matches_stddev_pop_order_by {steam_id?: (order_by | null)} + + /** aggregate stddev_samp on columns */ -export interface v_team_tournament_results_stddev_samp_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_tournament_results_stddev_samp_fields' +export interface abandoned_matches_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +/** order by stddev_samp() on columns of table "abandoned_matches" */ +export interface abandoned_matches_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "abandoned_matches" */ +export interface abandoned_matches_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: abandoned_matches_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface abandoned_matches_stream_cursor_value_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + /** aggregate sum on columns */ -export interface v_team_tournament_results_sum_fields { - head_to_head_match_wins: (Scalars['Int'] | null) - head_to_head_rounds_won: (Scalars['Int'] | null) - losses: (Scalars['Int'] | null) - maps_lost: (Scalars['Int'] | null) - maps_won: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - matches_remaining: (Scalars['Int'] | null) - rounds_lost: (Scalars['Int'] | null) - rounds_won: (Scalars['Int'] | null) - team_kdr: (Scalars['float8'] | null) - total_deaths: (Scalars['Int'] | null) - total_kills: (Scalars['Int'] | null) - wins: (Scalars['Int'] | null) - __typename: 'v_team_tournament_results_sum_fields' +export interface abandoned_matches_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +/** order by sum() on columns of table "abandoned_matches" */ +export interface abandoned_matches_sum_order_by {steam_id?: (order_by | null)} + +export interface abandoned_matches_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (abandoned_matches_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (abandoned_matches_set_input | null), +/** filter the rows which have to be updated */ +where: abandoned_matches_bool_exp} + + /** aggregate var_pop on columns */ -export interface v_team_tournament_results_var_pop_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_tournament_results_var_pop_fields' +export interface abandoned_matches_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +/** order by var_pop() on columns of table "abandoned_matches" */ +export interface abandoned_matches_var_pop_order_by {steam_id?: (order_by | null)} + + /** aggregate var_samp on columns */ -export interface v_team_tournament_results_var_samp_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_tournament_results_var_samp_fields' +export interface abandoned_matches_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +/** order by var_samp() on columns of table "abandoned_matches" */ +export interface abandoned_matches_var_samp_order_by {steam_id?: (order_by | null)} + + /** aggregate variance on columns */ -export interface v_team_tournament_results_variance_fields { - head_to_head_match_wins: (Scalars['Float'] | null) - head_to_head_rounds_won: (Scalars['Float'] | null) - losses: (Scalars['Float'] | null) - maps_lost: (Scalars['Float'] | null) - maps_won: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - matches_remaining: (Scalars['Float'] | null) - rounds_lost: (Scalars['Float'] | null) - rounds_won: (Scalars['Float'] | null) - team_kdr: (Scalars['Float'] | null) - total_deaths: (Scalars['Float'] | null) - total_kills: (Scalars['Float'] | null) - wins: (Scalars['Float'] | null) - __typename: 'v_team_tournament_results_variance_fields' +export interface abandoned_matches_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** columns and relationships of "v_tournament_player_stats" */ -export interface v_tournament_player_stats { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - /** An object relationship */ - player: (players | null) - player_steam_id: (Scalars['bigint'] | null) - /** An object relationship */ - tournament: (tournaments | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'v_tournament_player_stats' -} +/** order by variance() on columns of table "abandoned_matches" */ +export interface abandoned_matches_variance_order_by {steam_id?: (order_by | null)} -/** aggregated selection of "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregate { - aggregate: (v_tournament_player_stats_aggregate_fields | null) - nodes: v_tournament_player_stats[] - __typename: 'v_tournament_player_stats_aggregate' +/** columns and relationships of "api_keys" */ +export interface api_keysGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + label?: boolean | number + last_used_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate fields of "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregate_fields { - avg: (v_tournament_player_stats_avg_fields | null) - count: Scalars['Int'] - max: (v_tournament_player_stats_max_fields | null) - min: (v_tournament_player_stats_min_fields | null) - stddev: (v_tournament_player_stats_stddev_fields | null) - stddev_pop: (v_tournament_player_stats_stddev_pop_fields | null) - stddev_samp: (v_tournament_player_stats_stddev_samp_fields | null) - sum: (v_tournament_player_stats_sum_fields | null) - var_pop: (v_tournament_player_stats_var_pop_fields | null) - var_samp: (v_tournament_player_stats_var_samp_fields | null) - variance: (v_tournament_player_stats_variance_fields | null) - __typename: 'v_tournament_player_stats_aggregate_fields' +/** aggregated selection of "api_keys" */ +export interface api_keys_aggregateGenqlSelection{ + aggregate?: api_keys_aggregate_fieldsGenqlSelection + nodes?: api_keysGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate avg on columns */ -export interface v_tournament_player_stats_avg_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_avg_fields' +/** aggregate fields of "api_keys" */ +export interface api_keys_aggregate_fieldsGenqlSelection{ + avg?: api_keys_avg_fieldsGenqlSelection + count?: { __args: {columns?: (api_keys_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: api_keys_max_fieldsGenqlSelection + min?: api_keys_min_fieldsGenqlSelection + stddev?: api_keys_stddev_fieldsGenqlSelection + stddev_pop?: api_keys_stddev_pop_fieldsGenqlSelection + stddev_samp?: api_keys_stddev_samp_fieldsGenqlSelection + sum?: api_keys_sum_fieldsGenqlSelection + var_pop?: api_keys_var_pop_fieldsGenqlSelection + var_samp?: api_keys_var_samp_fieldsGenqlSelection + variance?: api_keys_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate max on columns */ -export interface v_tournament_player_stats_max_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'v_tournament_player_stats_max_fields' +/** aggregate avg on columns */ +export interface api_keys_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -/** aggregate min on columns */ -export interface v_tournament_player_stats_min_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - tournament_id: (Scalars['uuid'] | null) - __typename: 'v_tournament_player_stats_min_fields' -} +/** Boolean expression to filter rows from the table "api_keys". All fields are combined with a logical 'AND'. */ +export interface api_keys_bool_exp {_and?: (api_keys_bool_exp[] | null),_not?: (api_keys_bool_exp | null),_or?: (api_keys_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),label?: (String_comparison_exp | null),last_used_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} -/** select columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column = 'assists' | 'deaths' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'matches_played' | 'player_steam_id' | 'tournament_id' +/** input type for incrementing numeric columns in table "api_keys" */ +export interface api_keys_inc_input {steam_id?: (Scalars['bigint'] | null)} -/** select "v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' +/** input type for inserting data into table "api_keys" */ +export interface api_keys_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} -/** select "v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' +/** aggregate max on columns */ +export interface api_keys_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + label?: boolean | number + last_used_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' +/** aggregate min on columns */ +export interface api_keys_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + label?: boolean | number + last_used_at?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' +/** response of any mutation on the table "api_keys" */ +export interface api_keys_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: api_keysGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** select "v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' +/** on_conflict condition type for table "api_keys" */ +export interface api_keys_on_conflict {constraint: api_keys_constraint,update_columns?: api_keys_update_column[],where?: (api_keys_bool_exp | null)} -/** select "v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' +/** Ordering options when selecting data from "api_keys". */ +export interface api_keys_order_by {created_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),last_used_at?: (order_by | null),steam_id?: (order_by | null)} -/** select "v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' +/** primary key columns input for table: api_keys */ +export interface api_keys_pk_columns_input {id: Scalars['uuid']} -/** select "v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_tournament_player_stats" */ -export type v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' +/** input type for updating data in table "api_keys" */ +export interface api_keys_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} /** aggregate stddev on columns */ -export interface v_tournament_player_stats_stddev_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_stddev_fields' +export interface api_keys_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } /** aggregate stddev_pop on columns */ -export interface v_tournament_player_stats_stddev_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_stddev_pop_fields' +export interface api_keys_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } /** aggregate stddev_samp on columns */ -export interface v_tournament_player_stats_stddev_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_stddev_samp_fields' +export interface api_keys_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +/** Streaming cursor of the table "api_keys" */ +export interface api_keys_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: api_keys_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface api_keys_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} + + /** aggregate sum on columns */ -export interface v_tournament_player_stats_sum_fields { - assists: (Scalars['Int'] | null) - deaths: (Scalars['Int'] | null) - headshot_percentage: (Scalars['float8'] | null) - headshots: (Scalars['Int'] | null) - kdr: (Scalars['float8'] | null) - kills: (Scalars['Int'] | null) - matches_played: (Scalars['Int'] | null) - player_steam_id: (Scalars['bigint'] | null) - __typename: 'v_tournament_player_stats_sum_fields' +export interface api_keys_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } +export interface api_keys_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (api_keys_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (api_keys_set_input | null), +/** filter the rows which have to be updated */ +where: api_keys_bool_exp} + /** aggregate var_pop on columns */ -export interface v_tournament_player_stats_var_pop_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_var_pop_fields' +export interface api_keys_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } /** aggregate var_samp on columns */ -export interface v_tournament_player_stats_var_samp_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_var_samp_fields' +export interface api_keys_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } /** aggregate variance on columns */ -export interface v_tournament_player_stats_variance_fields { - assists: (Scalars['Float'] | null) - deaths: (Scalars['Float'] | null) - headshot_percentage: (Scalars['Float'] | null) - headshots: (Scalars['Float'] | null) - kdr: (Scalars['Float'] | null) - kills: (Scalars['Float'] | null) - matches_played: (Scalars['Float'] | null) - player_steam_id: (Scalars['Float'] | null) - __typename: 'v_tournament_player_stats_variance_fields' +export interface api_keys_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } -export type Query = query_root -export type Mutation = mutation_root -export type Subscription = subscription_root +export interface approve_league_season_movements_args {_league_season_id?: (Scalars['uuid'] | null)} -export interface ActiveConnectionGenqlSelection{ - application_name?: boolean | number - client_addr?: boolean | number - pid?: boolean | number - query?: boolean | number - query_start?: boolean | number - state?: boolean | number - usename?: boolean | number + +/** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ +export interface bigint_array_comparison_exp { +/** is the array contained in the given array value */ +_contained_in?: (Scalars['bigint'][] | null), +/** does the array contain the given value */ +_contains?: (Scalars['bigint'][] | null),_eq?: (Scalars['bigint'][] | null),_gt?: (Scalars['bigint'][] | null),_gte?: (Scalars['bigint'][] | null),_in?: (Scalars['bigint'][][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['bigint'][] | null),_lte?: (Scalars['bigint'][] | null),_neq?: (Scalars['bigint'][] | null),_nin?: (Scalars['bigint'][][] | null)} + + +/** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ +export interface bigint_comparison_exp {_eq?: (Scalars['bigint'] | null),_gt?: (Scalars['bigint'] | null),_gte?: (Scalars['bigint'] | null),_in?: (Scalars['bigint'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['bigint'] | null),_lte?: (Scalars['bigint'] | null),_neq?: (Scalars['bigint'] | null),_nin?: (Scalars['bigint'][] | null)} + + +/** Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. */ +export interface bytea_comparison_exp {_eq?: (Scalars['bytea'] | null),_gt?: (Scalars['bytea'] | null),_gte?: (Scalars['bytea'] | null),_in?: (Scalars['bytea'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['bytea'] | null),_lte?: (Scalars['bytea'] | null),_neq?: (Scalars['bytea'] | null),_nin?: (Scalars['bytea'][] | null)} + + +/** columns and relationships of "clip_render_jobs" */ +export interface clip_render_jobsGenqlSelection{ + /** An object relationship */ + clip?: match_clipsGenqlSelection + clip_id?: boolean | number + created_at?: boolean | number + error_message?: boolean | number + /** An object relationship */ + game_server_node?: game_server_nodesGenqlSelection + game_server_node_id?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + last_status_at?: boolean | number + /** An object relationship */ + match_map?: match_mapsGenqlSelection + /** An object relationship */ + match_map_demo?: match_map_demosGenqlSelection + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + paused?: boolean | number + progress?: boolean | number + session_token?: boolean | number + sort_index?: boolean | number + spec?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + status?: boolean | number + status_history?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + /** An object relationship */ + user?: playersGenqlSelection + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ActiveQueryGenqlSelection{ - application_name?: boolean | number - client_addr?: boolean | number - duration_seconds?: boolean | number - pid?: boolean | number - query?: boolean | number - query_start?: boolean | number - state?: boolean | number - usename?: boolean | number - wait_event?: boolean | number - wait_event_type?: boolean | number + +/** aggregated selection of "clip_render_jobs" */ +export interface clip_render_jobs_aggregateGenqlSelection{ + aggregate?: clip_render_jobs_aggregate_fieldsGenqlSelection + nodes?: clip_render_jobsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface ApiKeyResponseGenqlSelection{ - key?: boolean | number +export interface clip_render_jobs_aggregate_bool_exp {bool_and?: (clip_render_jobs_aggregate_bool_exp_bool_and | null),bool_or?: (clip_render_jobs_aggregate_bool_exp_bool_or | null),count?: (clip_render_jobs_aggregate_bool_exp_count | null)} + +export interface clip_render_jobs_aggregate_bool_exp_bool_and {arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (clip_render_jobs_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface clip_render_jobs_aggregate_bool_exp_bool_or {arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (clip_render_jobs_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface clip_render_jobs_aggregate_bool_exp_count {arguments?: (clip_render_jobs_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (clip_render_jobs_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "clip_render_jobs" */ +export interface clip_render_jobs_aggregate_fieldsGenqlSelection{ + avg?: clip_render_jobs_avg_fieldsGenqlSelection + count?: { __args: {columns?: (clip_render_jobs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: clip_render_jobs_max_fieldsGenqlSelection + min?: clip_render_jobs_min_fieldsGenqlSelection + stddev?: clip_render_jobs_stddev_fieldsGenqlSelection + stddev_pop?: clip_render_jobs_stddev_pop_fieldsGenqlSelection + stddev_samp?: clip_render_jobs_stddev_samp_fieldsGenqlSelection + sum?: clip_render_jobs_sum_fieldsGenqlSelection + var_pop?: clip_render_jobs_var_pop_fieldsGenqlSelection + var_samp?: clip_render_jobs_var_samp_fieldsGenqlSelection + variance?: clip_render_jobs_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */ -export interface Boolean_comparison_exp {_eq?: (Scalars['Boolean'] | null),_gt?: (Scalars['Boolean'] | null),_gte?: (Scalars['Boolean'] | null),_in?: (Scalars['Boolean'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Boolean'] | null),_lte?: (Scalars['Boolean'] | null),_neq?: (Scalars['Boolean'] | null),_nin?: (Scalars['Boolean'][] | null)} +/** order by aggregate values of table "clip_render_jobs" */ +export interface clip_render_jobs_aggregate_order_by {avg?: (clip_render_jobs_avg_order_by | null),count?: (order_by | null),max?: (clip_render_jobs_max_order_by | null),min?: (clip_render_jobs_min_order_by | null),stddev?: (clip_render_jobs_stddev_order_by | null),stddev_pop?: (clip_render_jobs_stddev_pop_order_by | null),stddev_samp?: (clip_render_jobs_stddev_samp_order_by | null),sum?: (clip_render_jobs_sum_order_by | null),var_pop?: (clip_render_jobs_var_pop_order_by | null),var_samp?: (clip_render_jobs_var_samp_order_by | null),variance?: (clip_render_jobs_variance_order_by | null)} -export interface ClipAudioInput {duck_game_audio?: (Scalars['Boolean'] | null),fade_in_ms?: (Scalars['Int'] | null),fade_out_ms?: (Scalars['Int'] | null),track_url?: (Scalars['String'] | null),volume?: (Scalars['Float'] | null)} -export interface ClipOutputInput {format: Scalars['String'],fps: Scalars['Int'],resolution: Scalars['String']} +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface clip_render_jobs_append_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} -export interface ClipOverlayInput {end_ms: Scalars['Int'],payload?: (Scalars['jsonb'] | null),start_ms: Scalars['Int'],type: Scalars['String']} -export interface ClipSegmentInput {end_tick: Scalars['Int'],pov_steam_id?: (Scalars['String'] | null),start_tick: Scalars['Int']} +/** input type for inserting array relation for remote table "clip_render_jobs" */ +export interface clip_render_jobs_arr_rel_insert_input {data: clip_render_jobs_insert_input[], +/** upsert condition */ +on_conflict?: (clip_render_jobs_on_conflict | null)} -export interface ClipSpecInput {audio?: (ClipAudioInput | null),destination: Scalars['String'],match_map_id: Scalars['uuid'],output: ClipOutputInput,overlays?: (ClipOverlayInput[] | null),segments: ClipSegmentInput[],title?: (Scalars['String'] | null)} -export interface ConnectionByStateGenqlSelection{ - count?: boolean | number - state?: boolean | number - wait_event_type?: boolean | number - waiting_count?: boolean | number +/** aggregate avg on columns */ +export interface clip_render_jobs_avg_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ConnectionStatsGenqlSelection{ - active?: boolean | number - by_state?: ConnectionByStateGenqlSelection - idle?: boolean | number - idle_in_transaction?: boolean | number - total?: boolean | number - waiting?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface CpuStatGenqlSelection{ - time?: boolean | number - total?: boolean | number - used?: boolean | number - window?: boolean | number +/** order by avg() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_avg_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. */ +export interface clip_render_jobs_bool_exp {_and?: (clip_render_jobs_bool_exp[] | null),_not?: (clip_render_jobs_bool_exp | null),_or?: (clip_render_jobs_bool_exp[] | null),clip?: (match_clips_bool_exp | null),clip_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),error_message?: (String_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),k8s_job_name?: (String_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_demo?: (match_map_demos_bool_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),paused?: (Boolean_comparison_exp | null),progress?: (numeric_comparison_exp | null),session_token?: (String_comparison_exp | null),sort_index?: (Int_comparison_exp | null),spec?: (jsonb_comparison_exp | null),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),user?: (players_bool_exp | null),user_steam_id?: (bigint_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface clip_render_jobs_delete_at_path_input {spec?: (Scalars['String'][] | null),status_history?: (Scalars['String'][] | null)} + + +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +export interface clip_render_jobs_delete_elem_input {spec?: (Scalars['Int'] | null),status_history?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface clip_render_jobs_delete_key_input {spec?: (Scalars['String'] | null),status_history?: (Scalars['String'] | null)} + + +/** input type for incrementing numeric columns in table "clip_render_jobs" */ +export interface clip_render_jobs_inc_input {progress?: (Scalars['numeric'] | null),sort_index?: (Scalars['Int'] | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "clip_render_jobs" */ +export interface clip_render_jobs_insert_input {clip?: (match_clips_obj_rel_insert_input | null),clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_demo?: (match_map_demos_obj_rel_insert_input | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user?: (players_obj_rel_insert_input | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface clip_render_jobs_max_fieldsGenqlSelection{ + clip_id?: boolean | number + created_at?: boolean | number + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + last_status_at?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + progress?: boolean | number + session_token?: boolean | number + sort_index?: boolean | number + status?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface CreateClipRenderOutputGenqlSelection{ - job_id?: boolean | number - success?: boolean | number + +/** order by max() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_max_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface clip_render_jobs_min_fieldsGenqlSelection{ + clip_id?: boolean | number + created_at?: boolean | number + error_message?: boolean | number + game_server_node_id?: boolean | number + id?: boolean | number + k8s_job_name?: boolean | number + last_status_at?: boolean | number + match_map_demo_id?: boolean | number + match_map_id?: boolean | number + progress?: boolean | number + session_token?: boolean | number + sort_index?: boolean | number + status?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface CreateDraftGameOutputGenqlSelection{ - draftGameId?: boolean | number + +/** order by min() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_min_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "clip_render_jobs" */ +export interface clip_render_jobs_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: clip_render_jobsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface CreateScheduledMatchOutputGenqlSelection{ - matchId?: boolean | number + +/** on_conflict condition type for table "clip_render_jobs" */ +export interface clip_render_jobs_on_conflict {constraint: clip_render_jobs_constraint,update_columns?: clip_render_jobs_update_column[],where?: (clip_render_jobs_bool_exp | null)} + + +/** Ordering options when selecting data from "clip_render_jobs". */ +export interface clip_render_jobs_order_by {clip?: (match_clips_order_by | null),clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_demo?: (match_map_demos_order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),paused?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),spec?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),user?: (players_order_by | null),user_steam_id?: (order_by | null)} + + +/** primary key columns input for table: clip_render_jobs */ +export interface clip_render_jobs_pk_columns_input {id: Scalars['uuid']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface clip_render_jobs_prepend_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "clip_render_jobs" */ +export interface clip_render_jobs_set_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface clip_render_jobs_stddev_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DatabaseStatsGenqlSelection{ - blks_hit?: boolean | number - blks_read?: boolean | number - cache_hit_ratio?: boolean | number - conflicts?: boolean | number - datname?: boolean | number - deadlocks?: boolean | number - numbackends?: boolean | number - tup_deleted?: boolean | number - tup_fetched?: boolean | number - tup_inserted?: boolean | number - tup_returned?: boolean | number - tup_updated?: boolean | number - xact_commit?: boolean | number - xact_rollback?: boolean | number + +/** order by stddev() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_stddev_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface clip_render_jobs_stddev_pop_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DbStatsGenqlSelection{ - calls?: boolean | number - local_blks_hit?: boolean | number - local_blks_read?: boolean | number - max_exec_time?: boolean | number - mean_exec_time?: boolean | number - min_exec_time?: boolean | number - query?: boolean | number - queryid?: boolean | number - shared_blks_hit?: boolean | number - shared_blks_read?: boolean | number - total_exec_time?: boolean | number - total_rows?: boolean | number + +/** order by stddev_pop() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_stddev_pop_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface clip_render_jobs_stddev_samp_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DedicatedSeverInfoGenqlSelection{ - id?: boolean | number - lastPing?: boolean | number - map?: boolean | number - players?: boolean | number + +/** order by stddev_samp() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_stddev_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "clip_render_jobs" */ +export interface clip_render_jobs_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: clip_render_jobs_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface clip_render_jobs_stream_cursor_value_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface clip_render_jobs_sum_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DeleteOrphansOutputGenqlSelection{ - bytes_freed?: boolean | number - deleted?: boolean | number - remaining_orphans?: boolean | number - success?: boolean | number + +/** order by sum() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_sum_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + +export interface clip_render_jobs_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (clip_render_jobs_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (clip_render_jobs_delete_at_path_input | null), +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +_delete_elem?: (clip_render_jobs_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (clip_render_jobs_delete_key_input | null), +/** increments the numeric columns with given value of the filtered values */ +_inc?: (clip_render_jobs_inc_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (clip_render_jobs_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (clip_render_jobs_set_input | null), +/** filter the rows which have to be updated */ +where: clip_render_jobs_bool_exp} + + +/** aggregate var_pop on columns */ +export interface clip_render_jobs_var_pop_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DiskStatGenqlSelection{ - available?: boolean | number - filesystem?: boolean | number - mountpoint?: boolean | number - size?: boolean | number - used?: boolean | number - usedPercent?: boolean | number + +/** order by var_pop() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_var_pop_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface clip_render_jobs_var_samp_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DiskStatsGenqlSelection{ - disks?: DiskStatGenqlSelection - time?: boolean | number + +/** order by var_samp() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_var_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface clip_render_jobs_variance_fieldsGenqlSelection{ + progress?: boolean | number + sort_index?: boolean | number + user_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DraftGamePreviewOutputGenqlSelection{ - accepted_count?: boolean | number - access?: boolean | number - capacity?: boolean | number - host_avatar_url?: boolean | number - host_name?: boolean | number - host_steam_id?: boolean | number + +/** order by variance() on columns of table "clip_render_jobs" */ +export interface clip_render_jobs_variance_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} + +export interface clone_league_season_args {_league_season_id?: (Scalars['uuid'] | null)} + + +/** columns and relationships of "db_backups" */ +export interface db_backupsGenqlSelection{ + created_at?: boolean | number id?: boolean | number - mode?: boolean | number - players?: DraftGamePreviewPlayerGenqlSelection - require_approval?: boolean | number - status?: boolean | number - type?: boolean | number + name?: boolean | number + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface DraftGamePreviewPlayerGenqlSelection{ - avatar_url?: boolean | number - name?: boolean | number - status?: boolean | number - steam_id?: boolean | number + +/** aggregated selection of "db_backups" */ +export interface db_backups_aggregateGenqlSelection{ + aggregate?: db_backups_aggregate_fieldsGenqlSelection + nodes?: db_backupsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface FaceitTestOutputGenqlSelection{ - dataApi?: FaceitTestResultGenqlSelection - downloadApi?: FaceitTestResultGenqlSelection + +/** aggregate fields of "db_backups" */ +export interface db_backups_aggregate_fieldsGenqlSelection{ + avg?: db_backups_avg_fieldsGenqlSelection + count?: { __args: {columns?: (db_backups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: db_backups_max_fieldsGenqlSelection + min?: db_backups_min_fieldsGenqlSelection + stddev?: db_backups_stddev_fieldsGenqlSelection + stddev_pop?: db_backups_stddev_pop_fieldsGenqlSelection + stddev_samp?: db_backups_stddev_samp_fieldsGenqlSelection + sum?: db_backups_sum_fieldsGenqlSelection + var_pop?: db_backups_var_pop_fieldsGenqlSelection + var_samp?: db_backups_var_samp_fieldsGenqlSelection + variance?: db_backups_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface FaceitTestResultGenqlSelection{ - detail?: boolean | number - ok?: boolean | number + +/** aggregate avg on columns */ +export interface db_backups_avg_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface FileContentResponseGenqlSelection{ - content?: boolean | number - path?: boolean | number + +/** Boolean expression to filter rows from the table "db_backups". All fields are combined with a logical 'AND'. */ +export interface db_backups_bool_exp {_and?: (db_backups_bool_exp[] | null),_not?: (db_backups_bool_exp | null),_or?: (db_backups_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),size?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "db_backups" */ +export interface db_backups_inc_input {size?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "db_backups" */ +export interface db_backups_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} + + +/** aggregate max on columns */ +export interface db_backups_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + name?: boolean | number size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface FileItemGenqlSelection{ - isDirectory?: boolean | number - modified?: boolean | number + +/** aggregate min on columns */ +export interface db_backups_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number name?: boolean | number - path?: boolean | number size?: boolean | number - type?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface FileListResponseGenqlSelection{ - currentPath?: boolean | number - items?: FileItemGenqlSelection + +/** response of any mutation on the table "db_backups" */ +export interface db_backups_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: db_backupsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to compare columns of type "Float". All fields are combined with logical 'AND'. */ -export interface Float_comparison_exp {_eq?: (Scalars['Float'] | null),_gt?: (Scalars['Float'] | null),_gte?: (Scalars['Float'] | null),_in?: (Scalars['Float'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Float'] | null),_lte?: (Scalars['Float'] | null),_neq?: (Scalars['Float'] | null),_nin?: (Scalars['Float'][] | null)} +/** on_conflict condition type for table "db_backups" */ +export interface db_backups_on_conflict {constraint: db_backups_constraint,update_columns?: db_backups_update_column[],where?: (db_backups_bool_exp | null)} -export interface GetTestUploadResponseGenqlSelection{ - error?: boolean | number - link?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface GpuDeviceStatGenqlSelection{ - index?: boolean | number - memory_mb?: boolean | number - memory_used_mb?: boolean | number - name?: boolean | number - power_w?: boolean | number - temperature_c?: boolean | number - utilization_percent?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Ordering options when selecting data from "db_backups". */ +export interface db_backups_order_by {created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),size?: (order_by | null)} -export interface GpuStatsGenqlSelection{ - devices?: GpuDeviceStatGenqlSelection - time?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface HighlightPresetAvailabilityGenqlSelection{ - best_round?: boolean | number - has_demo?: boolean | number - knife?: boolean | number - multikills?: boolean | number - recap?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: db_backups */ +export interface db_backups_pk_columns_input {id: Scalars['uuid']} -export interface HypertableInfoGenqlSelection{ - compression_enabled?: boolean | number - hypertable_name?: boolean | number - num_chunks?: boolean | number + +/** input type for updating data in table "db_backups" */ +export interface db_backups_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} + + +/** aggregate stddev on columns */ +export interface db_backups_stddev_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface IndexIOStatGenqlSelection{ - idx_blks_hit?: boolean | number - idx_blks_read?: boolean | number - indexname?: boolean | number - schemaname?: boolean | number - tablename?: boolean | number + +/** aggregate stddev_pop on columns */ +export interface db_backups_stddev_pop_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface IndexStatGenqlSelection{ - idx_scan?: boolean | number - idx_tup_fetch?: boolean | number - idx_tup_read?: boolean | number - index_size?: boolean | number - indexname?: boolean | number - schemaname?: boolean | number - table_size?: boolean | number - tablename?: boolean | number + +/** aggregate stddev_samp on columns */ +export interface db_backups_stddev_samp_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */ -export interface Int_comparison_exp {_eq?: (Scalars['Int'] | null),_gt?: (Scalars['Int'] | null),_gte?: (Scalars['Int'] | null),_in?: (Scalars['Int'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Int'] | null),_lte?: (Scalars['Int'] | null),_neq?: (Scalars['Int'] | null),_nin?: (Scalars['Int'][] | null)} +/** Streaming cursor of the table "db_backups" */ +export interface db_backups_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: db_backups_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -export interface KickResultGenqlSelection{ - kicked?: boolean | number - message?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface LiveSpecGsiGenqlSelection{ - map_name?: boolean | number - map_phase?: boolean | number - round_number?: boolean | number - round_phase?: boolean | number - spec_slots?: LiveSpecSlotGenqlSelection - spectated_steam_id?: boolean | number - team_ct_name?: boolean | number - team_ct_score?: boolean | number - team_t_name?: boolean | number - team_t_score?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Initial value of the column from where the streaming should start */ +export interface db_backups_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} -export interface LiveSpecSlotGenqlSelection{ - alive?: boolean | number - health?: boolean | number - name?: boolean | number - slot?: boolean | number - steam_id?: boolean | number - team?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface LiveStreamSpecStateGenqlSelection{ - gsi?: LiveSpecGsiGenqlSelection +/** aggregate sum on columns */ +export interface db_backups_sum_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface LockInfoGenqlSelection{ - granted?: boolean | number - locktype?: boolean | number - mode?: boolean | number - pid?: boolean | number - query?: boolean | number - relation?: boolean | number - usename?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface db_backups_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (db_backups_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (db_backups_set_input | null), +/** filter the rows which have to be updated */ +where: db_backups_bool_exp} -export interface MeResponseGenqlSelection{ - avatar_url?: boolean | number - country?: boolean | number - discord_id?: boolean | number - language?: boolean | number - name?: boolean | number - player?: playersGenqlSelection - profile_url?: boolean | number - role?: boolean | number - steam_id?: boolean | number + +/** aggregate var_pop on columns */ +export interface db_backups_var_pop_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface MemoryStatGenqlSelection{ - time?: boolean | number - total?: boolean | number - used?: boolean | number + +/** aggregate var_samp on columns */ +export interface db_backups_var_samp_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface NetworkStatsGenqlSelection{ - nics?: NicStatGenqlSelection - time?: boolean | number + +/** aggregate variance on columns */ +export interface db_backups_variance_fieldsGenqlSelection{ + size?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface NewsPostGenqlSelection{ - author_steam_id?: boolean | number - content_markdown?: boolean | number - cover_image_url?: boolean | number + +/** columns and relationships of "draft_game_picks" */ +export interface draft_game_picksGenqlSelection{ + auto_picked?: boolean | number + /** An object relationship */ + captain?: playersGenqlSelection + captain_steam_id?: boolean | number created_at?: boolean | number + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number id?: boolean | number - published_at?: boolean | number - slug?: boolean | number - status?: boolean | number - teaser?: boolean | number - title?: boolean | number - updated_at?: boolean | number - view_count?: boolean | number + is_organizer?: boolean | number + lineup?: boolean | number + /** An object relationship */ + picked?: playersGenqlSelection + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface NicStatGenqlSelection{ - name?: boolean | number - rx?: boolean | number - tx?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface NodeStatsGenqlSelection{ - cpu?: CpuStatGenqlSelection - disks?: DiskStatsGenqlSelection - gpu?: GpuStatsGenqlSelection - memory?: MemoryStatGenqlSelection - network?: NetworkStatsGenqlSelection - node?: boolean | number +/** aggregated selection of "draft_game_picks" */ +export interface draft_game_picks_aggregateGenqlSelection{ + aggregate?: draft_game_picks_aggregate_fieldsGenqlSelection + nodes?: draft_game_picksGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface OrphanObjectGenqlSelection{ - key?: boolean | number - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface draft_game_picks_aggregate_bool_exp {bool_and?: (draft_game_picks_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_picks_aggregate_bool_exp_bool_or | null),count?: (draft_game_picks_aggregate_bool_exp_count | null)} -export interface OrphanScanResultOutputGenqlSelection{ - bucket?: boolean | number - clip_bytes?: boolean | number - clip_objects?: boolean | number - demo_bytes?: boolean | number - demo_objects?: boolean | number - found?: boolean | number - orphan_bytes?: boolean | number - orphan_objects?: boolean | number - orphans?: OrphanObjectGenqlSelection - other_bytes?: boolean | number - other_objects?: boolean | number - scanned_at?: boolean | number - scanning?: boolean | number - total_bytes?: boolean | number - total_objects?: boolean | number - tracked_bytes?: boolean | number - tracked_objects?: boolean | number +export interface draft_game_picks_aggregate_bool_exp_bool_and {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_bool_or {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_count {arguments?: (draft_game_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_game_picks" */ +export interface draft_game_picks_aggregate_fieldsGenqlSelection{ + avg?: draft_game_picks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_picks_max_fieldsGenqlSelection + min?: draft_game_picks_min_fieldsGenqlSelection + stddev?: draft_game_picks_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_picks_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_picks_stddev_samp_fieldsGenqlSelection + sum?: draft_game_picks_sum_fieldsGenqlSelection + var_pop?: draft_game_picks_var_pop_fieldsGenqlSelection + var_samp?: draft_game_picks_var_samp_fieldsGenqlSelection + variance?: draft_game_picks_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface PendingMatchImportActionOutputGenqlSelection{ - error?: boolean | number - success?: boolean | number + +/** order by aggregate values of table "draft_game_picks" */ +export interface draft_game_picks_aggregate_order_by {avg?: (draft_game_picks_avg_order_by | null),count?: (order_by | null),max?: (draft_game_picks_max_order_by | null),min?: (draft_game_picks_min_order_by | null),stddev?: (draft_game_picks_stddev_order_by | null),stddev_pop?: (draft_game_picks_stddev_pop_order_by | null),stddev_samp?: (draft_game_picks_stddev_samp_order_by | null),sum?: (draft_game_picks_sum_order_by | null),var_pop?: (draft_game_picks_var_pop_order_by | null),var_samp?: (draft_game_picks_var_samp_order_by | null),variance?: (draft_game_picks_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_picks" */ +export interface draft_game_picks_arr_rel_insert_input {data: draft_game_picks_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_picks_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_game_picks_avg_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface PodStatsGenqlSelection{ - cpu?: CpuStatGenqlSelection - memory?: MemoryStatGenqlSelection - name?: boolean | number - node?: boolean | number + +/** order by avg() on columns of table "draft_game_picks" */ +export interface draft_game_picks_avg_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. */ +export interface draft_game_picks_bool_exp {_and?: (draft_game_picks_bool_exp[] | null),_not?: (draft_game_picks_bool_exp | null),_or?: (draft_game_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),lineup?: (Int_comparison_exp | null),picked?: (players_bool_exp | null),picked_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_picks" */ +export interface draft_game_picks_inc_input {captain_steam_id?: (Scalars['bigint'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_picks" */ +export interface draft_game_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked?: (players_obj_rel_insert_input | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_picks_max_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface PreviewTournamentMatchResetOutputGenqlSelection{ - impacts?: TournamentMatchResetImpactGenqlSelection + +/** order by max() on columns of table "draft_game_picks" */ +export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_picks_min_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface QueryDetailGenqlSelection{ - explain_plan?: boolean | number - query?: boolean | number - queryid?: boolean | number - stats?: QueryStatGenqlSelection + +/** order by min() on columns of table "draft_game_picks" */ +export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_picks" */ +export interface draft_game_picks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_picksGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface QueryStatGenqlSelection{ - cache_hit_ratio?: boolean | number - calls?: boolean | number - local_blks_hit?: boolean | number - local_blks_read?: boolean | number - max_exec_time?: boolean | number - mean_exec_time?: boolean | number - min_exec_time?: boolean | number - query?: boolean | number - queryid?: boolean | number - shared_blks_hit?: boolean | number - shared_blks_read?: boolean | number - stddev_exec_time?: boolean | number - temp_blks_written?: boolean | number - total_exec_time?: boolean | number - total_rows?: boolean | number + +/** on_conflict condition type for table "draft_game_picks" */ +export interface draft_game_picks_on_conflict {constraint: draft_game_picks_constraint,update_columns?: draft_game_picks_update_column[],where?: (draft_game_picks_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_picks". */ +export interface draft_game_picks_order_by {auto_picked?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),lineup?: (order_by | null),picked?: (players_order_by | null),picked_steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_picks */ +export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "draft_game_picks" */ +export interface draft_game_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_picks_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface RecomputeEloStartedOutputGenqlSelection{ - running?: boolean | number - success?: boolean | number + +/** order by stddev() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface RecomputeEloStatusOutputGenqlSelection{ - canceled?: boolean | number - completed?: boolean | number - current_match_id?: boolean | number - failed?: boolean | number - finished_at?: boolean | number - running?: boolean | number - started_at?: boolean | number - total?: boolean | number + +/** order by stddev_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_picks_stddev_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ReindexStartedOutputGenqlSelection{ - running?: boolean | number - success?: boolean | number + +/** order by stddev_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_picks" */ +export interface draft_game_picks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_picks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_picks_sum_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ReindexStatusOutputGenqlSelection{ - canceled?: boolean | number - completed?: boolean | number - current_steam_id?: boolean | number - failed?: boolean | number - finished_at?: boolean | number - running?: boolean | number - started_at?: boolean | number - total?: boolean | number + +/** order by sum() on columns of table "draft_game_picks" */ +export interface draft_game_picks_sum_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + +export interface draft_game_picks_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_picks_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_picks_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_picks_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_picks_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ReparseAllStartedOutputGenqlSelection{ - running?: boolean | number - success?: boolean | number + +/** order by var_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_picks_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ReparseAllStatusOutputGenqlSelection{ - canceled?: boolean | number - completed?: boolean | number - current_demo_id?: boolean | number - failed?: boolean | number - finished_at?: boolean | number - running?: boolean | number - started_at?: boolean | number - total?: boolean | number + +/** order by var_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface draft_game_picks_variance_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SanctionResultGenqlSelection{ - enforced?: boolean | number - id?: boolean | number - message?: boolean | number + +/** order by variance() on columns of table "draft_game_picks" */ +export interface draft_game_picks_variance_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_game_players" */ +export interface draft_game_playersGenqlSelection{ + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number + /** An object relationship */ + e_draft_game_player_status?: e_draft_game_player_statusGenqlSelection + elo_snapshot?: boolean | number + is_captain?: boolean | number + is_organizer?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + status?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface ScanStartedOutputGenqlSelection{ - scanning?: boolean | number - success?: boolean | number + +/** aggregated selection of "draft_game_players" */ +export interface draft_game_players_aggregateGenqlSelection{ + aggregate?: draft_game_players_aggregate_fieldsGenqlSelection + nodes?: draft_game_playersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface ScheduledLineupInput {steam_ids?: (Scalars['String'][] | null),team_id?: (Scalars['String'] | null)} +export interface draft_game_players_aggregate_bool_exp {bool_and?: (draft_game_players_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_players_aggregate_bool_exp_bool_or | null),count?: (draft_game_players_aggregate_bool_exp_count | null)} -export interface SeasonBackfillStatusOutputGenqlSelection{ - canceled?: boolean | number - completed?: boolean | number - current_match_id?: boolean | number - failed?: boolean | number - finished_at?: boolean | number - running?: boolean | number - season_id?: boolean | number - started_at?: boolean | number - total?: boolean | number +export interface draft_game_players_aggregate_bool_exp_bool_and {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_players_aggregate_bool_exp_bool_or {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_players_aggregate_bool_exp_count {arguments?: (draft_game_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_game_players" */ +export interface draft_game_players_aggregate_fieldsGenqlSelection{ + avg?: draft_game_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_players_max_fieldsGenqlSelection + min?: draft_game_players_min_fieldsGenqlSelection + stddev?: draft_game_players_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_players_stddev_samp_fieldsGenqlSelection + sum?: draft_game_players_sum_fieldsGenqlSelection + var_pop?: draft_game_players_var_pop_fieldsGenqlSelection + var_samp?: draft_game_players_var_samp_fieldsGenqlSelection + variance?: draft_game_players_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface ServerPlayerGenqlSelection{ - name?: boolean | number + +/** order by aggregate values of table "draft_game_players" */ +export interface draft_game_players_aggregate_order_by {avg?: (draft_game_players_avg_order_by | null),count?: (order_by | null),max?: (draft_game_players_max_order_by | null),min?: (draft_game_players_min_order_by | null),stddev?: (draft_game_players_stddev_order_by | null),stddev_pop?: (draft_game_players_stddev_pop_order_by | null),stddev_samp?: (draft_game_players_stddev_samp_order_by | null),sum?: (draft_game_players_sum_order_by | null),var_pop?: (draft_game_players_var_pop_order_by | null),var_samp?: (draft_game_players_var_samp_order_by | null),variance?: (draft_game_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_players" */ +export interface draft_game_players_arr_rel_insert_input {data: draft_game_players_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_game_players_avg_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SetupGameServeOutputGenqlSelection{ - gameServerId?: boolean | number - link?: boolean | number + +/** order by avg() on columns of table "draft_game_players" */ +export interface draft_game_players_avg_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ +export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_players" */ +export interface draft_game_players_inc_input {elo_snapshot?: (Scalars['Int'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_players" */ +export interface draft_game_players_insert_input {draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),e_draft_game_player_status?: (e_draft_game_player_status_obj_rel_insert_input | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_players_max_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SteamMatchHistoryLinkOutputGenqlSelection{ - error?: boolean | number - success?: boolean | number + +/** order by max() on columns of table "draft_game_players" */ +export interface draft_game_players_max_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_players_min_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SteamMatchHistoryPollOutputGenqlSelection{ - collected?: boolean | number - error?: boolean | number - success?: boolean | number + +/** order by min() on columns of table "draft_game_players" */ +export interface draft_game_players_min_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_players" */ +export interface draft_game_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_playersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface SteamPresenceAdminStatusOutputGenqlSelection{ - bots?: SteamPresenceBotGenqlSelection - enabled?: boolean | number - pool?: SteamPresencePoolGenqlSelection + +/** on_conflict condition type for table "draft_game_players" */ +export interface draft_game_players_on_conflict {constraint: draft_game_players_constraint,update_columns?: draft_game_players_update_column[],where?: (draft_game_players_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_players". */ +export interface draft_game_players_order_by {draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),e_draft_game_player_status?: (e_draft_game_player_status_order_by | null),elo_snapshot?: (order_by | null),is_captain?: (order_by | null),is_organizer?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_players */ +export interface draft_game_players_pk_columns_input {draft_game_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "draft_game_players" */ +export interface draft_game_players_set_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_players_stddev_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SteamPresenceBotGenqlSelection{ - assigned?: boolean | number - capacity?: boolean | number - guardLastWrong?: boolean | number - guardType?: boolean | number - id?: boolean | number - needs2fa?: boolean | number - online?: boolean | number - steamId?: boolean | number - steamLevel?: boolean | number - username?: boolean | number - watching?: boolean | number + +/** order by stddev() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_players_stddev_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SteamPresenceBotAssignmentGenqlSelection{ - addUrl?: boolean | number - enabled?: boolean | number - status?: boolean | number - steamId?: boolean | number + +/** order by stddev_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_players_stddev_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface SteamPresencePoolGenqlSelection{ - bots?: boolean | number - capacity?: boolean | number - online?: boolean | number - pending?: boolean | number - watching?: boolean | number + +/** order by stddev_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_players" */ +export interface draft_game_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_players_stream_cursor_value_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_players_sum_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface StorageStatsGenqlSelection{ - summary?: StorageSummaryGenqlSelection - tables?: TableSizeInfoGenqlSelection + +/** order by sum() on columns of table "draft_game_players" */ +export interface draft_game_players_sum_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + +export interface draft_game_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_players_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_players_var_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface StorageSummaryGenqlSelection{ - estimated_reclaimable_space?: boolean | number - total_database_size?: boolean | number - total_indexes_size?: boolean | number - total_table_size?: boolean | number + +/** order by var_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_var_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_players_var_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ -export interface String_array_comparison_exp { -/** is the array contained in the given array value */ -_contained_in?: (Scalars['String'][] | null), -/** does the array contain the given value */ -_contains?: (Scalars['String'][] | null),_eq?: (Scalars['String'][] | null),_gt?: (Scalars['String'][] | null),_gte?: (Scalars['String'][] | null),_in?: (Scalars['String'][][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['String'][] | null),_lte?: (Scalars['String'][] | null),_neq?: (Scalars['String'][] | null),_nin?: (Scalars['String'][][] | null)} - +/** order by var_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_var_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} -/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */ -export interface String_comparison_exp {_eq?: (Scalars['String'] | null),_gt?: (Scalars['String'] | null),_gte?: (Scalars['String'] | null), -/** does the column match the given case-insensitive pattern */ -_ilike?: (Scalars['String'] | null),_in?: (Scalars['String'][] | null), -/** does the column match the given POSIX regular expression, case insensitive */ -_iregex?: (Scalars['String'] | null),_is_null?: (Scalars['Boolean'] | null), -/** does the column match the given pattern */ -_like?: (Scalars['String'] | null),_lt?: (Scalars['String'] | null),_lte?: (Scalars['String'] | null),_neq?: (Scalars['String'] | null), -/** does the column NOT match the given case-insensitive pattern */ -_nilike?: (Scalars['String'] | null),_nin?: (Scalars['String'][] | null), -/** does the column NOT match the given POSIX regular expression, case insensitive */ -_niregex?: (Scalars['String'] | null), -/** does the column NOT match the given pattern */ -_nlike?: (Scalars['String'] | null), -/** does the column NOT match the given POSIX regular expression, case sensitive */ -_nregex?: (Scalars['String'] | null), -/** does the column NOT match the given SQL regular expression */ -_nsimilar?: (Scalars['String'] | null), -/** does the column match the given POSIX regular expression, case sensitive */ -_regex?: (Scalars['String'] | null), -/** does the column match the given SQL regular expression */ -_similar?: (Scalars['String'] | null)} -export interface SuccessOutputGenqlSelection{ - success?: boolean | number +/** aggregate variance on columns */ +export interface draft_game_players_variance_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TableIOStatGenqlSelection{ - cache_hit_ratio?: boolean | number - heap_blks_hit?: boolean | number - heap_blks_read?: boolean | number - idx_blks_hit?: boolean | number - idx_blks_read?: boolean | number - relname?: boolean | number - schemaname?: boolean | number + +/** order by variance() on columns of table "draft_game_players" */ +export interface draft_game_players_variance_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_games" */ +export interface draft_gamesGenqlSelection{ + access?: boolean | number + capacity?: boolean | number + captain_selection?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + draft_order?: boolean | number + /** An object relationship */ + e_draft_game_captain_selection?: e_draft_game_captain_selectionGenqlSelection + /** An object relationship */ + e_draft_game_draft_order?: e_draft_game_draft_orderGenqlSelection + /** An object relationship */ + e_draft_game_mode?: e_draft_game_modeGenqlSelection + /** An object relationship */ + e_draft_game_status?: e_draft_game_statusGenqlSelection + /** An object relationship */ + e_lobby_access?: e_lobby_accessGenqlSelection + expires_at?: boolean | number + /** An object relationship */ + host?: playersGenqlSelection + host_steam_id?: boolean | number + id?: boolean | number + inner_squad?: boolean | number + invite_code?: boolean | number + is_organizer?: boolean | number + /** An object relationship */ + map_pool?: map_poolsGenqlSelection + map_pool_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + mode?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + /** Turn order (lineup 1/2) for each remaining non-captain pick. */ + pattern?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + pick_deadline?: boolean | number + /** An array relationship */ + picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An aggregate relationship */ + picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An array relationship */ + players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + regions?: boolean | number + require_approval?: boolean | number + scheduled_at?: boolean | number + status?: boolean | number + /** An object relationship */ + team_1?: teamsGenqlSelection + team_1_id?: boolean | number + /** An object relationship */ + team_2?: teamsGenqlSelection + team_2_id?: boolean | number + type?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface TableSizeInfoGenqlSelection{ - estimated_dead_tuple_bytes?: boolean | number - indexes_size?: boolean | number - n_dead_tup?: boolean | number - n_live_tup?: boolean | number - schemaname?: boolean | number - table_size?: boolean | number - tablename?: boolean | number - total_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface TableStatGenqlSelection{ - idx_scan?: boolean | number - idx_tup_fetch?: boolean | number - last_analyze?: boolean | number - last_autoanalyze?: boolean | number - last_autovacuum?: boolean | number - last_vacuum?: boolean | number - n_dead_tup?: boolean | number - n_live_tup?: boolean | number - n_tup_del?: boolean | number - n_tup_hot_upd?: boolean | number - n_tup_ins?: boolean | number - n_tup_upd?: boolean | number - relname?: boolean | number - schemaname?: boolean | number - seq_scan?: boolean | number - seq_tup_read?: boolean | number +/** aggregated selection of "draft_games" */ +export interface draft_games_aggregateGenqlSelection{ + aggregate?: draft_games_aggregate_fieldsGenqlSelection + nodes?: draft_gamesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface TeamCalendarOutputGenqlSelection{ - url?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface draft_games_aggregate_bool_exp {bool_and?: (draft_games_aggregate_bool_exp_bool_and | null),bool_or?: (draft_games_aggregate_bool_exp_bool_or | null),count?: (draft_games_aggregate_bool_exp_count | null)} -export interface TelemetryStatsGenqlSelection{ - online?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface draft_games_aggregate_bool_exp_bool_and {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} -export interface TestUploadResponseGenqlSelection{ - error?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface draft_games_aggregate_bool_exp_bool_or {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} -export interface TimescaleJobGenqlSelection{ - hypertable_name?: boolean | number - job_id?: boolean | number - job_type?: boolean | number - last_run_status?: boolean | number - next_start?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface draft_games_aggregate_bool_exp_count {arguments?: (draft_games_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Int_comparison_exp} -export interface TimescaleStatsGenqlSelection{ - chunks_count?: boolean | number - hypertables?: HypertableInfoGenqlSelection - jobs?: TimescaleJobGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} -export interface TournamentMatchResetImpactGenqlSelection{ - bracket_id?: boolean | number - depth?: boolean | number - is_source?: boolean | number - match_id?: boolean | number - match_number?: boolean | number - match_status?: boolean | number - path?: boolean | number - round?: boolean | number - stage_type?: boolean | number - will_delete_match?: boolean | number +/** aggregate fields of "draft_games" */ +export interface draft_games_aggregate_fieldsGenqlSelection{ + avg?: draft_games_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_games_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_games_max_fieldsGenqlSelection + min?: draft_games_min_fieldsGenqlSelection + stddev?: draft_games_stddev_fieldsGenqlSelection + stddev_pop?: draft_games_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_games_stddev_samp_fieldsGenqlSelection + sum?: draft_games_sum_fieldsGenqlSelection + var_pop?: draft_games_var_pop_fieldsGenqlSelection + var_samp?: draft_games_var_samp_fieldsGenqlSelection + variance?: draft_games_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface WatchDemoOutputGenqlSelection{ - match_map_id?: boolean | number - session_id?: boolean | number - stream_url?: boolean | number - success?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by aggregate values of table "draft_games" */ +export interface draft_games_aggregate_order_by {avg?: (draft_games_avg_order_by | null),count?: (order_by | null),max?: (draft_games_max_order_by | null),min?: (draft_games_min_order_by | null),stddev?: (draft_games_stddev_order_by | null),stddev_pop?: (draft_games_stddev_pop_order_by | null),stddev_samp?: (draft_games_stddev_samp_order_by | null),sum?: (draft_games_sum_order_by | null),var_pop?: (draft_games_var_pop_order_by | null),var_samp?: (draft_games_var_samp_order_by | null),variance?: (draft_games_variance_order_by | null)} -/** columns and relationships of "_map_pool" */ -export interface _map_poolGenqlSelection{ - map_id?: boolean | number - map_pool_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + +/** input type for inserting array relation for remote table "draft_games" */ +export interface draft_games_arr_rel_insert_input {data: draft_games_insert_input[], +/** upsert condition */ +on_conflict?: (draft_games_on_conflict | null)} -/** aggregated selection of "_map_pool" */ -export interface _map_pool_aggregateGenqlSelection{ - aggregate?: _map_pool_aggregate_fieldsGenqlSelection - nodes?: _map_poolGenqlSelection +/** aggregate avg on columns */ +export interface draft_games_avg_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "_map_pool" */ -export interface _map_pool_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (_map_pool_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: _map_pool_max_fieldsGenqlSelection - min?: _map_pool_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by avg() on columns of table "draft_games" */ +export interface draft_games_avg_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} -/** Boolean expression to filter rows from the table "_map_pool". All fields are combined with a logical 'AND'. */ -export interface _map_pool_bool_exp {_and?: (_map_pool_bool_exp[] | null),_not?: (_map_pool_bool_exp | null),_or?: (_map_pool_bool_exp[] | null),map_id?: (uuid_comparison_exp | null),map_pool_id?: (uuid_comparison_exp | null)} +/** Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. */ +export interface draft_games_bool_exp {_and?: (draft_games_bool_exp[] | null),_not?: (draft_games_bool_exp | null),_or?: (draft_games_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),capacity?: (Int_comparison_exp | null),captain_selection?: (e_draft_game_captain_selection_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_pick_lineup?: (Int_comparison_exp | null),draft_order?: (e_draft_game_draft_order_enum_comparison_exp | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_bool_exp | null),e_draft_game_draft_order?: (e_draft_game_draft_order_bool_exp | null),e_draft_game_mode?: (e_draft_game_mode_bool_exp | null),e_draft_game_status?: (e_draft_game_status_bool_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),expires_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),inner_squad?: (Boolean_comparison_exp | null),invite_code?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),mode?: (e_draft_game_mode_enum_comparison_exp | null),options?: (match_options_bool_exp | null),pattern?: (jsonb_comparison_exp | null),pick_deadline?: (timestamptz_comparison_exp | null),picks?: (draft_game_picks_bool_exp | null),picks_aggregate?: (draft_game_picks_aggregate_bool_exp | null),players?: (draft_game_players_bool_exp | null),players_aggregate?: (draft_game_players_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),require_approval?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),status?: (e_draft_game_status_enum_comparison_exp | null),team_1?: (teams_bool_exp | null),team_1_id?: (uuid_comparison_exp | null),team_2?: (teams_bool_exp | null),team_2_id?: (uuid_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} -/** input type for inserting data into table "_map_pool" */ -export interface _map_pool_insert_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} +/** input type for incrementing numeric columns in table "draft_games" */ +export interface draft_games_inc_input {capacity?: (Scalars['Int'] | null),current_pick_lineup?: (Scalars['Int'] | null),host_steam_id?: (Scalars['bigint'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "draft_games" */ +export interface draft_games_insert_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_obj_rel_insert_input | null),e_draft_game_draft_order?: (e_draft_game_draft_order_obj_rel_insert_input | null),e_draft_game_mode?: (e_draft_game_mode_obj_rel_insert_input | null),e_draft_game_status?: (e_draft_game_status_obj_rel_insert_input | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),expires_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),options?: (match_options_obj_rel_insert_input | null),pick_deadline?: (Scalars['timestamptz'] | null),picks?: (draft_game_picks_arr_rel_insert_input | null),players?: (draft_game_players_arr_rel_insert_input | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1?: (teams_obj_rel_insert_input | null),team_1_id?: (Scalars['uuid'] | null),team_2?: (teams_obj_rel_insert_input | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} /** aggregate max on columns */ -export interface _map_pool_max_fieldsGenqlSelection{ - map_id?: boolean | number +export interface draft_games_max_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + scheduled_at?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "draft_games" */ +export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} + + /** aggregate min on columns */ -export interface _map_pool_min_fieldsGenqlSelection{ - map_id?: boolean | number +export interface draft_games_min_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + scheduled_at?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "_map_pool" */ -export interface _map_pool_mutation_responseGenqlSelection{ +/** order by min() on columns of table "draft_games" */ +export interface draft_games_min_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** response of any mutation on the table "draft_games" */ +export interface draft_games_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: _map_poolGenqlSelection + returning?: draft_gamesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "_map_pool" */ -export interface _map_pool_on_conflict {constraint: _map_pool_constraint,update_columns?: _map_pool_update_column[],where?: (_map_pool_bool_exp | null)} +/** input type for inserting object relation for remote table "draft_games" */ +export interface draft_games_obj_rel_insert_input {data: draft_games_insert_input, +/** upsert condition */ +on_conflict?: (draft_games_on_conflict | null)} -/** Ordering options when selecting data from "_map_pool". */ -export interface _map_pool_order_by {map_id?: (order_by | null),map_pool_id?: (order_by | null)} +/** on_conflict condition type for table "draft_games" */ +export interface draft_games_on_conflict {constraint: draft_games_constraint,update_columns?: draft_games_update_column[],where?: (draft_games_bool_exp | null)} -/** primary key columns input for table: _map_pool */ -export interface _map_pool_pk_columns_input {map_id: Scalars['uuid'],map_pool_id: Scalars['uuid']} +/** Ordering options when selecting data from "draft_games". */ +export interface draft_games_order_by {access?: (order_by | null),capacity?: (order_by | null),captain_selection?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),draft_order?: (order_by | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_order_by | null),e_draft_game_draft_order?: (e_draft_game_draft_order_order_by | null),e_draft_game_mode?: (e_draft_game_mode_order_by | null),e_draft_game_status?: (e_draft_game_status_order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),expires_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),inner_squad?: (order_by | null),invite_code?: (order_by | null),is_organizer?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),mode?: (order_by | null),options?: (match_options_order_by | null),pattern?: (order_by | null),pick_deadline?: (order_by | null),picks_aggregate?: (draft_game_picks_aggregate_order_by | null),players_aggregate?: (draft_game_players_aggregate_order_by | null),regions?: (order_by | null),require_approval?: (order_by | null),scheduled_at?: (order_by | null),status?: (order_by | null),team_1?: (teams_order_by | null),team_1_id?: (order_by | null),team_2?: (teams_order_by | null),team_2_id?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} -/** input type for updating data in table "_map_pool" */ -export interface _map_pool_set_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} +/** primary key columns input for table: draft_games */ +export interface draft_games_pk_columns_input {id: Scalars['uuid']} -/** Streaming cursor of the table "_map_pool" */ -export interface _map_pool_stream_cursor_input { +/** input type for updating data in table "draft_games" */ +export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_games_stddev_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_games" */ +export interface draft_games_stddev_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_games_stddev_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_games" */ +export interface draft_games_stddev_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_games_stddev_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_games" */ +export interface draft_games_stddev_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** Streaming cursor of the table "draft_games" */ +export interface draft_games_stream_cursor_input { /** Stream column input with initial value */ -initial_value: _map_pool_stream_cursor_value_input, +initial_value: draft_games_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface _map_pool_stream_cursor_value_input {map_id?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null)} +export interface draft_games_stream_cursor_value_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} -export interface _map_pool_updates { + +/** aggregate sum on columns */ +export interface draft_games_sum_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_games" */ +export interface draft_games_sum_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + +export interface draft_games_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_games_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (_map_pool_set_input | null), +_set?: (draft_games_set_input | null), /** filter the rows which have to be updated */ -where: _map_pool_bool_exp} +where: draft_games_bool_exp} -/** columns and relationships of "abandoned_matches" */ -export interface abandoned_matchesGenqlSelection{ - abandoned_at?: boolean | number - id?: boolean | number - steam_id?: boolean | number +/** aggregate var_pop on columns */ +export interface draft_games_var_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "abandoned_matches" */ -export interface abandoned_matches_aggregateGenqlSelection{ - aggregate?: abandoned_matches_aggregate_fieldsGenqlSelection - nodes?: abandoned_matchesGenqlSelection +/** order by var_pop() on columns of table "draft_games" */ +export interface draft_games_var_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_games_var_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface abandoned_matches_aggregate_bool_exp {count?: (abandoned_matches_aggregate_bool_exp_count | null)} -export interface abandoned_matches_aggregate_bool_exp_count {arguments?: (abandoned_matches_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (abandoned_matches_bool_exp | null),predicate: Int_comparison_exp} +/** order by var_samp() on columns of table "draft_games" */ +export interface draft_games_var_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} -/** aggregate fields of "abandoned_matches" */ -export interface abandoned_matches_aggregate_fieldsGenqlSelection{ - avg?: abandoned_matches_avg_fieldsGenqlSelection - count?: { __args: {columns?: (abandoned_matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: abandoned_matches_max_fieldsGenqlSelection - min?: abandoned_matches_min_fieldsGenqlSelection - stddev?: abandoned_matches_stddev_fieldsGenqlSelection - stddev_pop?: abandoned_matches_stddev_pop_fieldsGenqlSelection - stddev_samp?: abandoned_matches_stddev_samp_fieldsGenqlSelection - sum?: abandoned_matches_sum_fieldsGenqlSelection - var_pop?: abandoned_matches_var_pop_fieldsGenqlSelection - var_samp?: abandoned_matches_var_samp_fieldsGenqlSelection - variance?: abandoned_matches_variance_fieldsGenqlSelection +/** aggregate variance on columns */ +export interface draft_games_variance_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by aggregate values of table "abandoned_matches" */ -export interface abandoned_matches_aggregate_order_by {avg?: (abandoned_matches_avg_order_by | null),count?: (order_by | null),max?: (abandoned_matches_max_order_by | null),min?: (abandoned_matches_min_order_by | null),stddev?: (abandoned_matches_stddev_order_by | null),stddev_pop?: (abandoned_matches_stddev_pop_order_by | null),stddev_samp?: (abandoned_matches_stddev_samp_order_by | null),sum?: (abandoned_matches_sum_order_by | null),var_pop?: (abandoned_matches_var_pop_order_by | null),var_samp?: (abandoned_matches_var_samp_order_by | null),variance?: (abandoned_matches_variance_order_by | null)} +/** order by variance() on columns of table "draft_games" */ +export interface draft_games_variance_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} -/** input type for inserting array relation for remote table "abandoned_matches" */ -export interface abandoned_matches_arr_rel_insert_input {data: abandoned_matches_insert_input[], -/** upsert condition */ -on_conflict?: (abandoned_matches_on_conflict | null)} +/** columns and relationships of "e_check_in_settings" */ +export interface e_check_in_settingsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate avg on columns */ -export interface abandoned_matches_avg_fieldsGenqlSelection{ - steam_id?: boolean | number +/** aggregated selection of "e_check_in_settings" */ +export interface e_check_in_settings_aggregateGenqlSelection{ + aggregate?: e_check_in_settings_aggregate_fieldsGenqlSelection + nodes?: e_check_in_settingsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by avg() on columns of table "abandoned_matches" */ -export interface abandoned_matches_avg_order_by {steam_id?: (order_by | null)} +/** aggregate fields of "e_check_in_settings" */ +export interface e_check_in_settings_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_check_in_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_check_in_settings_max_fieldsGenqlSelection + min?: e_check_in_settings_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** Boolean expression to filter rows from the table "abandoned_matches". All fields are combined with a logical 'AND'. */ -export interface abandoned_matches_bool_exp {_and?: (abandoned_matches_bool_exp[] | null),_not?: (abandoned_matches_bool_exp | null),_or?: (abandoned_matches_bool_exp[] | null),abandoned_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. */ +export interface e_check_in_settings_bool_exp {_and?: (e_check_in_settings_bool_exp[] | null),_not?: (e_check_in_settings_bool_exp | null),_or?: (e_check_in_settings_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "abandoned_matches" */ -export interface abandoned_matches_inc_input {steam_id?: (Scalars['bigint'] | null)} +/** Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. */ +export interface e_check_in_settings_enum_comparison_exp {_eq?: (e_check_in_settings_enum | null),_in?: (e_check_in_settings_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_check_in_settings_enum | null),_nin?: (e_check_in_settings_enum[] | null)} -/** input type for inserting data into table "abandoned_matches" */ -export interface abandoned_matches_insert_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_check_in_settings" */ +export interface e_check_in_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface abandoned_matches_max_fieldsGenqlSelection{ - abandoned_at?: boolean | number - id?: boolean | number - steam_id?: boolean | number +export interface e_check_in_settings_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "abandoned_matches" */ -export interface abandoned_matches_max_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),steam_id?: (order_by | null)} - - /** aggregate min on columns */ -export interface abandoned_matches_min_fieldsGenqlSelection{ - abandoned_at?: boolean | number - id?: boolean | number - steam_id?: boolean | number +export interface e_check_in_settings_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "abandoned_matches" */ -export interface abandoned_matches_min_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "abandoned_matches" */ -export interface abandoned_matches_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_check_in_settings" */ +export interface e_check_in_settings_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: abandoned_matchesGenqlSelection + returning?: e_check_in_settingsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "abandoned_matches" */ -export interface abandoned_matches_on_conflict {constraint: abandoned_matches_constraint,update_columns?: abandoned_matches_update_column[],where?: (abandoned_matches_bool_exp | null)} +/** on_conflict condition type for table "e_check_in_settings" */ +export interface e_check_in_settings_on_conflict {constraint: e_check_in_settings_constraint,update_columns?: e_check_in_settings_update_column[],where?: (e_check_in_settings_bool_exp | null)} -/** Ordering options when selecting data from "abandoned_matches". */ -export interface abandoned_matches_order_by {abandoned_at?: (order_by | null),id?: (order_by | null),steam_id?: (order_by | null)} +/** Ordering options when selecting data from "e_check_in_settings". */ +export interface e_check_in_settings_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: abandoned_matches */ -export interface abandoned_matches_pk_columns_input {id: Scalars['uuid']} +/** primary key columns input for table: e_check_in_settings */ +export interface e_check_in_settings_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "abandoned_matches" */ -export interface abandoned_matches_set_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} +/** input type for updating data in table "e_check_in_settings" */ +export interface e_check_in_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate stddev on columns */ -export interface abandoned_matches_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Streaming cursor of the table "e_check_in_settings" */ +export interface e_check_in_settings_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_check_in_settings_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** order by stddev() on columns of table "abandoned_matches" */ -export interface abandoned_matches_stddev_order_by {steam_id?: (order_by | null)} +/** Initial value of the column from where the streaming should start */ +export interface e_check_in_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_check_in_settings_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_check_in_settings_set_input | null), +/** filter the rows which have to be updated */ +where: e_check_in_settings_bool_exp} -/** aggregate stddev_pop on columns */ -export interface abandoned_matches_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +/** columns and relationships of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selectionGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "abandoned_matches" */ -export interface abandoned_matches_stddev_pop_order_by {steam_id?: (order_by | null)} +/** aggregated selection of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregateGenqlSelection{ + aggregate?: e_draft_game_captain_selection_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_captain_selectionGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_samp on columns */ -export interface abandoned_matches_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_captain_selection_max_fieldsGenqlSelection + min?: e_draft_game_captain_selection_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "abandoned_matches" */ -export interface abandoned_matches_stddev_samp_order_by {steam_id?: (order_by | null)} +/** Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_captain_selection_bool_exp {_and?: (e_draft_game_captain_selection_bool_exp[] | null),_not?: (e_draft_game_captain_selection_bool_exp | null),_or?: (e_draft_game_captain_selection_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Streaming cursor of the table "abandoned_matches" */ -export interface abandoned_matches_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: abandoned_matches_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_captain_selection_enum_comparison_exp {_eq?: (e_draft_game_captain_selection_enum | null),_in?: (e_draft_game_captain_selection_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_captain_selection_enum | null),_nin?: (e_draft_game_captain_selection_enum[] | null)} -/** Initial value of the column from where the streaming should start */ -export interface abandoned_matches_stream_cursor_value_input {abandoned_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate sum on columns */ -export interface abandoned_matches_sum_fieldsGenqlSelection{ - steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by sum() on columns of table "abandoned_matches" */ -export interface abandoned_matches_sum_order_by {steam_id?: (order_by | null)} - -export interface abandoned_matches_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (abandoned_matches_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (abandoned_matches_set_input | null), -/** filter the rows which have to be updated */ -where: abandoned_matches_bool_exp} +/** aggregate min on columns */ +export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate var_pop on columns */ -export interface abandoned_matches_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +/** response of any mutation on the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_captain_selectionGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "abandoned_matches" */ -export interface abandoned_matches_var_pop_order_by {steam_id?: (order_by | null)} +/** input type for inserting object relation for remote table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_obj_rel_insert_input {data: e_draft_game_captain_selection_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} -/** aggregate var_samp on columns */ -export interface abandoned_matches_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** on_conflict condition type for table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_on_conflict {constraint: e_draft_game_captain_selection_constraint,update_columns?: e_draft_game_captain_selection_update_column[],where?: (e_draft_game_captain_selection_bool_exp | null)} -/** order by var_samp() on columns of table "abandoned_matches" */ -export interface abandoned_matches_var_samp_order_by {steam_id?: (order_by | null)} +/** Ordering options when selecting data from "e_draft_game_captain_selection". */ +export interface e_draft_game_captain_selection_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate variance on columns */ -export interface abandoned_matches_variance_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_draft_game_captain_selection */ +export interface e_draft_game_captain_selection_pk_columns_input {value: Scalars['String']} -/** order by variance() on columns of table "abandoned_matches" */ -export interface abandoned_matches_variance_order_by {steam_id?: (order_by | null)} +/** input type for updating data in table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** columns and relationships of "api_keys" */ -export interface api_keysGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Streaming cursor of the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_captain_selection_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** aggregated selection of "api_keys" */ -export interface api_keys_aggregateGenqlSelection{ - aggregate?: api_keys_aggregate_fieldsGenqlSelection - nodes?: api_keysGenqlSelection +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_captain_selection_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_captain_selection_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_captain_selection_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_captain_selection_bool_exp} + + +/** columns and relationships of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_orderGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "api_keys" */ -export interface api_keys_aggregate_fieldsGenqlSelection{ - avg?: api_keys_avg_fieldsGenqlSelection - count?: { __args: {columns?: (api_keys_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: api_keys_max_fieldsGenqlSelection - min?: api_keys_min_fieldsGenqlSelection - stddev?: api_keys_stddev_fieldsGenqlSelection - stddev_pop?: api_keys_stddev_pop_fieldsGenqlSelection - stddev_samp?: api_keys_stddev_samp_fieldsGenqlSelection - sum?: api_keys_sum_fieldsGenqlSelection - var_pop?: api_keys_var_pop_fieldsGenqlSelection - var_samp?: api_keys_var_samp_fieldsGenqlSelection - variance?: api_keys_variance_fieldsGenqlSelection +/** aggregated selection of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregateGenqlSelection{ + aggregate?: e_draft_game_draft_order_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_draft_orderGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate avg on columns */ -export interface api_keys_avg_fieldsGenqlSelection{ - steam_id?: boolean | number +/** aggregate fields of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_draft_order_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_draft_order_max_fieldsGenqlSelection + min?: e_draft_game_draft_order_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "api_keys". All fields are combined with a logical 'AND'. */ -export interface api_keys_bool_exp {_and?: (api_keys_bool_exp[] | null),_not?: (api_keys_bool_exp | null),_or?: (api_keys_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),label?: (String_comparison_exp | null),last_used_at?: (timestamptz_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "api_keys" */ -export interface api_keys_inc_input {steam_id?: (Scalars['bigint'] | null)} +/** Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_draft_order_enum_comparison_exp {_eq?: (e_draft_game_draft_order_enum | null),_in?: (e_draft_game_draft_order_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_draft_order_enum | null),_nin?: (e_draft_game_draft_order_enum[] | null)} -/** input type for inserting data into table "api_keys" */ -export interface api_keys_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface api_keys_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number +export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface api_keys_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - label?: boolean | number - last_used_at?: boolean | number - steam_id?: boolean | number +export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "api_keys" */ -export interface api_keys_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: api_keysGenqlSelection + returning?: e_draft_game_draft_orderGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "api_keys" */ -export interface api_keys_on_conflict {constraint: api_keys_constraint,update_columns?: api_keys_update_column[],where?: (api_keys_bool_exp | null)} - - -/** Ordering options when selecting data from "api_keys". */ -export interface api_keys_order_by {created_at?: (order_by | null),id?: (order_by | null),label?: (order_by | null),last_used_at?: (order_by | null),steam_id?: (order_by | null)} - - -/** primary key columns input for table: api_keys */ -export interface api_keys_pk_columns_input {id: Scalars['uuid']} +/** input type for inserting object relation for remote table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_obj_rel_insert_input {data: e_draft_game_draft_order_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_draft_order_on_conflict | null)} -/** input type for updating data in table "api_keys" */ -export interface api_keys_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} +/** on_conflict condition type for table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_on_conflict {constraint: e_draft_game_draft_order_constraint,update_columns?: e_draft_game_draft_order_update_column[],where?: (e_draft_game_draft_order_bool_exp | null)} -/** aggregate stddev on columns */ -export interface api_keys_stddev_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Ordering options when selecting data from "e_draft_game_draft_order". */ +export interface e_draft_game_draft_order_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate stddev_pop on columns */ -export interface api_keys_stddev_pop_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_draft_game_draft_order */ +export interface e_draft_game_draft_order_pk_columns_input {value: Scalars['String']} -/** aggregate stddev_samp on columns */ -export interface api_keys_stddev_samp_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for updating data in table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "api_keys" */ -export interface api_keys_stream_cursor_input { +/** Streaming cursor of the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_stream_cursor_input { /** Stream column input with initial value */ -initial_value: api_keys_stream_cursor_value_input, +initial_value: e_draft_game_draft_order_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface api_keys_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),label?: (Scalars['String'] | null),last_used_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null)} - - -/** aggregate sum on columns */ -export interface api_keys_sum_fieldsGenqlSelection{ - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface api_keys_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (api_keys_inc_input | null), +export interface e_draft_game_draft_order_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (api_keys_set_input | null), +_set?: (e_draft_game_draft_order_set_input | null), /** filter the rows which have to be updated */ -where: api_keys_bool_exp} +where: e_draft_game_draft_order_bool_exp} -/** aggregate var_pop on columns */ -export interface api_keys_var_pop_fieldsGenqlSelection{ - steam_id?: boolean | number +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_modeGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface api_keys_var_samp_fieldsGenqlSelection{ - steam_id?: boolean | number +/** aggregated selection of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregateGenqlSelection{ + aggregate?: e_draft_game_mode_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_modeGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate variance on columns */ -export interface api_keys_variance_fieldsGenqlSelection{ - steam_id?: boolean | number +/** aggregate fields of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_mode_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_mode_max_fieldsGenqlSelection + min?: e_draft_game_mode_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface approve_league_season_movements_args {_league_season_id?: (Scalars['uuid'] | null)} - -/** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ -export interface bigint_array_comparison_exp { -/** is the array contained in the given array value */ -_contained_in?: (Scalars['bigint'][] | null), -/** does the array contain the given value */ -_contains?: (Scalars['bigint'][] | null),_eq?: (Scalars['bigint'][] | null),_gt?: (Scalars['bigint'][] | null),_gte?: (Scalars['bigint'][] | null),_in?: (Scalars['bigint'][][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['bigint'][] | null),_lte?: (Scalars['bigint'][] | null),_neq?: (Scalars['bigint'][] | null),_nin?: (Scalars['bigint'][][] | null)} +/** Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_mode_bool_exp {_and?: (e_draft_game_mode_bool_exp[] | null),_not?: (e_draft_game_mode_bool_exp | null),_or?: (e_draft_game_mode_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */ -export interface bigint_comparison_exp {_eq?: (Scalars['bigint'] | null),_gt?: (Scalars['bigint'] | null),_gte?: (Scalars['bigint'] | null),_in?: (Scalars['bigint'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['bigint'] | null),_lte?: (Scalars['bigint'] | null),_neq?: (Scalars['bigint'] | null),_nin?: (Scalars['bigint'][] | null)} +/** Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_mode_enum_comparison_exp {_eq?: (e_draft_game_mode_enum | null),_in?: (e_draft_game_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_mode_enum | null),_nin?: (e_draft_game_mode_enum[] | null)} -/** Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. */ -export interface bytea_comparison_exp {_eq?: (Scalars['bytea'] | null),_gt?: (Scalars['bytea'] | null),_gte?: (Scalars['bytea'] | null),_in?: (Scalars['bytea'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['bytea'] | null),_lte?: (Scalars['bytea'] | null),_neq?: (Scalars['bytea'] | null),_nin?: (Scalars['bytea'][] | null)} +/** input type for inserting data into table "e_draft_game_mode" */ +export interface e_draft_game_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** columns and relationships of "clip_render_jobs" */ -export interface clip_render_jobsGenqlSelection{ - /** An object relationship */ - clip?: match_clipsGenqlSelection - clip_id?: boolean | number - created_at?: boolean | number - error_message?: boolean | number - /** An object relationship */ - game_server_node?: game_server_nodesGenqlSelection - game_server_node_id?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - last_status_at?: boolean | number - /** An object relationship */ - match_map?: match_mapsGenqlSelection - /** An object relationship */ - match_map_demo?: match_map_demosGenqlSelection - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - paused?: boolean | number - progress?: boolean | number - session_token?: boolean | number - sort_index?: boolean | number - spec?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - status?: boolean | number - status_history?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - /** An object relationship */ - user?: playersGenqlSelection - user_steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_draft_game_mode_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "clip_render_jobs" */ -export interface clip_render_jobs_aggregateGenqlSelection{ - aggregate?: clip_render_jobs_aggregate_fieldsGenqlSelection - nodes?: clip_render_jobsGenqlSelection +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface clip_render_jobs_aggregate_bool_exp {bool_and?: (clip_render_jobs_aggregate_bool_exp_bool_and | null),bool_or?: (clip_render_jobs_aggregate_bool_exp_bool_or | null),count?: (clip_render_jobs_aggregate_bool_exp_count | null)} -export interface clip_render_jobs_aggregate_bool_exp_bool_and {arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (clip_render_jobs_bool_exp | null),predicate: Boolean_comparison_exp} +/** response of any mutation on the table "e_draft_game_mode" */ +export interface e_draft_game_mode_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_modeGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -export interface clip_render_jobs_aggregate_bool_exp_bool_or {arguments: clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (clip_render_jobs_bool_exp | null),predicate: Boolean_comparison_exp} -export interface clip_render_jobs_aggregate_bool_exp_count {arguments?: (clip_render_jobs_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (clip_render_jobs_bool_exp | null),predicate: Int_comparison_exp} +/** input type for inserting object relation for remote table "e_draft_game_mode" */ +export interface e_draft_game_mode_obj_rel_insert_input {data: e_draft_game_mode_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_mode_on_conflict | null)} -/** aggregate fields of "clip_render_jobs" */ -export interface clip_render_jobs_aggregate_fieldsGenqlSelection{ - avg?: clip_render_jobs_avg_fieldsGenqlSelection - count?: { __args: {columns?: (clip_render_jobs_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: clip_render_jobs_max_fieldsGenqlSelection - min?: clip_render_jobs_min_fieldsGenqlSelection - stddev?: clip_render_jobs_stddev_fieldsGenqlSelection - stddev_pop?: clip_render_jobs_stddev_pop_fieldsGenqlSelection - stddev_samp?: clip_render_jobs_stddev_samp_fieldsGenqlSelection - sum?: clip_render_jobs_sum_fieldsGenqlSelection - var_pop?: clip_render_jobs_var_pop_fieldsGenqlSelection - var_samp?: clip_render_jobs_var_samp_fieldsGenqlSelection - variance?: clip_render_jobs_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} +/** on_conflict condition type for table "e_draft_game_mode" */ +export interface e_draft_game_mode_on_conflict {constraint: e_draft_game_mode_constraint,update_columns?: e_draft_game_mode_update_column[],where?: (e_draft_game_mode_bool_exp | null)} -/** order by aggregate values of table "clip_render_jobs" */ -export interface clip_render_jobs_aggregate_order_by {avg?: (clip_render_jobs_avg_order_by | null),count?: (order_by | null),max?: (clip_render_jobs_max_order_by | null),min?: (clip_render_jobs_min_order_by | null),stddev?: (clip_render_jobs_stddev_order_by | null),stddev_pop?: (clip_render_jobs_stddev_pop_order_by | null),stddev_samp?: (clip_render_jobs_stddev_samp_order_by | null),sum?: (clip_render_jobs_sum_order_by | null),var_pop?: (clip_render_jobs_var_pop_order_by | null),var_samp?: (clip_render_jobs_var_samp_order_by | null),variance?: (clip_render_jobs_variance_order_by | null)} +/** Ordering options when selecting data from "e_draft_game_mode". */ +export interface e_draft_game_mode_order_by {description?: (order_by | null),value?: (order_by | null)} -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface clip_render_jobs_append_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} +/** primary key columns input for table: e_draft_game_mode */ +export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} -/** input type for inserting array relation for remote table "clip_render_jobs" */ -export interface clip_render_jobs_arr_rel_insert_input {data: clip_render_jobs_insert_input[], -/** upsert condition */ -on_conflict?: (clip_render_jobs_on_conflict | null)} +/** input type for updating data in table "e_draft_game_mode" */ +export interface e_draft_game_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate avg on columns */ -export interface clip_render_jobs_avg_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Streaming cursor of the table "e_draft_game_mode" */ +export interface e_draft_game_mode_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_mode_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** order by avg() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_avg_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_draft_game_mode_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_mode_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_mode_bool_exp} -/** Boolean expression to filter rows from the table "clip_render_jobs". All fields are combined with a logical 'AND'. */ -export interface clip_render_jobs_bool_exp {_and?: (clip_render_jobs_bool_exp[] | null),_not?: (clip_render_jobs_bool_exp | null),_or?: (clip_render_jobs_bool_exp[] | null),clip?: (match_clips_bool_exp | null),clip_id?: (uuid_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),error_message?: (String_comparison_exp | null),game_server_node?: (game_server_nodes_bool_exp | null),game_server_node_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),k8s_job_name?: (String_comparison_exp | null),last_status_at?: (timestamptz_comparison_exp | null),match_map?: (match_maps_bool_exp | null),match_map_demo?: (match_map_demos_bool_exp | null),match_map_demo_id?: (uuid_comparison_exp | null),match_map_id?: (uuid_comparison_exp | null),paused?: (Boolean_comparison_exp | null),progress?: (numeric_comparison_exp | null),session_token?: (String_comparison_exp | null),sort_index?: (Int_comparison_exp | null),spec?: (jsonb_comparison_exp | null),status?: (String_comparison_exp | null),status_history?: (jsonb_comparison_exp | null),user?: (players_bool_exp | null),user_steam_id?: (bigint_comparison_exp | null)} +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface clip_render_jobs_delete_at_path_input {spec?: (Scalars['String'][] | null),status_history?: (Scalars['String'][] | null)} +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_player_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_player_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ -export interface clip_render_jobs_delete_elem_input {spec?: (Scalars['Int'] | null),status_history?: (Scalars['Int'] | null)} +/** aggregate fields of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_player_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_player_status_max_fieldsGenqlSelection + min?: e_draft_game_player_status_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface clip_render_jobs_delete_key_input {spec?: (Scalars['String'] | null),status_history?: (Scalars['String'] | null)} +/** Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_player_status_bool_exp {_and?: (e_draft_game_player_status_bool_exp[] | null),_not?: (e_draft_game_player_status_bool_exp | null),_or?: (e_draft_game_player_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "clip_render_jobs" */ -export interface clip_render_jobs_inc_input {progress?: (Scalars['numeric'] | null),sort_index?: (Scalars['Int'] | null),user_steam_id?: (Scalars['bigint'] | null)} +/** Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_player_status_enum_comparison_exp {_eq?: (e_draft_game_player_status_enum | null),_in?: (e_draft_game_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_player_status_enum | null),_nin?: (e_draft_game_player_status_enum[] | null)} -/** input type for inserting data into table "clip_render_jobs" */ -export interface clip_render_jobs_insert_input {clip?: (match_clips_obj_rel_insert_input | null),clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_demo?: (match_map_demos_obj_rel_insert_input | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user?: (players_obj_rel_insert_input | null),user_steam_id?: (Scalars['bigint'] | null)} + +/** input type for inserting data into table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface clip_render_jobs_max_fieldsGenqlSelection{ - clip_id?: boolean | number - created_at?: boolean | number - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - last_status_at?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - progress?: boolean | number - session_token?: boolean | number - sort_index?: boolean | number - status?: boolean | number - user_steam_id?: boolean | number +export interface e_draft_game_player_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_max_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} - - /** aggregate min on columns */ -export interface clip_render_jobs_min_fieldsGenqlSelection{ - clip_id?: boolean | number - created_at?: boolean | number - error_message?: boolean | number - game_server_node_id?: boolean | number - id?: boolean | number - k8s_job_name?: boolean | number - last_status_at?: boolean | number - match_map_demo_id?: boolean | number - match_map_id?: boolean | number - progress?: boolean | number - session_token?: boolean | number - sort_index?: boolean | number - status?: boolean | number - user_steam_id?: boolean | number +export interface e_draft_game_player_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_min_order_by {clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),status?: (order_by | null),user_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "clip_render_jobs" */ -export interface clip_render_jobs_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: clip_render_jobsGenqlSelection + returning?: e_draft_game_player_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "clip_render_jobs" */ -export interface clip_render_jobs_on_conflict {constraint: clip_render_jobs_constraint,update_columns?: clip_render_jobs_update_column[],where?: (clip_render_jobs_bool_exp | null)} +/** input type for inserting object relation for remote table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_obj_rel_insert_input {data: e_draft_game_player_status_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_player_status_on_conflict | null)} -/** Ordering options when selecting data from "clip_render_jobs". */ -export interface clip_render_jobs_order_by {clip?: (match_clips_order_by | null),clip_id?: (order_by | null),created_at?: (order_by | null),error_message?: (order_by | null),game_server_node?: (game_server_nodes_order_by | null),game_server_node_id?: (order_by | null),id?: (order_by | null),k8s_job_name?: (order_by | null),last_status_at?: (order_by | null),match_map?: (match_maps_order_by | null),match_map_demo?: (match_map_demos_order_by | null),match_map_demo_id?: (order_by | null),match_map_id?: (order_by | null),paused?: (order_by | null),progress?: (order_by | null),session_token?: (order_by | null),sort_index?: (order_by | null),spec?: (order_by | null),status?: (order_by | null),status_history?: (order_by | null),user?: (players_order_by | null),user_steam_id?: (order_by | null)} +/** on_conflict condition type for table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_on_conflict {constraint: e_draft_game_player_status_constraint,update_columns?: e_draft_game_player_status_update_column[],where?: (e_draft_game_player_status_bool_exp | null)} -/** primary key columns input for table: clip_render_jobs */ -export interface clip_render_jobs_pk_columns_input {id: Scalars['uuid']} +/** Ordering options when selecting data from "e_draft_game_player_status". */ +export interface e_draft_game_player_status_order_by {description?: (order_by | null),value?: (order_by | null)} -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface clip_render_jobs_prepend_input {spec?: (Scalars['jsonb'] | null),status_history?: (Scalars['jsonb'] | null)} +/** primary key columns input for table: e_draft_game_player_status */ +export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "clip_render_jobs" */ -export interface clip_render_jobs_set_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} +/** input type for updating data in table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate stddev on columns */ -export interface clip_render_jobs_stddev_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Streaming cursor of the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_player_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** order by stddev() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_stddev_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} +export interface e_draft_game_player_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_player_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_player_status_bool_exp} -/** aggregate stddev_pop on columns */ -export interface clip_render_jobs_stddev_pop_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_stddev_pop_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} +/** aggregated selection of "e_draft_game_status" */ +export interface e_draft_game_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_samp on columns */ -export interface clip_render_jobs_stddev_samp_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +/** aggregate fields of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_status_max_fieldsGenqlSelection + min?: e_draft_game_status_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_stddev_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} +/** Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_status_bool_exp {_and?: (e_draft_game_status_bool_exp[] | null),_not?: (e_draft_game_status_bool_exp | null),_or?: (e_draft_game_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Streaming cursor of the table "clip_render_jobs" */ -export interface clip_render_jobs_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: clip_render_jobs_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_status_enum_comparison_exp {_eq?: (e_draft_game_status_enum | null),_in?: (e_draft_game_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_status_enum | null),_nin?: (e_draft_game_status_enum[] | null)} -/** Initial value of the column from where the streaming should start */ -export interface clip_render_jobs_stream_cursor_value_input {clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user_steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_draft_game_status" */ +export interface e_draft_game_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate sum on columns */ -export interface clip_render_jobs_sum_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_draft_game_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by sum() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_sum_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} - -export interface clip_render_jobs_updates { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (clip_render_jobs_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (clip_render_jobs_delete_at_path_input | null), -/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ -_delete_elem?: (clip_render_jobs_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (clip_render_jobs_delete_key_input | null), -/** increments the numeric columns with given value of the filtered values */ -_inc?: (clip_render_jobs_inc_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (clip_render_jobs_prepend_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (clip_render_jobs_set_input | null), -/** filter the rows which have to be updated */ -where: clip_render_jobs_bool_exp} +/** aggregate min on columns */ +export interface e_draft_game_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate var_pop on columns */ -export interface clip_render_jobs_var_pop_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number +/** response of any mutation on the table "e_draft_game_status" */ +export interface e_draft_game_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_var_pop_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} +/** input type for inserting object relation for remote table "e_draft_game_status" */ +export interface e_draft_game_status_obj_rel_insert_input {data: e_draft_game_status_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_status_on_conflict | null)} -/** aggregate var_samp on columns */ -export interface clip_render_jobs_var_samp_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** on_conflict condition type for table "e_draft_game_status" */ +export interface e_draft_game_status_on_conflict {constraint: e_draft_game_status_constraint,update_columns?: e_draft_game_status_update_column[],where?: (e_draft_game_status_bool_exp | null)} -/** order by var_samp() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_var_samp_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} +/** Ordering options when selecting data from "e_draft_game_status". */ +export interface e_draft_game_status_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate variance on columns */ -export interface clip_render_jobs_variance_fieldsGenqlSelection{ - progress?: boolean | number - sort_index?: boolean | number - user_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_draft_game_status */ +export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} -/** order by variance() on columns of table "clip_render_jobs" */ -export interface clip_render_jobs_variance_order_by {progress?: (order_by | null),sort_index?: (order_by | null),user_steam_id?: (order_by | null)} +/** input type for updating data in table "e_draft_game_status" */ +export interface e_draft_game_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface clone_league_season_args {_league_season_id?: (Scalars['uuid'] | null)} +/** Streaming cursor of the table "e_draft_game_status" */ +export interface e_draft_game_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** columns and relationships of "db_backups" */ -export interface db_backupsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregated selection of "db_backups" */ -export interface db_backups_aggregateGenqlSelection{ - aggregate?: db_backups_aggregate_fieldsGenqlSelection - nodes?: db_backupsGenqlSelection +export interface e_draft_game_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_status_bool_exp} + + +/** columns and relationships of "e_event_media_access" */ +export interface e_event_media_accessGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "db_backups" */ -export interface db_backups_aggregate_fieldsGenqlSelection{ - avg?: db_backups_avg_fieldsGenqlSelection - count?: { __args: {columns?: (db_backups_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: db_backups_max_fieldsGenqlSelection - min?: db_backups_min_fieldsGenqlSelection - stddev?: db_backups_stddev_fieldsGenqlSelection - stddev_pop?: db_backups_stddev_pop_fieldsGenqlSelection - stddev_samp?: db_backups_stddev_samp_fieldsGenqlSelection - sum?: db_backups_sum_fieldsGenqlSelection - var_pop?: db_backups_var_pop_fieldsGenqlSelection - var_samp?: db_backups_var_samp_fieldsGenqlSelection - variance?: db_backups_variance_fieldsGenqlSelection +/** aggregated selection of "e_event_media_access" */ +export interface e_event_media_access_aggregateGenqlSelection{ + aggregate?: e_event_media_access_aggregate_fieldsGenqlSelection + nodes?: e_event_media_accessGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate avg on columns */ -export interface db_backups_avg_fieldsGenqlSelection{ - size?: boolean | number +/** aggregate fields of "e_event_media_access" */ +export interface e_event_media_access_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_event_media_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_event_media_access_max_fieldsGenqlSelection + min?: e_event_media_access_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "db_backups". All fields are combined with a logical 'AND'. */ -export interface db_backups_bool_exp {_and?: (db_backups_bool_exp[] | null),_not?: (db_backups_bool_exp | null),_or?: (db_backups_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),name?: (String_comparison_exp | null),size?: (Int_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_event_media_access". All fields are combined with a logical 'AND'. */ +export interface e_event_media_access_bool_exp {_and?: (e_event_media_access_bool_exp[] | null),_not?: (e_event_media_access_bool_exp | null),_or?: (e_event_media_access_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "db_backups" */ -export interface db_backups_inc_input {size?: (Scalars['Int'] | null)} +/** Boolean expression to compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. */ +export interface e_event_media_access_enum_comparison_exp {_eq?: (e_event_media_access_enum | null),_in?: (e_event_media_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_media_access_enum | null),_nin?: (e_event_media_access_enum[] | null)} -/** input type for inserting data into table "db_backups" */ -export interface db_backups_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} +/** input type for inserting data into table "e_event_media_access" */ +export interface e_event_media_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface db_backups_max_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - size?: boolean | number +export interface e_event_media_access_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface db_backups_min_fieldsGenqlSelection{ - created_at?: boolean | number - id?: boolean | number - name?: boolean | number - size?: boolean | number +export interface e_event_media_access_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "db_backups" */ -export interface db_backups_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_event_media_access" */ +export interface e_event_media_access_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: db_backupsGenqlSelection + returning?: e_event_media_accessGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "db_backups" */ -export interface db_backups_on_conflict {constraint: db_backups_constraint,update_columns?: db_backups_update_column[],where?: (db_backups_bool_exp | null)} - - -/** Ordering options when selecting data from "db_backups". */ -export interface db_backups_order_by {created_at?: (order_by | null),id?: (order_by | null),name?: (order_by | null),size?: (order_by | null)} - - -/** primary key columns input for table: db_backups */ -export interface db_backups_pk_columns_input {id: Scalars['uuid']} - - -/** input type for updating data in table "db_backups" */ -export interface db_backups_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} +/** on_conflict condition type for table "e_event_media_access" */ +export interface e_event_media_access_on_conflict {constraint: e_event_media_access_constraint,update_columns?: e_event_media_access_update_column[],where?: (e_event_media_access_bool_exp | null)} -/** aggregate stddev on columns */ -export interface db_backups_stddev_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Ordering options when selecting data from "e_event_media_access". */ +export interface e_event_media_access_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate stddev_pop on columns */ -export interface db_backups_stddev_pop_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_event_media_access */ +export interface e_event_media_access_pk_columns_input {value: Scalars['String']} -/** aggregate stddev_samp on columns */ -export interface db_backups_stddev_samp_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for updating data in table "e_event_media_access" */ +export interface e_event_media_access_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "db_backups" */ -export interface db_backups_stream_cursor_input { +/** Streaming cursor of the table "e_event_media_access" */ +export interface e_event_media_access_stream_cursor_input { /** Stream column input with initial value */ -initial_value: db_backups_stream_cursor_value_input, +initial_value: e_event_media_access_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface db_backups_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),size?: (Scalars['Int'] | null)} - - -/** aggregate sum on columns */ -export interface db_backups_sum_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface e_event_media_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface db_backups_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (db_backups_inc_input | null), +export interface e_event_media_access_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (db_backups_set_input | null), +_set?: (e_event_media_access_set_input | null), /** filter the rows which have to be updated */ -where: db_backups_bool_exp} +where: e_event_media_access_bool_exp} -/** aggregate var_pop on columns */ -export interface db_backups_var_pop_fieldsGenqlSelection{ - size?: boolean | number +/** columns and relationships of "e_event_visibility" */ +export interface e_event_visibilityGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface db_backups_var_samp_fieldsGenqlSelection{ - size?: boolean | number +/** aggregated selection of "e_event_visibility" */ +export interface e_event_visibility_aggregateGenqlSelection{ + aggregate?: e_event_visibility_aggregate_fieldsGenqlSelection + nodes?: e_event_visibilityGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate variance on columns */ -export interface db_backups_variance_fieldsGenqlSelection{ - size?: boolean | number +/** aggregate fields of "e_event_visibility" */ +export interface e_event_visibility_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_event_visibility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_event_visibility_max_fieldsGenqlSelection + min?: e_event_visibility_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** columns and relationships of "draft_game_picks" */ -export interface draft_game_picksGenqlSelection{ - auto_picked?: boolean | number - /** An object relationship */ - captain?: playersGenqlSelection - captain_steam_id?: boolean | number - created_at?: boolean | number - /** An object relationship */ - draft_game?: draft_gamesGenqlSelection - draft_game_id?: boolean | number - id?: boolean | number - is_organizer?: boolean | number - lineup?: boolean | number - /** An object relationship */ - picked?: playersGenqlSelection - picked_steam_id?: boolean | number +/** Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. */ +export interface e_event_visibility_bool_exp {_and?: (e_event_visibility_bool_exp[] | null),_not?: (e_event_visibility_bool_exp | null),_or?: (e_event_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. */ +export interface e_event_visibility_enum_comparison_exp {_eq?: (e_event_visibility_enum | null),_in?: (e_event_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_visibility_enum | null),_nin?: (e_event_visibility_enum[] | null)} + + +/** input type for inserting data into table "e_event_visibility" */ +export interface e_event_visibility_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_event_visibility_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "draft_game_picks" */ -export interface draft_game_picks_aggregateGenqlSelection{ - aggregate?: draft_game_picks_aggregate_fieldsGenqlSelection - nodes?: draft_game_picksGenqlSelection +/** aggregate min on columns */ +export interface e_event_visibility_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface draft_game_picks_aggregate_bool_exp {bool_and?: (draft_game_picks_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_picks_aggregate_bool_exp_bool_or | null),count?: (draft_game_picks_aggregate_bool_exp_count | null)} - -export interface draft_game_picks_aggregate_bool_exp_bool_and {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface draft_game_picks_aggregate_bool_exp_bool_or {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface draft_game_picks_aggregate_bool_exp_count {arguments?: (draft_game_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Int_comparison_exp} - -/** aggregate fields of "draft_game_picks" */ -export interface draft_game_picks_aggregate_fieldsGenqlSelection{ - avg?: draft_game_picks_avg_fieldsGenqlSelection - count?: { __args: {columns?: (draft_game_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: draft_game_picks_max_fieldsGenqlSelection - min?: draft_game_picks_min_fieldsGenqlSelection - stddev?: draft_game_picks_stddev_fieldsGenqlSelection - stddev_pop?: draft_game_picks_stddev_pop_fieldsGenqlSelection - stddev_samp?: draft_game_picks_stddev_samp_fieldsGenqlSelection - sum?: draft_game_picks_sum_fieldsGenqlSelection - var_pop?: draft_game_picks_var_pop_fieldsGenqlSelection - var_samp?: draft_game_picks_var_samp_fieldsGenqlSelection - variance?: draft_game_picks_variance_fieldsGenqlSelection +/** response of any mutation on the table "e_event_visibility" */ +export interface e_event_visibility_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_event_visibilityGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by aggregate values of table "draft_game_picks" */ -export interface draft_game_picks_aggregate_order_by {avg?: (draft_game_picks_avg_order_by | null),count?: (order_by | null),max?: (draft_game_picks_max_order_by | null),min?: (draft_game_picks_min_order_by | null),stddev?: (draft_game_picks_stddev_order_by | null),stddev_pop?: (draft_game_picks_stddev_pop_order_by | null),stddev_samp?: (draft_game_picks_stddev_samp_order_by | null),sum?: (draft_game_picks_sum_order_by | null),var_pop?: (draft_game_picks_var_pop_order_by | null),var_samp?: (draft_game_picks_var_samp_order_by | null),variance?: (draft_game_picks_variance_order_by | null)} - +/** on_conflict condition type for table "e_event_visibility" */ +export interface e_event_visibility_on_conflict {constraint: e_event_visibility_constraint,update_columns?: e_event_visibility_update_column[],where?: (e_event_visibility_bool_exp | null)} -/** input type for inserting array relation for remote table "draft_game_picks" */ -export interface draft_game_picks_arr_rel_insert_input {data: draft_game_picks_insert_input[], -/** upsert condition */ -on_conflict?: (draft_game_picks_on_conflict | null)} +/** Ordering options when selecting data from "e_event_visibility". */ +export interface e_event_visibility_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate avg on columns */ -export interface draft_game_picks_avg_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_event_visibility */ +export interface e_event_visibility_pk_columns_input {value: Scalars['String']} -/** order by avg() on columns of table "draft_game_picks" */ -export interface draft_game_picks_avg_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** input type for updating data in table "e_event_visibility" */ +export interface e_event_visibility_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. */ -export interface draft_game_picks_bool_exp {_and?: (draft_game_picks_bool_exp[] | null),_not?: (draft_game_picks_bool_exp | null),_or?: (draft_game_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),lineup?: (Int_comparison_exp | null),picked?: (players_bool_exp | null),picked_steam_id?: (bigint_comparison_exp | null)} +/** Streaming cursor of the table "e_event_visibility" */ +export interface e_event_visibility_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_event_visibility_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** input type for incrementing numeric columns in table "draft_game_picks" */ -export interface draft_game_picks_inc_input {captain_steam_id?: (Scalars['bigint'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} +/** Initial value of the column from where the streaming should start */ +export interface e_event_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** input type for inserting data into table "draft_game_picks" */ -export interface draft_game_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked?: (players_obj_rel_insert_input | null),picked_steam_id?: (Scalars['bigint'] | null)} +export interface e_event_visibility_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_event_visibility_set_input | null), +/** filter the rows which have to be updated */ +where: e_event_visibility_bool_exp} -/** aggregate max on columns */ -export interface draft_game_picks_max_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - created_at?: boolean | number - draft_game_id?: boolean | number - id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** columns and relationships of "e_friend_status" */ +export interface e_friend_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "draft_game_picks" */ -export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface draft_game_picks_min_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - created_at?: boolean | number - draft_game_id?: boolean | number - id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** aggregated selection of "e_friend_status" */ +export interface e_friend_status_aggregateGenqlSelection{ + aggregate?: e_friend_status_aggregate_fieldsGenqlSelection + nodes?: e_friend_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "draft_game_picks" */ -export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "draft_game_picks" */ -export interface draft_game_picks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: draft_game_picksGenqlSelection +/** aggregate fields of "e_friend_status" */ +export interface e_friend_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_friend_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_friend_status_max_fieldsGenqlSelection + min?: e_friend_status_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "draft_game_picks" */ -export interface draft_game_picks_on_conflict {constraint: draft_game_picks_constraint,update_columns?: draft_game_picks_update_column[],where?: (draft_game_picks_bool_exp | null)} - - -/** Ordering options when selecting data from "draft_game_picks". */ -export interface draft_game_picks_order_by {auto_picked?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),lineup?: (order_by | null),picked?: (players_order_by | null),picked_steam_id?: (order_by | null)} +/** Boolean expression to filter rows from the table "e_friend_status". All fields are combined with a logical 'AND'. */ +export interface e_friend_status_bool_exp {_and?: (e_friend_status_bool_exp[] | null),_not?: (e_friend_status_bool_exp | null),_or?: (e_friend_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** primary key columns input for table: draft_game_picks */ -export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} +/** Boolean expression to compare columns of type "e_friend_status_enum". All fields are combined with logical 'AND'. */ +export interface e_friend_status_enum_comparison_exp {_eq?: (e_friend_status_enum | null),_in?: (e_friend_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_friend_status_enum | null),_nin?: (e_friend_status_enum[] | null)} -/** input type for updating data in table "draft_game_picks" */ -export interface draft_game_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_friend_status" */ +export interface e_friend_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate stddev on columns */ -export interface draft_game_picks_stddev_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_friend_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** aggregate min on columns */ +export interface e_friend_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_pop on columns */ -export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** response of any mutation on the table "e_friend_status" */ +export interface e_friend_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_friend_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** input type for inserting object relation for remote table "e_friend_status" */ +export interface e_friend_status_obj_rel_insert_input {data: e_friend_status_insert_input, +/** upsert condition */ +on_conflict?: (e_friend_status_on_conflict | null)} -/** aggregate stddev_samp on columns */ -export interface draft_game_picks_stddev_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** on_conflict condition type for table "e_friend_status" */ +export interface e_friend_status_on_conflict {constraint: e_friend_status_constraint,update_columns?: e_friend_status_update_column[],where?: (e_friend_status_bool_exp | null)} -/** order by stddev_samp() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** Ordering options when selecting data from "e_friend_status". */ +export interface e_friend_status_order_by {description?: (order_by | null),value?: (order_by | null)} -/** Streaming cursor of the table "draft_game_picks" */ -export interface draft_game_picks_stream_cursor_input { +/** primary key columns input for table: e_friend_status */ +export interface e_friend_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_friend_status" */ +export interface e_friend_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_friend_status" */ +export interface e_friend_status_stream_cursor_input { /** Stream column input with initial value */ -initial_value: draft_game_picks_stream_cursor_value_input, +initial_value: e_friend_status_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface draft_game_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} +export interface e_friend_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_friend_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_friend_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_friend_status_bool_exp} -/** aggregate sum on columns */ -export interface draft_game_picks_sum_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number + +/** columns and relationships of "e_game_cfg_types" */ +export interface e_game_cfg_typesGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by sum() on columns of table "draft_game_picks" */ -export interface draft_game_picks_sum_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - -export interface draft_game_picks_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (draft_game_picks_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (draft_game_picks_set_input | null), -/** filter the rows which have to be updated */ -where: draft_game_picks_bool_exp} +/** aggregated selection of "e_game_cfg_types" */ +export interface e_game_cfg_types_aggregateGenqlSelection{ + aggregate?: e_game_cfg_types_aggregate_fieldsGenqlSelection + nodes?: e_game_cfg_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate var_pop on columns */ -export interface draft_game_picks_var_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** aggregate fields of "e_game_cfg_types" */ +export interface e_game_cfg_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_game_cfg_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_game_cfg_types_max_fieldsGenqlSelection + min?: e_game_cfg_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "draft_game_picks" */ -export interface draft_game_picks_var_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** Boolean expression to filter rows from the table "e_game_cfg_types". All fields are combined with a logical 'AND'. */ +export interface e_game_cfg_types_bool_exp {_and?: (e_game_cfg_types_bool_exp[] | null),_not?: (e_game_cfg_types_bool_exp | null),_or?: (e_game_cfg_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** aggregate var_samp on columns */ -export interface draft_game_picks_var_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Boolean expression to compare columns of type "e_game_cfg_types_enum". All fields are combined with logical 'AND'. */ +export interface e_game_cfg_types_enum_comparison_exp {_eq?: (e_game_cfg_types_enum | null),_in?: (e_game_cfg_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_cfg_types_enum | null),_nin?: (e_game_cfg_types_enum[] | null)} -/** order by var_samp() on columns of table "draft_game_picks" */ -export interface draft_game_picks_var_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** input type for inserting data into table "e_game_cfg_types" */ +export interface e_game_cfg_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate variance on columns */ -export interface draft_game_picks_variance_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_game_cfg_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "draft_game_picks" */ -export interface draft_game_picks_variance_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** columns and relationships of "draft_game_players" */ -export interface draft_game_playersGenqlSelection{ - /** An object relationship */ - draft_game?: draft_gamesGenqlSelection - draft_game_id?: boolean | number - /** An object relationship */ - e_draft_game_player_status?: e_draft_game_player_statusGenqlSelection - elo_snapshot?: boolean | number - is_captain?: boolean | number - is_organizer?: boolean | number - joined_at?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - status?: boolean | number - steam_id?: boolean | number +/** aggregate min on columns */ +export interface e_game_cfg_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "draft_game_players" */ -export interface draft_game_players_aggregateGenqlSelection{ - aggregate?: draft_game_players_aggregate_fieldsGenqlSelection - nodes?: draft_game_playersGenqlSelection +/** response of any mutation on the table "e_game_cfg_types" */ +export interface e_game_cfg_types_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_game_cfg_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -export interface draft_game_players_aggregate_bool_exp {bool_and?: (draft_game_players_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_players_aggregate_bool_exp_bool_or | null),count?: (draft_game_players_aggregate_bool_exp_count | null)} -export interface draft_game_players_aggregate_bool_exp_bool_and {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} +/** on_conflict condition type for table "e_game_cfg_types" */ +export interface e_game_cfg_types_on_conflict {constraint: e_game_cfg_types_constraint,update_columns?: e_game_cfg_types_update_column[],where?: (e_game_cfg_types_bool_exp | null)} -export interface draft_game_players_aggregate_bool_exp_bool_or {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} -export interface draft_game_players_aggregate_bool_exp_count {arguments?: (draft_game_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Int_comparison_exp} +/** Ordering options when selecting data from "e_game_cfg_types". */ +export interface e_game_cfg_types_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate fields of "draft_game_players" */ -export interface draft_game_players_aggregate_fieldsGenqlSelection{ - avg?: draft_game_players_avg_fieldsGenqlSelection - count?: { __args: {columns?: (draft_game_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: draft_game_players_max_fieldsGenqlSelection - min?: draft_game_players_min_fieldsGenqlSelection - stddev?: draft_game_players_stddev_fieldsGenqlSelection - stddev_pop?: draft_game_players_stddev_pop_fieldsGenqlSelection - stddev_samp?: draft_game_players_stddev_samp_fieldsGenqlSelection - sum?: draft_game_players_sum_fieldsGenqlSelection - var_pop?: draft_game_players_var_pop_fieldsGenqlSelection - var_samp?: draft_game_players_var_samp_fieldsGenqlSelection - variance?: draft_game_players_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_game_cfg_types */ +export interface e_game_cfg_types_pk_columns_input {value: Scalars['String']} -/** order by aggregate values of table "draft_game_players" */ -export interface draft_game_players_aggregate_order_by {avg?: (draft_game_players_avg_order_by | null),count?: (order_by | null),max?: (draft_game_players_max_order_by | null),min?: (draft_game_players_min_order_by | null),stddev?: (draft_game_players_stddev_order_by | null),stddev_pop?: (draft_game_players_stddev_pop_order_by | null),stddev_samp?: (draft_game_players_stddev_samp_order_by | null),sum?: (draft_game_players_sum_order_by | null),var_pop?: (draft_game_players_var_pop_order_by | null),var_samp?: (draft_game_players_var_samp_order_by | null),variance?: (draft_game_players_variance_order_by | null)} +/** input type for updating data in table "e_game_cfg_types" */ +export interface e_game_cfg_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** input type for inserting array relation for remote table "draft_game_players" */ -export interface draft_game_players_arr_rel_insert_input {data: draft_game_players_insert_input[], -/** upsert condition */ -on_conflict?: (draft_game_players_on_conflict | null)} +/** Streaming cursor of the table "e_game_cfg_types" */ +export interface e_game_cfg_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_game_cfg_types_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** aggregate avg on columns */ -export interface draft_game_players_avg_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +/** Initial value of the column from where the streaming should start */ +export interface e_game_cfg_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_game_cfg_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_game_cfg_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_game_cfg_types_bool_exp} + + +/** columns and relationships of "e_game_server_node_statuses" */ +export interface e_game_server_node_statusesGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by avg() on columns of table "draft_game_players" */ -export interface draft_game_players_avg_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} +/** aggregated selection of "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_aggregateGenqlSelection{ + aggregate?: e_game_server_node_statuses_aggregate_fieldsGenqlSelection + nodes?: e_game_server_node_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ -export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} +/** aggregate fields of "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_game_server_node_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_game_server_node_statuses_max_fieldsGenqlSelection + min?: e_game_server_node_statuses_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for incrementing numeric columns in table "draft_game_players" */ -export interface draft_game_players_inc_input {elo_snapshot?: (Scalars['Int'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} +/** Boolean expression to filter rows from the table "e_game_server_node_statuses". All fields are combined with a logical 'AND'. */ +export interface e_game_server_node_statuses_bool_exp {_and?: (e_game_server_node_statuses_bool_exp[] | null),_not?: (e_game_server_node_statuses_bool_exp | null),_or?: (e_game_server_node_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for inserting data into table "draft_game_players" */ -export interface draft_game_players_insert_input {draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),e_draft_game_player_status?: (e_draft_game_player_status_obj_rel_insert_input | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} +/** Boolean expression to compare columns of type "e_game_server_node_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_game_server_node_statuses_enum_comparison_exp {_eq?: (e_game_server_node_statuses_enum | null),_in?: (e_game_server_node_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_server_node_statuses_enum | null),_nin?: (e_game_server_node_statuses_enum[] | null)} + + +/** input type for inserting data into table "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface draft_game_players_max_fieldsGenqlSelection{ - draft_game_id?: boolean | number - elo_snapshot?: boolean | number - joined_at?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +export interface e_game_server_node_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "draft_game_players" */ -export interface draft_game_players_max_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - /** aggregate min on columns */ -export interface draft_game_players_min_fieldsGenqlSelection{ - draft_game_id?: boolean | number - elo_snapshot?: boolean | number - joined_at?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +export interface e_game_server_node_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "draft_game_players" */ -export interface draft_game_players_min_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** response of any mutation on the table "draft_game_players" */ -export interface draft_game_players_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: draft_game_playersGenqlSelection + returning?: e_game_server_node_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "draft_game_players" */ -export interface draft_game_players_on_conflict {constraint: draft_game_players_constraint,update_columns?: draft_game_players_update_column[],where?: (draft_game_players_bool_exp | null)} +/** input type for inserting object relation for remote table "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_obj_rel_insert_input {data: e_game_server_node_statuses_insert_input, +/** upsert condition */ +on_conflict?: (e_game_server_node_statuses_on_conflict | null)} -/** Ordering options when selecting data from "draft_game_players". */ -export interface draft_game_players_order_by {draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),e_draft_game_player_status?: (e_draft_game_player_status_order_by | null),elo_snapshot?: (order_by | null),is_captain?: (order_by | null),is_organizer?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} +/** on_conflict condition type for table "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_on_conflict {constraint: e_game_server_node_statuses_constraint,update_columns?: e_game_server_node_statuses_update_column[],where?: (e_game_server_node_statuses_bool_exp | null)} -/** primary key columns input for table: draft_game_players */ -export interface draft_game_players_pk_columns_input {draft_game_id: Scalars['uuid'],steam_id: Scalars['bigint']} +/** Ordering options when selecting data from "e_game_server_node_statuses". */ +export interface e_game_server_node_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** input type for updating data in table "draft_game_players" */ -export interface draft_game_players_set_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} +/** primary key columns input for table: e_game_server_node_statuses */ +export interface e_game_server_node_statuses_pk_columns_input {value: Scalars['String']} -/** aggregate stddev on columns */ -export interface draft_game_players_stddev_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for updating data in table "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** order by stddev() on columns of table "draft_game_players" */ -export interface draft_game_players_stddev_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} +/** Streaming cursor of the table "e_game_server_node_statuses" */ +export interface e_game_server_node_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_game_server_node_statuses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** aggregate stddev_pop on columns */ -export interface draft_game_players_stddev_pop_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +/** Initial value of the column from where the streaming should start */ +export interface e_game_server_node_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_game_server_node_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_game_server_node_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_game_server_node_statuses_bool_exp} + + +/** columns and relationships of "e_league_movement_types" */ +export interface e_league_movement_typesGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "draft_game_players" */ -export interface draft_game_players_stddev_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} +/** aggregated selection of "e_league_movement_types" */ +export interface e_league_movement_types_aggregateGenqlSelection{ + aggregate?: e_league_movement_types_aggregate_fieldsGenqlSelection + nodes?: e_league_movement_typesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_samp on columns */ -export interface draft_game_players_stddev_samp_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +/** aggregate fields of "e_league_movement_types" */ +export interface e_league_movement_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_league_movement_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_league_movement_types_max_fieldsGenqlSelection + min?: e_league_movement_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "draft_game_players" */ -export interface draft_game_players_stddev_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} +/** Boolean expression to filter rows from the table "e_league_movement_types". All fields are combined with a logical 'AND'. */ +export interface e_league_movement_types_bool_exp {_and?: (e_league_movement_types_bool_exp[] | null),_not?: (e_league_movement_types_bool_exp | null),_or?: (e_league_movement_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Streaming cursor of the table "draft_game_players" */ -export interface draft_game_players_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: draft_game_players_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** Boolean expression to compare columns of type "e_league_movement_types_enum". All fields are combined with logical 'AND'. */ +export interface e_league_movement_types_enum_comparison_exp {_eq?: (e_league_movement_types_enum | null),_in?: (e_league_movement_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_movement_types_enum | null),_nin?: (e_league_movement_types_enum[] | null)} -/** Initial value of the column from where the streaming should start */ -export interface draft_game_players_stream_cursor_value_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_league_movement_types" */ +export interface e_league_movement_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate sum on columns */ -export interface draft_game_players_sum_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_league_movement_types_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by sum() on columns of table "draft_game_players" */ -export interface draft_game_players_sum_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - -export interface draft_game_players_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (draft_game_players_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (draft_game_players_set_input | null), -/** filter the rows which have to be updated */ -where: draft_game_players_bool_exp} - - -/** aggregate var_pop on columns */ -export interface draft_game_players_var_pop_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +/** aggregate min on columns */ +export interface e_league_movement_types_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "draft_game_players" */ -export interface draft_game_players_var_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate var_samp on columns */ -export interface draft_game_players_var_samp_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +/** response of any mutation on the table "e_league_movement_types" */ +export interface e_league_movement_types_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_league_movement_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by var_samp() on columns of table "draft_game_players" */ -export interface draft_game_players_var_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} +/** input type for inserting object relation for remote table "e_league_movement_types" */ +export interface e_league_movement_types_obj_rel_insert_input {data: e_league_movement_types_insert_input, +/** upsert condition */ +on_conflict?: (e_league_movement_types_on_conflict | null)} -/** aggregate variance on columns */ -export interface draft_game_players_variance_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** on_conflict condition type for table "e_league_movement_types" */ +export interface e_league_movement_types_on_conflict {constraint: e_league_movement_types_constraint,update_columns?: e_league_movement_types_update_column[],where?: (e_league_movement_types_bool_exp | null)} -/** order by variance() on columns of table "draft_game_players" */ -export interface draft_game_players_variance_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} +/** Ordering options when selecting data from "e_league_movement_types". */ +export interface e_league_movement_types_order_by {description?: (order_by | null),value?: (order_by | null)} -/** columns and relationships of "draft_games" */ -export interface draft_gamesGenqlSelection{ - access?: boolean | number - capacity?: boolean | number - captain_selection?: boolean | number - created_at?: boolean | number - current_pick_lineup?: boolean | number - draft_order?: boolean | number - /** An object relationship */ - e_draft_game_captain_selection?: e_draft_game_captain_selectionGenqlSelection - /** An object relationship */ - e_draft_game_draft_order?: e_draft_game_draft_orderGenqlSelection - /** An object relationship */ - e_draft_game_mode?: e_draft_game_modeGenqlSelection - /** An object relationship */ - e_draft_game_status?: e_draft_game_statusGenqlSelection - /** An object relationship */ - e_lobby_access?: e_lobby_accessGenqlSelection - expires_at?: boolean | number - /** An object relationship */ - host?: playersGenqlSelection - host_steam_id?: boolean | number - id?: boolean | number - inner_squad?: boolean | number - invite_code?: boolean | number - is_organizer?: boolean | number - /** An object relationship */ - map_pool?: map_poolsGenqlSelection - map_pool_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - mode?: boolean | number - /** An object relationship */ - options?: match_optionsGenqlSelection - /** Turn order (lineup 1/2) for each remaining non-captain pick. */ - pattern?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number - pick_deadline?: boolean | number - /** An array relationship */ - picks?: (draft_game_picksGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_picks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_picks_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_picks_bool_exp | null)} }) - /** An aggregate relationship */ - picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_picks_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_picks_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_picks_bool_exp | null)} }) - /** An array relationship */ - players?: (draft_game_playersGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_players_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_players_bool_exp | null)} }) - /** An aggregate relationship */ - players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (draft_game_players_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (draft_game_players_order_by[] | null), - /** filter the rows returned */ - where?: (draft_game_players_bool_exp | null)} }) - regions?: boolean | number - require_approval?: boolean | number - scheduled_at?: boolean | number - status?: boolean | number - /** An object relationship */ - team_1?: teamsGenqlSelection - team_1_id?: boolean | number - /** An object relationship */ - team_2?: teamsGenqlSelection - team_2_id?: boolean | number - type?: boolean | number - updated_at?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_league_movement_types */ +export interface e_league_movement_types_pk_columns_input {value: Scalars['String']} -/** aggregated selection of "draft_games" */ -export interface draft_games_aggregateGenqlSelection{ - aggregate?: draft_games_aggregate_fieldsGenqlSelection - nodes?: draft_gamesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for updating data in table "e_league_movement_types" */ +export interface e_league_movement_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface draft_games_aggregate_bool_exp {bool_and?: (draft_games_aggregate_bool_exp_bool_and | null),bool_or?: (draft_games_aggregate_bool_exp_bool_or | null),count?: (draft_games_aggregate_bool_exp_count | null)} -export interface draft_games_aggregate_bool_exp_bool_and {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} +/** Streaming cursor of the table "e_league_movement_types" */ +export interface e_league_movement_types_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_league_movement_types_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -export interface draft_games_aggregate_bool_exp_bool_or {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} -export interface draft_games_aggregate_bool_exp_count {arguments?: (draft_games_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Int_comparison_exp} +/** Initial value of the column from where the streaming should start */ +export interface e_league_movement_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_league_movement_types_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_league_movement_types_set_input | null), +/** filter the rows which have to be updated */ +where: e_league_movement_types_bool_exp} -/** aggregate fields of "draft_games" */ -export interface draft_games_aggregate_fieldsGenqlSelection{ - avg?: draft_games_avg_fieldsGenqlSelection - count?: { __args: {columns?: (draft_games_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: draft_games_max_fieldsGenqlSelection - min?: draft_games_min_fieldsGenqlSelection - stddev?: draft_games_stddev_fieldsGenqlSelection - stddev_pop?: draft_games_stddev_pop_fieldsGenqlSelection - stddev_samp?: draft_games_stddev_samp_fieldsGenqlSelection - sum?: draft_games_sum_fieldsGenqlSelection - var_pop?: draft_games_var_pop_fieldsGenqlSelection - var_samp?: draft_games_var_samp_fieldsGenqlSelection - variance?: draft_games_variance_fieldsGenqlSelection +/** columns and relationships of "e_league_proposal_statuses" */ +export interface e_league_proposal_statusesGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by aggregate values of table "draft_games" */ -export interface draft_games_aggregate_order_by {avg?: (draft_games_avg_order_by | null),count?: (order_by | null),max?: (draft_games_max_order_by | null),min?: (draft_games_min_order_by | null),stddev?: (draft_games_stddev_order_by | null),stddev_pop?: (draft_games_stddev_pop_order_by | null),stddev_samp?: (draft_games_stddev_samp_order_by | null),sum?: (draft_games_sum_order_by | null),var_pop?: (draft_games_var_pop_order_by | null),var_samp?: (draft_games_var_samp_order_by | null),variance?: (draft_games_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "draft_games" */ -export interface draft_games_arr_rel_insert_input {data: draft_games_insert_input[], -/** upsert condition */ -on_conflict?: (draft_games_on_conflict | null)} - - -/** aggregate avg on columns */ -export interface draft_games_avg_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number +/** aggregated selection of "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_aggregateGenqlSelection{ + aggregate?: e_league_proposal_statuses_aggregate_fieldsGenqlSelection + nodes?: e_league_proposal_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by avg() on columns of table "draft_games" */ -export interface draft_games_avg_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** aggregate fields of "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_league_proposal_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_league_proposal_statuses_max_fieldsGenqlSelection + min?: e_league_proposal_statuses_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. */ -export interface draft_games_bool_exp {_and?: (draft_games_bool_exp[] | null),_not?: (draft_games_bool_exp | null),_or?: (draft_games_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),capacity?: (Int_comparison_exp | null),captain_selection?: (e_draft_game_captain_selection_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_pick_lineup?: (Int_comparison_exp | null),draft_order?: (e_draft_game_draft_order_enum_comparison_exp | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_bool_exp | null),e_draft_game_draft_order?: (e_draft_game_draft_order_bool_exp | null),e_draft_game_mode?: (e_draft_game_mode_bool_exp | null),e_draft_game_status?: (e_draft_game_status_bool_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),expires_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),inner_squad?: (Boolean_comparison_exp | null),invite_code?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),mode?: (e_draft_game_mode_enum_comparison_exp | null),options?: (match_options_bool_exp | null),pattern?: (jsonb_comparison_exp | null),pick_deadline?: (timestamptz_comparison_exp | null),picks?: (draft_game_picks_bool_exp | null),picks_aggregate?: (draft_game_picks_aggregate_bool_exp | null),players?: (draft_game_players_bool_exp | null),players_aggregate?: (draft_game_players_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),require_approval?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),status?: (e_draft_game_status_enum_comparison_exp | null),team_1?: (teams_bool_exp | null),team_1_id?: (uuid_comparison_exp | null),team_2?: (teams_bool_exp | null),team_2_id?: (uuid_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_league_proposal_statuses". All fields are combined with a logical 'AND'. */ +export interface e_league_proposal_statuses_bool_exp {_and?: (e_league_proposal_statuses_bool_exp[] | null),_not?: (e_league_proposal_statuses_bool_exp | null),_or?: (e_league_proposal_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "draft_games" */ -export interface draft_games_inc_input {capacity?: (Scalars['Int'] | null),current_pick_lineup?: (Scalars['Int'] | null),host_steam_id?: (Scalars['bigint'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null)} +/** Boolean expression to compare columns of type "e_league_proposal_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_league_proposal_statuses_enum_comparison_exp {_eq?: (e_league_proposal_statuses_enum | null),_in?: (e_league_proposal_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_proposal_statuses_enum | null),_nin?: (e_league_proposal_statuses_enum[] | null)} -/** input type for inserting data into table "draft_games" */ -export interface draft_games_insert_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_obj_rel_insert_input | null),e_draft_game_draft_order?: (e_draft_game_draft_order_obj_rel_insert_input | null),e_draft_game_mode?: (e_draft_game_mode_obj_rel_insert_input | null),e_draft_game_status?: (e_draft_game_status_obj_rel_insert_input | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),expires_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),options?: (match_options_obj_rel_insert_input | null),pick_deadline?: (Scalars['timestamptz'] | null),picks?: (draft_game_picks_arr_rel_insert_input | null),players?: (draft_game_players_arr_rel_insert_input | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1?: (teams_obj_rel_insert_input | null),team_1_id?: (Scalars['uuid'] | null),team_2?: (teams_obj_rel_insert_input | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +/** input type for inserting data into table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface draft_games_max_fieldsGenqlSelection{ - capacity?: boolean | number - created_at?: boolean | number - current_pick_lineup?: boolean | number - expires_at?: boolean | number - host_steam_id?: boolean | number - id?: boolean | number - invite_code?: boolean | number - map_pool_id?: boolean | number - match_id?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - pick_deadline?: boolean | number - regions?: boolean | number - scheduled_at?: boolean | number - team_1_id?: boolean | number - team_2_id?: boolean | number - updated_at?: boolean | number +export interface e_league_proposal_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "draft_games" */ -export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} - - /** aggregate min on columns */ -export interface draft_games_min_fieldsGenqlSelection{ - capacity?: boolean | number - created_at?: boolean | number - current_pick_lineup?: boolean | number - expires_at?: boolean | number - host_steam_id?: boolean | number - id?: boolean | number - invite_code?: boolean | number - map_pool_id?: boolean | number - match_id?: boolean | number - match_options_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - pick_deadline?: boolean | number - regions?: boolean | number - scheduled_at?: boolean | number - team_1_id?: boolean | number - team_2_id?: boolean | number - updated_at?: boolean | number +export interface e_league_proposal_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "draft_games" */ -export interface draft_games_min_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),scheduled_at?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} - - -/** response of any mutation on the table "draft_games" */ -export interface draft_games_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: draft_gamesGenqlSelection + returning?: e_league_proposal_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "draft_games" */ -export interface draft_games_obj_rel_insert_input {data: draft_games_insert_input, +/** input type for inserting object relation for remote table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_obj_rel_insert_input {data: e_league_proposal_statuses_insert_input, /** upsert condition */ -on_conflict?: (draft_games_on_conflict | null)} +on_conflict?: (e_league_proposal_statuses_on_conflict | null)} -/** on_conflict condition type for table "draft_games" */ -export interface draft_games_on_conflict {constraint: draft_games_constraint,update_columns?: draft_games_update_column[],where?: (draft_games_bool_exp | null)} +/** on_conflict condition type for table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_on_conflict {constraint: e_league_proposal_statuses_constraint,update_columns?: e_league_proposal_statuses_update_column[],where?: (e_league_proposal_statuses_bool_exp | null)} -/** Ordering options when selecting data from "draft_games". */ -export interface draft_games_order_by {access?: (order_by | null),capacity?: (order_by | null),captain_selection?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),draft_order?: (order_by | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_order_by | null),e_draft_game_draft_order?: (e_draft_game_draft_order_order_by | null),e_draft_game_mode?: (e_draft_game_mode_order_by | null),e_draft_game_status?: (e_draft_game_status_order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),expires_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),inner_squad?: (order_by | null),invite_code?: (order_by | null),is_organizer?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),mode?: (order_by | null),options?: (match_options_order_by | null),pattern?: (order_by | null),pick_deadline?: (order_by | null),picks_aggregate?: (draft_game_picks_aggregate_order_by | null),players_aggregate?: (draft_game_players_aggregate_order_by | null),regions?: (order_by | null),require_approval?: (order_by | null),scheduled_at?: (order_by | null),status?: (order_by | null),team_1?: (teams_order_by | null),team_1_id?: (order_by | null),team_2?: (teams_order_by | null),team_2_id?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} +/** Ordering options when selecting data from "e_league_proposal_statuses". */ +export interface e_league_proposal_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: draft_games */ -export interface draft_games_pk_columns_input {id: Scalars['uuid']} +/** primary key columns input for table: e_league_proposal_statuses */ +export interface e_league_proposal_statuses_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "draft_games" */ -export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +/** input type for updating data in table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate stddev on columns */ -export interface draft_games_stddev_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** Streaming cursor of the table "e_league_proposal_statuses" */ +export interface e_league_proposal_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_league_proposal_statuses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** order by stddev() on columns of table "draft_games" */ -export interface draft_games_stddev_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** Initial value of the column from where the streaming should start */ +export interface e_league_proposal_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_league_proposal_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_league_proposal_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_league_proposal_statuses_bool_exp} -/** aggregate stddev_pop on columns */ -export interface draft_games_stddev_pop_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number + +/** columns and relationships of "e_league_registration_statuses" */ +export interface e_league_registration_statusesGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "draft_games" */ -export interface draft_games_stddev_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** aggregated selection of "e_league_registration_statuses" */ +export interface e_league_registration_statuses_aggregateGenqlSelection{ + aggregate?: e_league_registration_statuses_aggregate_fieldsGenqlSelection + nodes?: e_league_registration_statusesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_samp on columns */ -export interface draft_games_stddev_samp_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number +/** aggregate fields of "e_league_registration_statuses" */ +export interface e_league_registration_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_league_registration_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_league_registration_statuses_max_fieldsGenqlSelection + min?: e_league_registration_statuses_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "draft_games" */ -export interface draft_games_stddev_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** Boolean expression to filter rows from the table "e_league_registration_statuses". All fields are combined with a logical 'AND'. */ +export interface e_league_registration_statuses_bool_exp {_and?: (e_league_registration_statuses_bool_exp[] | null),_not?: (e_league_registration_statuses_bool_exp | null),_or?: (e_league_registration_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Streaming cursor of the table "draft_games" */ -export interface draft_games_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: draft_games_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** Boolean expression to compare columns of type "e_league_registration_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_league_registration_statuses_enum_comparison_exp {_eq?: (e_league_registration_statuses_enum | null),_in?: (e_league_registration_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_registration_statuses_enum | null),_nin?: (e_league_registration_statuses_enum[] | null)} -/** Initial value of the column from where the streaming should start */ -export interface draft_games_stream_cursor_value_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),scheduled_at?: (Scalars['timestamptz'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} +/** input type for inserting data into table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate sum on columns */ -export interface draft_games_sum_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number +/** aggregate max on columns */ +export interface e_league_registration_statuses_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by sum() on columns of table "draft_games" */ -export interface draft_games_sum_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} - -export interface draft_games_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (draft_games_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (draft_games_set_input | null), -/** filter the rows which have to be updated */ -where: draft_games_bool_exp} +/** aggregate min on columns */ +export interface e_league_registration_statuses_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate var_pop on columns */ -export interface draft_games_var_pop_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number +/** response of any mutation on the table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_league_registration_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "draft_games" */ -export interface draft_games_var_pop_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** input type for inserting object relation for remote table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_obj_rel_insert_input {data: e_league_registration_statuses_insert_input, +/** upsert condition */ +on_conflict?: (e_league_registration_statuses_on_conflict | null)} -/** aggregate var_samp on columns */ -export interface draft_games_var_samp_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** on_conflict condition type for table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_on_conflict {constraint: e_league_registration_statuses_constraint,update_columns?: e_league_registration_statuses_update_column[],where?: (e_league_registration_statuses_bool_exp | null)} -/** order by var_samp() on columns of table "draft_games" */ -export interface draft_games_var_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** Ordering options when selecting data from "e_league_registration_statuses". */ +export interface e_league_registration_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate variance on columns */ -export interface draft_games_variance_fieldsGenqlSelection{ - capacity?: boolean | number - current_pick_lineup?: boolean | number - host_steam_id?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** primary key columns input for table: e_league_registration_statuses */ +export interface e_league_registration_statuses_pk_columns_input {value: Scalars['String']} -/** order by variance() on columns of table "draft_games" */ -export interface draft_games_variance_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} +/** input type for updating data in table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** columns and relationships of "e_check_in_settings" */ -export interface e_check_in_settingsGenqlSelection{ +/** Streaming cursor of the table "e_league_registration_statuses" */ +export interface e_league_registration_statuses_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_league_registration_statuses_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_league_registration_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_league_registration_statuses_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_league_registration_statuses_set_input | null), +/** filter the rows which have to be updated */ +where: e_league_registration_statuses_bool_exp} + + +/** columns and relationships of "e_league_season_statuses" */ +export interface e_league_season_statusesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35434,39 +38553,39 @@ export interface e_check_in_settingsGenqlSelection{ } -/** aggregated selection of "e_check_in_settings" */ -export interface e_check_in_settings_aggregateGenqlSelection{ - aggregate?: e_check_in_settings_aggregate_fieldsGenqlSelection - nodes?: e_check_in_settingsGenqlSelection +/** aggregated selection of "e_league_season_statuses" */ +export interface e_league_season_statuses_aggregateGenqlSelection{ + aggregate?: e_league_season_statuses_aggregate_fieldsGenqlSelection + nodes?: e_league_season_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_check_in_settings" */ -export interface e_check_in_settings_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_check_in_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_check_in_settings_max_fieldsGenqlSelection - min?: e_check_in_settings_min_fieldsGenqlSelection +/** aggregate fields of "e_league_season_statuses" */ +export interface e_league_season_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_league_season_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_league_season_statuses_max_fieldsGenqlSelection + min?: e_league_season_statuses_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. */ -export interface e_check_in_settings_bool_exp {_and?: (e_check_in_settings_bool_exp[] | null),_not?: (e_check_in_settings_bool_exp | null),_or?: (e_check_in_settings_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_league_season_statuses". All fields are combined with a logical 'AND'. */ +export interface e_league_season_statuses_bool_exp {_and?: (e_league_season_statuses_bool_exp[] | null),_not?: (e_league_season_statuses_bool_exp | null),_or?: (e_league_season_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. */ -export interface e_check_in_settings_enum_comparison_exp {_eq?: (e_check_in_settings_enum | null),_in?: (e_check_in_settings_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_check_in_settings_enum | null),_nin?: (e_check_in_settings_enum[] | null)} +/** Boolean expression to compare columns of type "e_league_season_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_league_season_statuses_enum_comparison_exp {_eq?: (e_league_season_statuses_enum | null),_in?: (e_league_season_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_season_statuses_enum | null),_nin?: (e_league_season_statuses_enum[] | null)} -/** input type for inserting data into table "e_check_in_settings" */ -export interface e_check_in_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_league_season_statuses" */ +export interface e_league_season_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_check_in_settings_max_fieldsGenqlSelection{ +export interface e_league_season_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35475,7 +38594,7 @@ export interface e_check_in_settings_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_check_in_settings_min_fieldsGenqlSelection{ +export interface e_league_season_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35483,53 +38602,59 @@ export interface e_check_in_settings_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_check_in_settings" */ -export interface e_check_in_settings_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_league_season_statuses" */ +export interface e_league_season_statuses_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_check_in_settingsGenqlSelection + returning?: e_league_season_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_check_in_settings" */ -export interface e_check_in_settings_on_conflict {constraint: e_check_in_settings_constraint,update_columns?: e_check_in_settings_update_column[],where?: (e_check_in_settings_bool_exp | null)} +/** input type for inserting object relation for remote table "e_league_season_statuses" */ +export interface e_league_season_statuses_obj_rel_insert_input {data: e_league_season_statuses_insert_input, +/** upsert condition */ +on_conflict?: (e_league_season_statuses_on_conflict | null)} -/** Ordering options when selecting data from "e_check_in_settings". */ -export interface e_check_in_settings_order_by {description?: (order_by | null),value?: (order_by | null)} +/** on_conflict condition type for table "e_league_season_statuses" */ +export interface e_league_season_statuses_on_conflict {constraint: e_league_season_statuses_constraint,update_columns?: e_league_season_statuses_update_column[],where?: (e_league_season_statuses_bool_exp | null)} -/** primary key columns input for table: e_check_in_settings */ -export interface e_check_in_settings_pk_columns_input {value: Scalars['String']} +/** Ordering options when selecting data from "e_league_season_statuses". */ +export interface e_league_season_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** input type for updating data in table "e_check_in_settings" */ -export interface e_check_in_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** primary key columns input for table: e_league_season_statuses */ +export interface e_league_season_statuses_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "e_check_in_settings" */ -export interface e_check_in_settings_stream_cursor_input { +/** input type for updating data in table "e_league_season_statuses" */ +export interface e_league_season_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_league_season_statuses" */ +export interface e_league_season_statuses_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_check_in_settings_stream_cursor_value_input, +initial_value: e_league_season_statuses_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_check_in_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_league_season_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_check_in_settings_updates { +export interface e_league_season_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_check_in_settings_set_input | null), +_set?: (e_league_season_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_check_in_settings_bool_exp} +where: e_league_season_statuses_bool_exp} -/** columns and relationships of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selectionGenqlSelection{ +/** columns and relationships of "e_lobby_access" */ +export interface e_lobby_accessGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35537,39 +38662,39 @@ export interface e_draft_game_captain_selectionGenqlSelection{ } -/** aggregated selection of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_aggregateGenqlSelection{ - aggregate?: e_draft_game_captain_selection_aggregate_fieldsGenqlSelection - nodes?: e_draft_game_captain_selectionGenqlSelection +/** aggregated selection of "e_lobby_access" */ +export interface e_lobby_access_aggregateGenqlSelection{ + aggregate?: e_lobby_access_aggregate_fieldsGenqlSelection + nodes?: e_lobby_accessGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_draft_game_captain_selection_max_fieldsGenqlSelection - min?: e_draft_game_captain_selection_min_fieldsGenqlSelection +/** aggregate fields of "e_lobby_access" */ +export interface e_lobby_access_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_lobby_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_lobby_access_max_fieldsGenqlSelection + min?: e_lobby_access_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. */ -export interface e_draft_game_captain_selection_bool_exp {_and?: (e_draft_game_captain_selection_bool_exp[] | null),_not?: (e_draft_game_captain_selection_bool_exp | null),_or?: (e_draft_game_captain_selection_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_lobby_access". All fields are combined with a logical 'AND'. */ +export interface e_lobby_access_bool_exp {_and?: (e_lobby_access_bool_exp[] | null),_not?: (e_lobby_access_bool_exp | null),_or?: (e_lobby_access_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_captain_selection_enum_comparison_exp {_eq?: (e_draft_game_captain_selection_enum | null),_in?: (e_draft_game_captain_selection_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_captain_selection_enum | null),_nin?: (e_draft_game_captain_selection_enum[] | null)} +/** Boolean expression to compare columns of type "e_lobby_access_enum". All fields are combined with logical 'AND'. */ +export interface e_lobby_access_enum_comparison_exp {_eq?: (e_lobby_access_enum | null),_in?: (e_lobby_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_lobby_access_enum | null),_nin?: (e_lobby_access_enum[] | null)} -/** input type for inserting data into table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_lobby_access" */ +export interface e_lobby_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ +export interface e_lobby_access_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35578,7 +38703,7 @@ export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ +export interface e_lobby_access_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35586,59 +38711,59 @@ export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_lobby_access" */ +export interface e_lobby_access_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_draft_game_captain_selectionGenqlSelection + returning?: e_lobby_accessGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_obj_rel_insert_input {data: e_draft_game_captain_selection_insert_input, +/** input type for inserting object relation for remote table "e_lobby_access" */ +export interface e_lobby_access_obj_rel_insert_input {data: e_lobby_access_insert_input, /** upsert condition */ -on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} +on_conflict?: (e_lobby_access_on_conflict | null)} -/** on_conflict condition type for table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_on_conflict {constraint: e_draft_game_captain_selection_constraint,update_columns?: e_draft_game_captain_selection_update_column[],where?: (e_draft_game_captain_selection_bool_exp | null)} +/** on_conflict condition type for table "e_lobby_access" */ +export interface e_lobby_access_on_conflict {constraint: e_lobby_access_constraint,update_columns?: e_lobby_access_update_column[],where?: (e_lobby_access_bool_exp | null)} -/** Ordering options when selecting data from "e_draft_game_captain_selection". */ -export interface e_draft_game_captain_selection_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_lobby_access". */ +export interface e_lobby_access_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_draft_game_captain_selection */ -export interface e_draft_game_captain_selection_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_lobby_access */ +export interface e_lobby_access_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_lobby_access" */ +export interface e_lobby_access_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_draft_game_captain_selection" */ -export interface e_draft_game_captain_selection_stream_cursor_input { +/** Streaming cursor of the table "e_lobby_access" */ +export interface e_lobby_access_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_captain_selection_stream_cursor_value_input, +initial_value: e_lobby_access_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_draft_game_captain_selection_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_lobby_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_captain_selection_updates { +export interface e_lobby_access_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_captain_selection_set_input | null), +_set?: (e_lobby_access_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_captain_selection_bool_exp} +where: e_lobby_access_bool_exp} -/** columns and relationships of "e_draft_game_draft_order" */ -export interface e_draft_game_draft_orderGenqlSelection{ +/** columns and relationships of "e_lobby_player_status" */ +export interface e_lobby_player_statusGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35646,39 +38771,39 @@ export interface e_draft_game_draft_orderGenqlSelection{ } -/** aggregated selection of "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_aggregateGenqlSelection{ - aggregate?: e_draft_game_draft_order_aggregate_fieldsGenqlSelection - nodes?: e_draft_game_draft_orderGenqlSelection +/** aggregated selection of "e_lobby_player_status" */ +export interface e_lobby_player_status_aggregateGenqlSelection{ + aggregate?: e_lobby_player_status_aggregate_fieldsGenqlSelection + nodes?: e_lobby_player_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_draft_game_draft_order_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_draft_game_draft_order_max_fieldsGenqlSelection - min?: e_draft_game_draft_order_min_fieldsGenqlSelection +/** aggregate fields of "e_lobby_player_status" */ +export interface e_lobby_player_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_lobby_player_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_lobby_player_status_max_fieldsGenqlSelection + min?: e_lobby_player_status_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. */ -export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_lobby_player_status". All fields are combined with a logical 'AND'. */ +export interface e_lobby_player_status_bool_exp {_and?: (e_lobby_player_status_bool_exp[] | null),_not?: (e_lobby_player_status_bool_exp | null),_or?: (e_lobby_player_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_draft_order_enum_comparison_exp {_eq?: (e_draft_game_draft_order_enum | null),_in?: (e_draft_game_draft_order_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_draft_order_enum | null),_nin?: (e_draft_game_draft_order_enum[] | null)} +/** Boolean expression to compare columns of type "e_lobby_player_status_enum". All fields are combined with logical 'AND'. */ +export interface e_lobby_player_status_enum_comparison_exp {_eq?: (e_lobby_player_status_enum | null),_in?: (e_lobby_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_lobby_player_status_enum | null),_nin?: (e_lobby_player_status_enum[] | null)} -/** input type for inserting data into table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_lobby_player_status" */ +export interface e_lobby_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ +export interface e_lobby_player_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35687,7 +38812,7 @@ export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ +export interface e_lobby_player_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35695,59 +38820,53 @@ export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_lobby_player_status" */ +export interface e_lobby_player_status_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_draft_game_draft_orderGenqlSelection + returning?: e_lobby_player_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_obj_rel_insert_input {data: e_draft_game_draft_order_insert_input, -/** upsert condition */ -on_conflict?: (e_draft_game_draft_order_on_conflict | null)} - - -/** on_conflict condition type for table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_on_conflict {constraint: e_draft_game_draft_order_constraint,update_columns?: e_draft_game_draft_order_update_column[],where?: (e_draft_game_draft_order_bool_exp | null)} +/** on_conflict condition type for table "e_lobby_player_status" */ +export interface e_lobby_player_status_on_conflict {constraint: e_lobby_player_status_constraint,update_columns?: e_lobby_player_status_update_column[],where?: (e_lobby_player_status_bool_exp | null)} -/** Ordering options when selecting data from "e_draft_game_draft_order". */ -export interface e_draft_game_draft_order_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_lobby_player_status". */ +export interface e_lobby_player_status_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_draft_game_draft_order */ -export interface e_draft_game_draft_order_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_lobby_player_status */ +export interface e_lobby_player_status_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_lobby_player_status" */ +export interface e_lobby_player_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_draft_game_draft_order" */ -export interface e_draft_game_draft_order_stream_cursor_input { +/** Streaming cursor of the table "e_lobby_player_status" */ +export interface e_lobby_player_status_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_draft_order_stream_cursor_value_input, +initial_value: e_lobby_player_status_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_lobby_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_draft_order_updates { +export interface e_lobby_player_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_draft_order_set_input | null), +_set?: (e_lobby_player_status_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_draft_order_bool_exp} +where: e_lobby_player_status_bool_exp} -/** columns and relationships of "e_draft_game_mode" */ -export interface e_draft_game_modeGenqlSelection{ +/** columns and relationships of "e_map_pool_types" */ +export interface e_map_pool_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35755,39 +38874,39 @@ export interface e_draft_game_modeGenqlSelection{ } -/** aggregated selection of "e_draft_game_mode" */ -export interface e_draft_game_mode_aggregateGenqlSelection{ - aggregate?: e_draft_game_mode_aggregate_fieldsGenqlSelection - nodes?: e_draft_game_modeGenqlSelection +/** aggregated selection of "e_map_pool_types" */ +export interface e_map_pool_types_aggregateGenqlSelection{ + aggregate?: e_map_pool_types_aggregate_fieldsGenqlSelection + nodes?: e_map_pool_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_draft_game_mode" */ -export interface e_draft_game_mode_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_draft_game_mode_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_draft_game_mode_max_fieldsGenqlSelection - min?: e_draft_game_mode_min_fieldsGenqlSelection +/** aggregate fields of "e_map_pool_types" */ +export interface e_map_pool_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_map_pool_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_map_pool_types_max_fieldsGenqlSelection + min?: e_map_pool_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. */ -export interface e_draft_game_mode_bool_exp {_and?: (e_draft_game_mode_bool_exp[] | null),_not?: (e_draft_game_mode_bool_exp | null),_or?: (e_draft_game_mode_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_map_pool_types". All fields are combined with a logical 'AND'. */ +export interface e_map_pool_types_bool_exp {_and?: (e_map_pool_types_bool_exp[] | null),_not?: (e_map_pool_types_bool_exp | null),_or?: (e_map_pool_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_mode_enum_comparison_exp {_eq?: (e_draft_game_mode_enum | null),_in?: (e_draft_game_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_mode_enum | null),_nin?: (e_draft_game_mode_enum[] | null)} +/** Boolean expression to compare columns of type "e_map_pool_types_enum". All fields are combined with logical 'AND'. */ +export interface e_map_pool_types_enum_comparison_exp {_eq?: (e_map_pool_types_enum | null),_in?: (e_map_pool_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_map_pool_types_enum | null),_nin?: (e_map_pool_types_enum[] | null)} -/** input type for inserting data into table "e_draft_game_mode" */ -export interface e_draft_game_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_map_pool_types" */ +export interface e_map_pool_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_draft_game_mode_max_fieldsGenqlSelection{ +export interface e_map_pool_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35796,7 +38915,7 @@ export interface e_draft_game_mode_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_draft_game_mode_min_fieldsGenqlSelection{ +export interface e_map_pool_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35804,99 +38923,123 @@ export interface e_draft_game_mode_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_draft_game_mode" */ -export interface e_draft_game_mode_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_map_pool_types" */ +export interface e_map_pool_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_draft_game_modeGenqlSelection + returning?: e_map_pool_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_draft_game_mode" */ -export interface e_draft_game_mode_obj_rel_insert_input {data: e_draft_game_mode_insert_input, +/** input type for inserting object relation for remote table "e_map_pool_types" */ +export interface e_map_pool_types_obj_rel_insert_input {data: e_map_pool_types_insert_input, /** upsert condition */ -on_conflict?: (e_draft_game_mode_on_conflict | null)} +on_conflict?: (e_map_pool_types_on_conflict | null)} -/** on_conflict condition type for table "e_draft_game_mode" */ -export interface e_draft_game_mode_on_conflict {constraint: e_draft_game_mode_constraint,update_columns?: e_draft_game_mode_update_column[],where?: (e_draft_game_mode_bool_exp | null)} +/** on_conflict condition type for table "e_map_pool_types" */ +export interface e_map_pool_types_on_conflict {constraint: e_map_pool_types_constraint,update_columns?: e_map_pool_types_update_column[],where?: (e_map_pool_types_bool_exp | null)} -/** Ordering options when selecting data from "e_draft_game_mode". */ -export interface e_draft_game_mode_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_map_pool_types". */ +export interface e_map_pool_types_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_draft_game_mode */ -export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_map_pool_types */ +export interface e_map_pool_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_draft_game_mode" */ -export interface e_draft_game_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_map_pool_types" */ +export interface e_map_pool_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_draft_game_mode" */ -export interface e_draft_game_mode_stream_cursor_input { +/** Streaming cursor of the table "e_map_pool_types" */ +export interface e_map_pool_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_mode_stream_cursor_value_input, +initial_value: e_map_pool_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_map_pool_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_mode_updates { +export interface e_map_pool_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_mode_set_input | null), +_set?: (e_map_pool_types_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_mode_bool_exp} +where: e_map_pool_types_bool_exp} -/** columns and relationships of "e_draft_game_player_status" */ -export interface e_draft_game_player_statusGenqlSelection{ +/** columns and relationships of "e_match_clip_visibility" */ +export interface e_match_clip_visibilityGenqlSelection{ description?: boolean | number + /** An array relationship */ + match_clips?: (match_clipsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_clips_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?: (match_clips_order_by[] | null), + /** filter the rows returned */ + where?: (match_clips_bool_exp | null)} }) + /** An aggregate relationship */ + match_clips_aggregate?: (match_clips_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_clips_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?: (match_clips_order_by[] | null), + /** filter the rows returned */ + where?: (match_clips_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_draft_game_player_status" */ -export interface e_draft_game_player_status_aggregateGenqlSelection{ - aggregate?: e_draft_game_player_status_aggregate_fieldsGenqlSelection - nodes?: e_draft_game_player_statusGenqlSelection +/** aggregated selection of "e_match_clip_visibility" */ +export interface e_match_clip_visibility_aggregateGenqlSelection{ + aggregate?: e_match_clip_visibility_aggregate_fieldsGenqlSelection + nodes?: e_match_clip_visibilityGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_draft_game_player_status" */ -export interface e_draft_game_player_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_draft_game_player_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_draft_game_player_status_max_fieldsGenqlSelection - min?: e_draft_game_player_status_min_fieldsGenqlSelection +/** aggregate fields of "e_match_clip_visibility" */ +export interface e_match_clip_visibility_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_match_clip_visibility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_match_clip_visibility_max_fieldsGenqlSelection + min?: e_match_clip_visibility_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. */ -export interface e_draft_game_player_status_bool_exp {_and?: (e_draft_game_player_status_bool_exp[] | null),_not?: (e_draft_game_player_status_bool_exp | null),_or?: (e_draft_game_player_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_match_clip_visibility". All fields are combined with a logical 'AND'. */ +export interface e_match_clip_visibility_bool_exp {_and?: (e_match_clip_visibility_bool_exp[] | null),_not?: (e_match_clip_visibility_bool_exp | null),_or?: (e_match_clip_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_player_status_enum_comparison_exp {_eq?: (e_draft_game_player_status_enum | null),_in?: (e_draft_game_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_player_status_enum | null),_nin?: (e_draft_game_player_status_enum[] | null)} +/** Boolean expression to compare columns of type "e_match_clip_visibility_enum". All fields are combined with logical 'AND'. */ +export interface e_match_clip_visibility_enum_comparison_exp {_eq?: (e_match_clip_visibility_enum | null),_in?: (e_match_clip_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_clip_visibility_enum | null),_nin?: (e_match_clip_visibility_enum[] | null)} -/** input type for inserting data into table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_match_clip_visibility" */ +export interface e_match_clip_visibility_insert_input {description?: (Scalars['String'] | null),match_clips?: (match_clips_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_draft_game_player_status_max_fieldsGenqlSelection{ +export interface e_match_clip_visibility_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35905,7 +39048,7 @@ export interface e_draft_game_player_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_draft_game_player_status_min_fieldsGenqlSelection{ +export interface e_match_clip_visibility_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -35913,99 +39056,117 @@ export interface e_draft_game_player_status_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_match_clip_visibility" */ +export interface e_match_clip_visibility_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_draft_game_player_statusGenqlSelection + returning?: e_match_clip_visibilityGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_obj_rel_insert_input {data: e_draft_game_player_status_insert_input, -/** upsert condition */ -on_conflict?: (e_draft_game_player_status_on_conflict | null)} - - -/** on_conflict condition type for table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_on_conflict {constraint: e_draft_game_player_status_constraint,update_columns?: e_draft_game_player_status_update_column[],where?: (e_draft_game_player_status_bool_exp | null)} +/** on_conflict condition type for table "e_match_clip_visibility" */ +export interface e_match_clip_visibility_on_conflict {constraint: e_match_clip_visibility_constraint,update_columns?: e_match_clip_visibility_update_column[],where?: (e_match_clip_visibility_bool_exp | null)} -/** Ordering options when selecting data from "e_draft_game_player_status". */ -export interface e_draft_game_player_status_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_match_clip_visibility". */ +export interface e_match_clip_visibility_order_by {description?: (order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_draft_game_player_status */ -export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_match_clip_visibility */ +export interface e_match_clip_visibility_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_match_clip_visibility" */ +export interface e_match_clip_visibility_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_draft_game_player_status" */ -export interface e_draft_game_player_status_stream_cursor_input { +/** Streaming cursor of the table "e_match_clip_visibility" */ +export interface e_match_clip_visibility_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_player_status_stream_cursor_value_input, +initial_value: e_match_clip_visibility_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_match_clip_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_player_status_updates { +export interface e_match_clip_visibility_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_player_status_set_input | null), +_set?: (e_match_clip_visibility_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_player_status_bool_exp} +where: e_match_clip_visibility_bool_exp} -/** columns and relationships of "e_draft_game_status" */ -export interface e_draft_game_statusGenqlSelection{ +/** columns and relationships of "e_match_map_status" */ +export interface e_match_map_statusGenqlSelection{ description?: boolean | number + /** An array relationship */ + match_maps?: (match_mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + /** An aggregate relationship */ + match_maps_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_draft_game_status" */ -export interface e_draft_game_status_aggregateGenqlSelection{ - aggregate?: e_draft_game_status_aggregate_fieldsGenqlSelection - nodes?: e_draft_game_statusGenqlSelection +/** aggregated selection of "e_match_map_status" */ +export interface e_match_map_status_aggregateGenqlSelection{ + aggregate?: e_match_map_status_aggregate_fieldsGenqlSelection + nodes?: e_match_map_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_draft_game_status" */ -export interface e_draft_game_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_draft_game_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_draft_game_status_max_fieldsGenqlSelection - min?: e_draft_game_status_min_fieldsGenqlSelection +/** aggregate fields of "e_match_map_status" */ +export interface e_match_map_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_match_map_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_match_map_status_max_fieldsGenqlSelection + min?: e_match_map_status_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. */ -export interface e_draft_game_status_bool_exp {_and?: (e_draft_game_status_bool_exp[] | null),_not?: (e_draft_game_status_bool_exp | null),_or?: (e_draft_game_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_match_map_status". All fields are combined with a logical 'AND'. */ +export interface e_match_map_status_bool_exp {_and?: (e_match_map_status_bool_exp[] | null),_not?: (e_match_map_status_bool_exp | null),_or?: (e_match_map_status_bool_exp[] | null),description?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. */ -export interface e_draft_game_status_enum_comparison_exp {_eq?: (e_draft_game_status_enum | null),_in?: (e_draft_game_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_status_enum | null),_nin?: (e_draft_game_status_enum[] | null)} +/** Boolean expression to compare columns of type "e_match_map_status_enum". All fields are combined with logical 'AND'. */ +export interface e_match_map_status_enum_comparison_exp {_eq?: (e_match_map_status_enum | null),_in?: (e_match_map_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_map_status_enum | null),_nin?: (e_match_map_status_enum[] | null)} -/** input type for inserting data into table "e_draft_game_status" */ -export interface e_draft_game_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_match_map_status" */ +export interface e_match_map_status_insert_input {description?: (Scalars['String'] | null),match_maps?: (match_maps_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_draft_game_status_max_fieldsGenqlSelection{ +export interface e_match_map_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36014,7 +39175,7 @@ export interface e_draft_game_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_draft_game_status_min_fieldsGenqlSelection{ +export interface e_match_map_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36022,59 +39183,59 @@ export interface e_draft_game_status_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_draft_game_status" */ -export interface e_draft_game_status_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_match_map_status" */ +export interface e_match_map_status_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_draft_game_statusGenqlSelection + returning?: e_match_map_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_draft_game_status" */ -export interface e_draft_game_status_obj_rel_insert_input {data: e_draft_game_status_insert_input, +/** input type for inserting object relation for remote table "e_match_map_status" */ +export interface e_match_map_status_obj_rel_insert_input {data: e_match_map_status_insert_input, /** upsert condition */ -on_conflict?: (e_draft_game_status_on_conflict | null)} +on_conflict?: (e_match_map_status_on_conflict | null)} -/** on_conflict condition type for table "e_draft_game_status" */ -export interface e_draft_game_status_on_conflict {constraint: e_draft_game_status_constraint,update_columns?: e_draft_game_status_update_column[],where?: (e_draft_game_status_bool_exp | null)} +/** on_conflict condition type for table "e_match_map_status" */ +export interface e_match_map_status_on_conflict {constraint: e_match_map_status_constraint,update_columns?: e_match_map_status_update_column[],where?: (e_match_map_status_bool_exp | null)} -/** Ordering options when selecting data from "e_draft_game_status". */ -export interface e_draft_game_status_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_match_map_status". */ +export interface e_match_map_status_order_by {description?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_draft_game_status */ -export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_match_map_status */ +export interface e_match_map_status_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_draft_game_status" */ -export interface e_draft_game_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_match_map_status" */ +export interface e_match_map_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_draft_game_status" */ -export interface e_draft_game_status_stream_cursor_input { +/** Streaming cursor of the table "e_match_map_status" */ +export interface e_match_map_status_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_draft_game_status_stream_cursor_value_input, +initial_value: e_match_map_status_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_draft_game_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_match_map_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_draft_game_status_updates { +export interface e_match_map_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_draft_game_status_set_input | null), +_set?: (e_match_map_status_set_input | null), /** filter the rows which have to be updated */ -where: e_draft_game_status_bool_exp} +where: e_match_map_status_bool_exp} -/** columns and relationships of "e_friend_status" */ -export interface e_friend_statusGenqlSelection{ +/** columns and relationships of "e_match_mode" */ +export interface e_match_modeGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36082,39 +39243,39 @@ export interface e_friend_statusGenqlSelection{ } -/** aggregated selection of "e_friend_status" */ -export interface e_friend_status_aggregateGenqlSelection{ - aggregate?: e_friend_status_aggregate_fieldsGenqlSelection - nodes?: e_friend_statusGenqlSelection +/** aggregated selection of "e_match_mode" */ +export interface e_match_mode_aggregateGenqlSelection{ + aggregate?: e_match_mode_aggregate_fieldsGenqlSelection + nodes?: e_match_modeGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_friend_status" */ -export interface e_friend_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_friend_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_friend_status_max_fieldsGenqlSelection - min?: e_friend_status_min_fieldsGenqlSelection +/** aggregate fields of "e_match_mode" */ +export interface e_match_mode_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_match_mode_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_match_mode_max_fieldsGenqlSelection + min?: e_match_mode_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_friend_status". All fields are combined with a logical 'AND'. */ -export interface e_friend_status_bool_exp {_and?: (e_friend_status_bool_exp[] | null),_not?: (e_friend_status_bool_exp | null),_or?: (e_friend_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_match_mode". All fields are combined with a logical 'AND'. */ +export interface e_match_mode_bool_exp {_and?: (e_match_mode_bool_exp[] | null),_not?: (e_match_mode_bool_exp | null),_or?: (e_match_mode_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_friend_status_enum". All fields are combined with logical 'AND'. */ -export interface e_friend_status_enum_comparison_exp {_eq?: (e_friend_status_enum | null),_in?: (e_friend_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_friend_status_enum | null),_nin?: (e_friend_status_enum[] | null)} +/** Boolean expression to compare columns of type "e_match_mode_enum". All fields are combined with logical 'AND'. */ +export interface e_match_mode_enum_comparison_exp {_eq?: (e_match_mode_enum | null),_in?: (e_match_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_mode_enum | null),_nin?: (e_match_mode_enum[] | null)} -/** input type for inserting data into table "e_friend_status" */ -export interface e_friend_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_match_mode" */ +export interface e_match_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_friend_status_max_fieldsGenqlSelection{ +export interface e_match_mode_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36123,7 +39284,7 @@ export interface e_friend_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_friend_status_min_fieldsGenqlSelection{ +export interface e_match_mode_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36131,99 +39292,117 @@ export interface e_friend_status_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_friend_status" */ -export interface e_friend_status_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_match_mode" */ +export interface e_match_mode_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_friend_statusGenqlSelection + returning?: e_match_modeGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_friend_status" */ -export interface e_friend_status_obj_rel_insert_input {data: e_friend_status_insert_input, -/** upsert condition */ -on_conflict?: (e_friend_status_on_conflict | null)} - - -/** on_conflict condition type for table "e_friend_status" */ -export interface e_friend_status_on_conflict {constraint: e_friend_status_constraint,update_columns?: e_friend_status_update_column[],where?: (e_friend_status_bool_exp | null)} +/** on_conflict condition type for table "e_match_mode" */ +export interface e_match_mode_on_conflict {constraint: e_match_mode_constraint,update_columns?: e_match_mode_update_column[],where?: (e_match_mode_bool_exp | null)} -/** Ordering options when selecting data from "e_friend_status". */ -export interface e_friend_status_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_match_mode". */ +export interface e_match_mode_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_friend_status */ -export interface e_friend_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_match_mode */ +export interface e_match_mode_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_friend_status" */ -export interface e_friend_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_match_mode" */ +export interface e_match_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_friend_status" */ -export interface e_friend_status_stream_cursor_input { +/** Streaming cursor of the table "e_match_mode" */ +export interface e_match_mode_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_friend_status_stream_cursor_value_input, +initial_value: e_match_mode_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_friend_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_match_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_friend_status_updates { +export interface e_match_mode_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_friend_status_set_input | null), +_set?: (e_match_mode_set_input | null), /** filter the rows which have to be updated */ -where: e_friend_status_bool_exp} +where: e_match_mode_bool_exp} -/** columns and relationships of "e_game_cfg_types" */ -export interface e_game_cfg_typesGenqlSelection{ +/** columns and relationships of "e_match_status" */ +export interface e_match_statusGenqlSelection{ description?: boolean | number + /** An array relationship */ + matches?: (matchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (matches_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?: (matches_order_by[] | null), + /** filter the rows returned */ + where?: (matches_bool_exp | null)} }) + /** An aggregate relationship */ + matches_aggregate?: (matches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (matches_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?: (matches_order_by[] | null), + /** filter the rows returned */ + where?: (matches_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_game_cfg_types" */ -export interface e_game_cfg_types_aggregateGenqlSelection{ - aggregate?: e_game_cfg_types_aggregate_fieldsGenqlSelection - nodes?: e_game_cfg_typesGenqlSelection +/** aggregated selection of "e_match_status" */ +export interface e_match_status_aggregateGenqlSelection{ + aggregate?: e_match_status_aggregate_fieldsGenqlSelection + nodes?: e_match_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_game_cfg_types" */ -export interface e_game_cfg_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_game_cfg_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_game_cfg_types_max_fieldsGenqlSelection - min?: e_game_cfg_types_min_fieldsGenqlSelection +/** aggregate fields of "e_match_status" */ +export interface e_match_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_match_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_match_status_max_fieldsGenqlSelection + min?: e_match_status_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_game_cfg_types". All fields are combined with a logical 'AND'. */ -export interface e_game_cfg_types_bool_exp {_and?: (e_game_cfg_types_bool_exp[] | null),_not?: (e_game_cfg_types_bool_exp | null),_or?: (e_game_cfg_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_match_status". All fields are combined with a logical 'AND'. */ +export interface e_match_status_bool_exp {_and?: (e_match_status_bool_exp[] | null),_not?: (e_match_status_bool_exp | null),_or?: (e_match_status_bool_exp[] | null),description?: (String_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_game_cfg_types_enum". All fields are combined with logical 'AND'. */ -export interface e_game_cfg_types_enum_comparison_exp {_eq?: (e_game_cfg_types_enum | null),_in?: (e_game_cfg_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_cfg_types_enum | null),_nin?: (e_game_cfg_types_enum[] | null)} +/** Boolean expression to compare columns of type "e_match_status_enum". All fields are combined with logical 'AND'. */ +export interface e_match_status_enum_comparison_exp {_eq?: (e_match_status_enum | null),_in?: (e_match_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_status_enum | null),_nin?: (e_match_status_enum[] | null)} -/** input type for inserting data into table "e_game_cfg_types" */ -export interface e_game_cfg_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_match_status" */ +export interface e_match_status_insert_input {description?: (Scalars['String'] | null),matches?: (matches_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_game_cfg_types_max_fieldsGenqlSelection{ +export interface e_match_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36232,7 +39411,7 @@ export interface e_game_cfg_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_game_cfg_types_min_fieldsGenqlSelection{ +export interface e_match_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36240,93 +39419,123 @@ export interface e_game_cfg_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_game_cfg_types" */ -export interface e_game_cfg_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_match_status" */ +export interface e_match_status_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_game_cfg_typesGenqlSelection + returning?: e_match_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_game_cfg_types" */ -export interface e_game_cfg_types_on_conflict {constraint: e_game_cfg_types_constraint,update_columns?: e_game_cfg_types_update_column[],where?: (e_game_cfg_types_bool_exp | null)} +/** input type for inserting object relation for remote table "e_match_status" */ +export interface e_match_status_obj_rel_insert_input {data: e_match_status_insert_input, +/** upsert condition */ +on_conflict?: (e_match_status_on_conflict | null)} -/** Ordering options when selecting data from "e_game_cfg_types". */ -export interface e_game_cfg_types_order_by {description?: (order_by | null),value?: (order_by | null)} +/** on_conflict condition type for table "e_match_status" */ +export interface e_match_status_on_conflict {constraint: e_match_status_constraint,update_columns?: e_match_status_update_column[],where?: (e_match_status_bool_exp | null)} -/** primary key columns input for table: e_game_cfg_types */ -export interface e_game_cfg_types_pk_columns_input {value: Scalars['String']} +/** Ordering options when selecting data from "e_match_status". */ +export interface e_match_status_order_by {description?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),value?: (order_by | null)} -/** input type for updating data in table "e_game_cfg_types" */ -export interface e_game_cfg_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** primary key columns input for table: e_match_status */ +export interface e_match_status_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "e_game_cfg_types" */ -export interface e_game_cfg_types_stream_cursor_input { +/** input type for updating data in table "e_match_status" */ +export interface e_match_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_match_status" */ +export interface e_match_status_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_game_cfg_types_stream_cursor_value_input, +initial_value: e_match_status_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_game_cfg_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_match_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_game_cfg_types_updates { +export interface e_match_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_game_cfg_types_set_input | null), +_set?: (e_match_status_set_input | null), /** filter the rows which have to be updated */ -where: e_game_cfg_types_bool_exp} +where: e_match_status_bool_exp} -/** columns and relationships of "e_game_server_node_statuses" */ -export interface e_game_server_node_statusesGenqlSelection{ +/** columns and relationships of "e_match_types" */ +export interface e_match_typesGenqlSelection{ description?: boolean | number + /** An array relationship */ + maps?: (mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (maps_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?: (maps_order_by[] | null), + /** filter the rows returned */ + where?: (maps_bool_exp | null)} }) + /** An aggregate relationship */ + maps_aggregate?: (maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (maps_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?: (maps_order_by[] | null), + /** filter the rows returned */ + where?: (maps_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_aggregateGenqlSelection{ - aggregate?: e_game_server_node_statuses_aggregate_fieldsGenqlSelection - nodes?: e_game_server_node_statusesGenqlSelection +/** aggregated selection of "e_match_types" */ +export interface e_match_types_aggregateGenqlSelection{ + aggregate?: e_match_types_aggregate_fieldsGenqlSelection + nodes?: e_match_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_game_server_node_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_game_server_node_statuses_max_fieldsGenqlSelection - min?: e_game_server_node_statuses_min_fieldsGenqlSelection +/** aggregate fields of "e_match_types" */ +export interface e_match_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_match_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_match_types_max_fieldsGenqlSelection + min?: e_match_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_game_server_node_statuses". All fields are combined with a logical 'AND'. */ -export interface e_game_server_node_statuses_bool_exp {_and?: (e_game_server_node_statuses_bool_exp[] | null),_not?: (e_game_server_node_statuses_bool_exp | null),_or?: (e_game_server_node_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_match_types". All fields are combined with a logical 'AND'. */ +export interface e_match_types_bool_exp {_and?: (e_match_types_bool_exp[] | null),_not?: (e_match_types_bool_exp | null),_or?: (e_match_types_bool_exp[] | null),description?: (String_comparison_exp | null),maps?: (maps_bool_exp | null),maps_aggregate?: (maps_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_game_server_node_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_game_server_node_statuses_enum_comparison_exp {_eq?: (e_game_server_node_statuses_enum | null),_in?: (e_game_server_node_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_game_server_node_statuses_enum | null),_nin?: (e_game_server_node_statuses_enum[] | null)} +/** Boolean expression to compare columns of type "e_match_types_enum". All fields are combined with logical 'AND'. */ +export interface e_match_types_enum_comparison_exp {_eq?: (e_match_types_enum | null),_in?: (e_match_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_types_enum | null),_nin?: (e_match_types_enum[] | null)} -/** input type for inserting data into table "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_match_types" */ +export interface e_match_types_insert_input {description?: (Scalars['String'] | null),maps?: (maps_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_game_server_node_statuses_max_fieldsGenqlSelection{ +export interface e_match_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36335,7 +39544,7 @@ export interface e_game_server_node_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_game_server_node_statuses_min_fieldsGenqlSelection{ +export interface e_match_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36343,59 +39552,59 @@ export interface e_game_server_node_statuses_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_match_types" */ +export interface e_match_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_game_server_node_statusesGenqlSelection + returning?: e_match_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_obj_rel_insert_input {data: e_game_server_node_statuses_insert_input, +/** input type for inserting object relation for remote table "e_match_types" */ +export interface e_match_types_obj_rel_insert_input {data: e_match_types_insert_input, /** upsert condition */ -on_conflict?: (e_game_server_node_statuses_on_conflict | null)} +on_conflict?: (e_match_types_on_conflict | null)} -/** on_conflict condition type for table "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_on_conflict {constraint: e_game_server_node_statuses_constraint,update_columns?: e_game_server_node_statuses_update_column[],where?: (e_game_server_node_statuses_bool_exp | null)} +/** on_conflict condition type for table "e_match_types" */ +export interface e_match_types_on_conflict {constraint: e_match_types_constraint,update_columns?: e_match_types_update_column[],where?: (e_match_types_bool_exp | null)} -/** Ordering options when selecting data from "e_game_server_node_statuses". */ -export interface e_game_server_node_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_match_types". */ +export interface e_match_types_order_by {description?: (order_by | null),maps_aggregate?: (maps_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_game_server_node_statuses */ -export interface e_game_server_node_statuses_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_match_types */ +export interface e_match_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_match_types" */ +export interface e_match_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_game_server_node_statuses" */ -export interface e_game_server_node_statuses_stream_cursor_input { +/** Streaming cursor of the table "e_match_types" */ +export interface e_match_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_game_server_node_statuses_stream_cursor_value_input, +initial_value: e_match_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_game_server_node_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_match_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_game_server_node_statuses_updates { +export interface e_match_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_game_server_node_statuses_set_input | null), +_set?: (e_match_types_set_input | null), /** filter the rows which have to be updated */ -where: e_game_server_node_statuses_bool_exp} +where: e_match_types_bool_exp} -/** columns and relationships of "e_league_movement_types" */ -export interface e_league_movement_typesGenqlSelection{ +/** columns and relationships of "e_notification_types" */ +export interface e_notification_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36403,39 +39612,39 @@ export interface e_league_movement_typesGenqlSelection{ } -/** aggregated selection of "e_league_movement_types" */ -export interface e_league_movement_types_aggregateGenqlSelection{ - aggregate?: e_league_movement_types_aggregate_fieldsGenqlSelection - nodes?: e_league_movement_typesGenqlSelection +/** aggregated selection of "e_notification_types" */ +export interface e_notification_types_aggregateGenqlSelection{ + aggregate?: e_notification_types_aggregate_fieldsGenqlSelection + nodes?: e_notification_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_league_movement_types" */ -export interface e_league_movement_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_league_movement_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_league_movement_types_max_fieldsGenqlSelection - min?: e_league_movement_types_min_fieldsGenqlSelection +/** aggregate fields of "e_notification_types" */ +export interface e_notification_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_notification_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_notification_types_max_fieldsGenqlSelection + min?: e_notification_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_league_movement_types". All fields are combined with a logical 'AND'. */ -export interface e_league_movement_types_bool_exp {_and?: (e_league_movement_types_bool_exp[] | null),_not?: (e_league_movement_types_bool_exp | null),_or?: (e_league_movement_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_notification_types". All fields are combined with a logical 'AND'. */ +export interface e_notification_types_bool_exp {_and?: (e_notification_types_bool_exp[] | null),_not?: (e_notification_types_bool_exp | null),_or?: (e_notification_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_league_movement_types_enum". All fields are combined with logical 'AND'. */ -export interface e_league_movement_types_enum_comparison_exp {_eq?: (e_league_movement_types_enum | null),_in?: (e_league_movement_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_movement_types_enum | null),_nin?: (e_league_movement_types_enum[] | null)} +/** Boolean expression to compare columns of type "e_notification_types_enum". All fields are combined with logical 'AND'. */ +export interface e_notification_types_enum_comparison_exp {_eq?: (e_notification_types_enum | null),_in?: (e_notification_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_notification_types_enum | null),_nin?: (e_notification_types_enum[] | null)} -/** input type for inserting data into table "e_league_movement_types" */ -export interface e_league_movement_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_notification_types" */ +export interface e_notification_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_league_movement_types_max_fieldsGenqlSelection{ +export interface e_notification_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36444,7 +39653,7 @@ export interface e_league_movement_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_movement_types_min_fieldsGenqlSelection{ +export interface e_notification_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36452,99 +39661,117 @@ export interface e_league_movement_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_league_movement_types" */ -export interface e_league_movement_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_notification_types" */ +export interface e_notification_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_league_movement_typesGenqlSelection + returning?: e_notification_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_league_movement_types" */ -export interface e_league_movement_types_obj_rel_insert_input {data: e_league_movement_types_insert_input, -/** upsert condition */ -on_conflict?: (e_league_movement_types_on_conflict | null)} - - -/** on_conflict condition type for table "e_league_movement_types" */ -export interface e_league_movement_types_on_conflict {constraint: e_league_movement_types_constraint,update_columns?: e_league_movement_types_update_column[],where?: (e_league_movement_types_bool_exp | null)} +/** on_conflict condition type for table "e_notification_types" */ +export interface e_notification_types_on_conflict {constraint: e_notification_types_constraint,update_columns?: e_notification_types_update_column[],where?: (e_notification_types_bool_exp | null)} -/** Ordering options when selecting data from "e_league_movement_types". */ -export interface e_league_movement_types_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_notification_types". */ +export interface e_notification_types_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_league_movement_types */ -export interface e_league_movement_types_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_notification_types */ +export interface e_notification_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_league_movement_types" */ -export interface e_league_movement_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_notification_types" */ +export interface e_notification_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_league_movement_types" */ -export interface e_league_movement_types_stream_cursor_input { +/** Streaming cursor of the table "e_notification_types" */ +export interface e_notification_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_movement_types_stream_cursor_value_input, +initial_value: e_notification_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_league_movement_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_notification_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_league_movement_types_updates { +export interface e_notification_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_movement_types_set_input | null), +_set?: (e_notification_types_set_input | null), /** filter the rows which have to be updated */ -where: e_league_movement_types_bool_exp} +where: e_notification_types_bool_exp} -/** columns and relationships of "e_league_proposal_statuses" */ -export interface e_league_proposal_statusesGenqlSelection{ +/** columns and relationships of "e_objective_types" */ +export interface e_objective_typesGenqlSelection{ description?: boolean | number + /** An array relationship */ + player_objectives?: (player_objectivesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_objectives_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (player_objectives_order_by[] | null), + /** filter the rows returned */ + where?: (player_objectives_bool_exp | null)} }) + /** An aggregate relationship */ + player_objectives_aggregate?: (player_objectives_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_objectives_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (player_objectives_order_by[] | null), + /** filter the rows returned */ + where?: (player_objectives_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_aggregateGenqlSelection{ - aggregate?: e_league_proposal_statuses_aggregate_fieldsGenqlSelection - nodes?: e_league_proposal_statusesGenqlSelection +/** aggregated selection of "e_objective_types" */ +export interface e_objective_types_aggregateGenqlSelection{ + aggregate?: e_objective_types_aggregate_fieldsGenqlSelection + nodes?: e_objective_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_league_proposal_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_league_proposal_statuses_max_fieldsGenqlSelection - min?: e_league_proposal_statuses_min_fieldsGenqlSelection +/** aggregate fields of "e_objective_types" */ +export interface e_objective_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_objective_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_objective_types_max_fieldsGenqlSelection + min?: e_objective_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_league_proposal_statuses". All fields are combined with a logical 'AND'. */ -export interface e_league_proposal_statuses_bool_exp {_and?: (e_league_proposal_statuses_bool_exp[] | null),_not?: (e_league_proposal_statuses_bool_exp | null),_or?: (e_league_proposal_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_objective_types". All fields are combined with a logical 'AND'. */ +export interface e_objective_types_bool_exp {_and?: (e_objective_types_bool_exp[] | null),_not?: (e_objective_types_bool_exp | null),_or?: (e_objective_types_bool_exp[] | null),description?: (String_comparison_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_league_proposal_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_league_proposal_statuses_enum_comparison_exp {_eq?: (e_league_proposal_statuses_enum | null),_in?: (e_league_proposal_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_proposal_statuses_enum | null),_nin?: (e_league_proposal_statuses_enum[] | null)} +/** Boolean expression to compare columns of type "e_objective_types_enum". All fields are combined with logical 'AND'. */ +export interface e_objective_types_enum_comparison_exp {_eq?: (e_objective_types_enum | null),_in?: (e_objective_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_objective_types_enum | null),_nin?: (e_objective_types_enum[] | null)} -/** input type for inserting data into table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_objective_types" */ +export interface e_objective_types_insert_input {description?: (Scalars['String'] | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_league_proposal_statuses_max_fieldsGenqlSelection{ +export interface e_objective_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36553,7 +39780,7 @@ export interface e_league_proposal_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_proposal_statuses_min_fieldsGenqlSelection{ +export interface e_objective_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36561,59 +39788,53 @@ export interface e_league_proposal_statuses_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_objective_types" */ +export interface e_objective_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_league_proposal_statusesGenqlSelection + returning?: e_objective_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_obj_rel_insert_input {data: e_league_proposal_statuses_insert_input, -/** upsert condition */ -on_conflict?: (e_league_proposal_statuses_on_conflict | null)} - - -/** on_conflict condition type for table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_on_conflict {constraint: e_league_proposal_statuses_constraint,update_columns?: e_league_proposal_statuses_update_column[],where?: (e_league_proposal_statuses_bool_exp | null)} +/** on_conflict condition type for table "e_objective_types" */ +export interface e_objective_types_on_conflict {constraint: e_objective_types_constraint,update_columns?: e_objective_types_update_column[],where?: (e_objective_types_bool_exp | null)} -/** Ordering options when selecting data from "e_league_proposal_statuses". */ -export interface e_league_proposal_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_objective_types". */ +export interface e_objective_types_order_by {description?: (order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_league_proposal_statuses */ -export interface e_league_proposal_statuses_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_objective_types */ +export interface e_objective_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_objective_types" */ +export interface e_objective_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_league_proposal_statuses" */ -export interface e_league_proposal_statuses_stream_cursor_input { +/** Streaming cursor of the table "e_objective_types" */ +export interface e_objective_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_proposal_statuses_stream_cursor_value_input, +initial_value: e_objective_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_league_proposal_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_objective_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_league_proposal_statuses_updates { +export interface e_objective_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_proposal_statuses_set_input | null), +_set?: (e_objective_types_set_input | null), /** filter the rows which have to be updated */ -where: e_league_proposal_statuses_bool_exp} +where: e_objective_types_bool_exp} -/** columns and relationships of "e_league_registration_statuses" */ -export interface e_league_registration_statusesGenqlSelection{ +/** columns and relationships of "e_player_roles" */ +export interface e_player_rolesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36621,39 +39842,39 @@ export interface e_league_registration_statusesGenqlSelection{ } -/** aggregated selection of "e_league_registration_statuses" */ -export interface e_league_registration_statuses_aggregateGenqlSelection{ - aggregate?: e_league_registration_statuses_aggregate_fieldsGenqlSelection - nodes?: e_league_registration_statusesGenqlSelection +/** aggregated selection of "e_player_roles" */ +export interface e_player_roles_aggregateGenqlSelection{ + aggregate?: e_player_roles_aggregate_fieldsGenqlSelection + nodes?: e_player_rolesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_league_registration_statuses" */ -export interface e_league_registration_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_league_registration_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_league_registration_statuses_max_fieldsGenqlSelection - min?: e_league_registration_statuses_min_fieldsGenqlSelection +/** aggregate fields of "e_player_roles" */ +export interface e_player_roles_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_player_roles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_player_roles_max_fieldsGenqlSelection + min?: e_player_roles_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_league_registration_statuses". All fields are combined with a logical 'AND'. */ -export interface e_league_registration_statuses_bool_exp {_and?: (e_league_registration_statuses_bool_exp[] | null),_not?: (e_league_registration_statuses_bool_exp | null),_or?: (e_league_registration_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_player_roles". All fields are combined with a logical 'AND'. */ +export interface e_player_roles_bool_exp {_and?: (e_player_roles_bool_exp[] | null),_not?: (e_player_roles_bool_exp | null),_or?: (e_player_roles_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_league_registration_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_league_registration_statuses_enum_comparison_exp {_eq?: (e_league_registration_statuses_enum | null),_in?: (e_league_registration_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_registration_statuses_enum | null),_nin?: (e_league_registration_statuses_enum[] | null)} +/** Boolean expression to compare columns of type "e_player_roles_enum". All fields are combined with logical 'AND'. */ +export interface e_player_roles_enum_comparison_exp {_eq?: (e_player_roles_enum | null),_in?: (e_player_roles_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_player_roles_enum | null),_nin?: (e_player_roles_enum[] | null)} -/** input type for inserting data into table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_player_roles" */ +export interface e_player_roles_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_league_registration_statuses_max_fieldsGenqlSelection{ +export interface e_player_roles_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36662,7 +39883,7 @@ export interface e_league_registration_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_registration_statuses_min_fieldsGenqlSelection{ +export interface e_player_roles_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36670,59 +39891,53 @@ export interface e_league_registration_statuses_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_player_roles" */ +export interface e_player_roles_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_league_registration_statusesGenqlSelection + returning?: e_player_rolesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_obj_rel_insert_input {data: e_league_registration_statuses_insert_input, -/** upsert condition */ -on_conflict?: (e_league_registration_statuses_on_conflict | null)} - - -/** on_conflict condition type for table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_on_conflict {constraint: e_league_registration_statuses_constraint,update_columns?: e_league_registration_statuses_update_column[],where?: (e_league_registration_statuses_bool_exp | null)} +/** on_conflict condition type for table "e_player_roles" */ +export interface e_player_roles_on_conflict {constraint: e_player_roles_constraint,update_columns?: e_player_roles_update_column[],where?: (e_player_roles_bool_exp | null)} -/** Ordering options when selecting data from "e_league_registration_statuses". */ -export interface e_league_registration_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_player_roles". */ +export interface e_player_roles_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_league_registration_statuses */ -export interface e_league_registration_statuses_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_player_roles */ +export interface e_player_roles_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_player_roles" */ +export interface e_player_roles_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_league_registration_statuses" */ -export interface e_league_registration_statuses_stream_cursor_input { +/** Streaming cursor of the table "e_player_roles" */ +export interface e_player_roles_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_registration_statuses_stream_cursor_value_input, +initial_value: e_player_roles_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_league_registration_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_player_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_league_registration_statuses_updates { +export interface e_player_roles_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_registration_statuses_set_input | null), +_set?: (e_player_roles_set_input | null), /** filter the rows which have to be updated */ -where: e_league_registration_statuses_bool_exp} +where: e_player_roles_bool_exp} -/** columns and relationships of "e_league_season_statuses" */ -export interface e_league_season_statusesGenqlSelection{ +/** columns and relationships of "e_plugin_runtimes" */ +export interface e_plugin_runtimesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36730,39 +39945,39 @@ export interface e_league_season_statusesGenqlSelection{ } -/** aggregated selection of "e_league_season_statuses" */ -export interface e_league_season_statuses_aggregateGenqlSelection{ - aggregate?: e_league_season_statuses_aggregate_fieldsGenqlSelection - nodes?: e_league_season_statusesGenqlSelection +/** aggregated selection of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregateGenqlSelection{ + aggregate?: e_plugin_runtimes_aggregate_fieldsGenqlSelection + nodes?: e_plugin_runtimesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_league_season_statuses" */ -export interface e_league_season_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_league_season_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_league_season_statuses_max_fieldsGenqlSelection - min?: e_league_season_statuses_min_fieldsGenqlSelection +/** aggregate fields of "e_plugin_runtimes" */ +export interface e_plugin_runtimes_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_plugin_runtimes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_plugin_runtimes_max_fieldsGenqlSelection + min?: e_plugin_runtimes_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_league_season_statuses". All fields are combined with a logical 'AND'. */ -export interface e_league_season_statuses_bool_exp {_and?: (e_league_season_statuses_bool_exp[] | null),_not?: (e_league_season_statuses_bool_exp | null),_or?: (e_league_season_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_plugin_runtimes". All fields are combined with a logical 'AND'. */ +export interface e_plugin_runtimes_bool_exp {_and?: (e_plugin_runtimes_bool_exp[] | null),_not?: (e_plugin_runtimes_bool_exp | null),_or?: (e_plugin_runtimes_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_league_season_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_league_season_statuses_enum_comparison_exp {_eq?: (e_league_season_statuses_enum | null),_in?: (e_league_season_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_league_season_statuses_enum | null),_nin?: (e_league_season_statuses_enum[] | null)} +/** Boolean expression to compare columns of type "e_plugin_runtimes_enum". All fields are combined with logical 'AND'. */ +export interface e_plugin_runtimes_enum_comparison_exp {_eq?: (e_plugin_runtimes_enum | null),_in?: (e_plugin_runtimes_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_plugin_runtimes_enum | null),_nin?: (e_plugin_runtimes_enum[] | null)} -/** input type for inserting data into table "e_league_season_statuses" */ -export interface e_league_season_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_league_season_statuses_max_fieldsGenqlSelection{ +export interface e_plugin_runtimes_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36771,7 +39986,7 @@ export interface e_league_season_statuses_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_league_season_statuses_min_fieldsGenqlSelection{ +export interface e_plugin_runtimes_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36779,59 +39994,53 @@ export interface e_league_season_statuses_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_league_season_statuses" */ -export interface e_league_season_statuses_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_league_season_statusesGenqlSelection + returning?: e_plugin_runtimesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_league_season_statuses" */ -export interface e_league_season_statuses_obj_rel_insert_input {data: e_league_season_statuses_insert_input, -/** upsert condition */ -on_conflict?: (e_league_season_statuses_on_conflict | null)} - - -/** on_conflict condition type for table "e_league_season_statuses" */ -export interface e_league_season_statuses_on_conflict {constraint: e_league_season_statuses_constraint,update_columns?: e_league_season_statuses_update_column[],where?: (e_league_season_statuses_bool_exp | null)} +/** on_conflict condition type for table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_on_conflict {constraint: e_plugin_runtimes_constraint,update_columns?: e_plugin_runtimes_update_column[],where?: (e_plugin_runtimes_bool_exp | null)} -/** Ordering options when selecting data from "e_league_season_statuses". */ -export interface e_league_season_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_plugin_runtimes". */ +export interface e_plugin_runtimes_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_league_season_statuses */ -export interface e_league_season_statuses_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_plugin_runtimes */ +export interface e_plugin_runtimes_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_league_season_statuses" */ -export interface e_league_season_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_league_season_statuses" */ -export interface e_league_season_statuses_stream_cursor_input { +/** Streaming cursor of the table "e_plugin_runtimes" */ +export interface e_plugin_runtimes_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_league_season_statuses_stream_cursor_value_input, +initial_value: e_plugin_runtimes_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_league_season_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_plugin_runtimes_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_league_season_statuses_updates { +export interface e_plugin_runtimes_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_league_season_statuses_set_input | null), +_set?: (e_plugin_runtimes_set_input | null), /** filter the rows which have to be updated */ -where: e_league_season_statuses_bool_exp} +where: e_plugin_runtimes_bool_exp} -/** columns and relationships of "e_lobby_access" */ -export interface e_lobby_accessGenqlSelection{ +/** columns and relationships of "e_ready_settings" */ +export interface e_ready_settingsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36839,39 +40048,39 @@ export interface e_lobby_accessGenqlSelection{ } -/** aggregated selection of "e_lobby_access" */ -export interface e_lobby_access_aggregateGenqlSelection{ - aggregate?: e_lobby_access_aggregate_fieldsGenqlSelection - nodes?: e_lobby_accessGenqlSelection +/** aggregated selection of "e_ready_settings" */ +export interface e_ready_settings_aggregateGenqlSelection{ + aggregate?: e_ready_settings_aggregate_fieldsGenqlSelection + nodes?: e_ready_settingsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_lobby_access" */ -export interface e_lobby_access_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_lobby_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_lobby_access_max_fieldsGenqlSelection - min?: e_lobby_access_min_fieldsGenqlSelection +/** aggregate fields of "e_ready_settings" */ +export interface e_ready_settings_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_ready_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_ready_settings_max_fieldsGenqlSelection + min?: e_ready_settings_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_lobby_access". All fields are combined with a logical 'AND'. */ -export interface e_lobby_access_bool_exp {_and?: (e_lobby_access_bool_exp[] | null),_not?: (e_lobby_access_bool_exp | null),_or?: (e_lobby_access_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_ready_settings". All fields are combined with a logical 'AND'. */ +export interface e_ready_settings_bool_exp {_and?: (e_ready_settings_bool_exp[] | null),_not?: (e_ready_settings_bool_exp | null),_or?: (e_ready_settings_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_lobby_access_enum". All fields are combined with logical 'AND'. */ -export interface e_lobby_access_enum_comparison_exp {_eq?: (e_lobby_access_enum | null),_in?: (e_lobby_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_lobby_access_enum | null),_nin?: (e_lobby_access_enum[] | null)} +/** Boolean expression to compare columns of type "e_ready_settings_enum". All fields are combined with logical 'AND'. */ +export interface e_ready_settings_enum_comparison_exp {_eq?: (e_ready_settings_enum | null),_in?: (e_ready_settings_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_ready_settings_enum | null),_nin?: (e_ready_settings_enum[] | null)} -/** input type for inserting data into table "e_lobby_access" */ -export interface e_lobby_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_ready_settings" */ +export interface e_ready_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_lobby_access_max_fieldsGenqlSelection{ +export interface e_ready_settings_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36880,7 +40089,7 @@ export interface e_lobby_access_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_lobby_access_min_fieldsGenqlSelection{ +export interface e_ready_settings_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36888,59 +40097,53 @@ export interface e_lobby_access_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_lobby_access" */ -export interface e_lobby_access_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_ready_settings" */ +export interface e_ready_settings_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_lobby_accessGenqlSelection + returning?: e_ready_settingsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_lobby_access" */ -export interface e_lobby_access_obj_rel_insert_input {data: e_lobby_access_insert_input, -/** upsert condition */ -on_conflict?: (e_lobby_access_on_conflict | null)} - - -/** on_conflict condition type for table "e_lobby_access" */ -export interface e_lobby_access_on_conflict {constraint: e_lobby_access_constraint,update_columns?: e_lobby_access_update_column[],where?: (e_lobby_access_bool_exp | null)} +/** on_conflict condition type for table "e_ready_settings" */ +export interface e_ready_settings_on_conflict {constraint: e_ready_settings_constraint,update_columns?: e_ready_settings_update_column[],where?: (e_ready_settings_bool_exp | null)} -/** Ordering options when selecting data from "e_lobby_access". */ -export interface e_lobby_access_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_ready_settings". */ +export interface e_ready_settings_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_lobby_access */ -export interface e_lobby_access_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_ready_settings */ +export interface e_ready_settings_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_lobby_access" */ -export interface e_lobby_access_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_ready_settings" */ +export interface e_ready_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_lobby_access" */ -export interface e_lobby_access_stream_cursor_input { +/** Streaming cursor of the table "e_ready_settings" */ +export interface e_ready_settings_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_lobby_access_stream_cursor_value_input, +initial_value: e_ready_settings_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_lobby_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_ready_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_lobby_access_updates { +export interface e_ready_settings_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_lobby_access_set_input | null), +_set?: (e_ready_settings_set_input | null), /** filter the rows which have to be updated */ -where: e_lobby_access_bool_exp} +where: e_ready_settings_bool_exp} -/** columns and relationships of "e_lobby_player_status" */ -export interface e_lobby_player_statusGenqlSelection{ +/** columns and relationships of "e_sanction_types" */ +export interface e_sanction_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36948,39 +40151,39 @@ export interface e_lobby_player_statusGenqlSelection{ } -/** aggregated selection of "e_lobby_player_status" */ -export interface e_lobby_player_status_aggregateGenqlSelection{ - aggregate?: e_lobby_player_status_aggregate_fieldsGenqlSelection - nodes?: e_lobby_player_statusGenqlSelection +/** aggregated selection of "e_sanction_types" */ +export interface e_sanction_types_aggregateGenqlSelection{ + aggregate?: e_sanction_types_aggregate_fieldsGenqlSelection + nodes?: e_sanction_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_lobby_player_status" */ -export interface e_lobby_player_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_lobby_player_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_lobby_player_status_max_fieldsGenqlSelection - min?: e_lobby_player_status_min_fieldsGenqlSelection +/** aggregate fields of "e_sanction_types" */ +export interface e_sanction_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_sanction_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_sanction_types_max_fieldsGenqlSelection + min?: e_sanction_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_lobby_player_status". All fields are combined with a logical 'AND'. */ -export interface e_lobby_player_status_bool_exp {_and?: (e_lobby_player_status_bool_exp[] | null),_not?: (e_lobby_player_status_bool_exp | null),_or?: (e_lobby_player_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_sanction_types". All fields are combined with a logical 'AND'. */ +export interface e_sanction_types_bool_exp {_and?: (e_sanction_types_bool_exp[] | null),_not?: (e_sanction_types_bool_exp | null),_or?: (e_sanction_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_lobby_player_status_enum". All fields are combined with logical 'AND'. */ -export interface e_lobby_player_status_enum_comparison_exp {_eq?: (e_lobby_player_status_enum | null),_in?: (e_lobby_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_lobby_player_status_enum | null),_nin?: (e_lobby_player_status_enum[] | null)} +/** Boolean expression to compare columns of type "e_sanction_types_enum". All fields are combined with logical 'AND'. */ +export interface e_sanction_types_enum_comparison_exp {_eq?: (e_sanction_types_enum | null),_in?: (e_sanction_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_sanction_types_enum | null),_nin?: (e_sanction_types_enum[] | null)} -/** input type for inserting data into table "e_lobby_player_status" */ -export interface e_lobby_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_sanction_types" */ +export interface e_sanction_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_lobby_player_status_max_fieldsGenqlSelection{ +export interface e_sanction_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36989,7 +40192,7 @@ export interface e_lobby_player_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_lobby_player_status_min_fieldsGenqlSelection{ +export interface e_sanction_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -36997,93 +40200,123 @@ export interface e_lobby_player_status_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_lobby_player_status" */ -export interface e_lobby_player_status_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_sanction_types" */ +export interface e_sanction_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_lobby_player_statusGenqlSelection + returning?: e_sanction_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_lobby_player_status" */ -export interface e_lobby_player_status_on_conflict {constraint: e_lobby_player_status_constraint,update_columns?: e_lobby_player_status_update_column[],where?: (e_lobby_player_status_bool_exp | null)} +/** input type for inserting object relation for remote table "e_sanction_types" */ +export interface e_sanction_types_obj_rel_insert_input {data: e_sanction_types_insert_input, +/** upsert condition */ +on_conflict?: (e_sanction_types_on_conflict | null)} -/** Ordering options when selecting data from "e_lobby_player_status". */ -export interface e_lobby_player_status_order_by {description?: (order_by | null),value?: (order_by | null)} +/** on_conflict condition type for table "e_sanction_types" */ +export interface e_sanction_types_on_conflict {constraint: e_sanction_types_constraint,update_columns?: e_sanction_types_update_column[],where?: (e_sanction_types_bool_exp | null)} -/** primary key columns input for table: e_lobby_player_status */ -export interface e_lobby_player_status_pk_columns_input {value: Scalars['String']} +/** Ordering options when selecting data from "e_sanction_types". */ +export interface e_sanction_types_order_by {description?: (order_by | null),value?: (order_by | null)} -/** input type for updating data in table "e_lobby_player_status" */ -export interface e_lobby_player_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** primary key columns input for table: e_sanction_types */ +export interface e_sanction_types_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "e_lobby_player_status" */ -export interface e_lobby_player_status_stream_cursor_input { +/** input type for updating data in table "e_sanction_types" */ +export interface e_sanction_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_sanction_types" */ +export interface e_sanction_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_lobby_player_status_stream_cursor_value_input, +initial_value: e_sanction_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_lobby_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_sanction_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_lobby_player_status_updates { +export interface e_sanction_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_lobby_player_status_set_input | null), +_set?: (e_sanction_types_set_input | null), /** filter the rows which have to be updated */ -where: e_lobby_player_status_bool_exp} +where: e_sanction_types_bool_exp} -/** columns and relationships of "e_map_pool_types" */ -export interface e_map_pool_typesGenqlSelection{ +/** columns and relationships of "e_scrim_request_statuses" */ +export interface e_scrim_request_statusesGenqlSelection{ description?: boolean | number + /** An array relationship */ + scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_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?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) + /** An aggregate relationship */ + scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (team_scrim_requests_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?: (team_scrim_requests_order_by[] | null), + /** filter the rows returned */ + where?: (team_scrim_requests_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_map_pool_types" */ -export interface e_map_pool_types_aggregateGenqlSelection{ - aggregate?: e_map_pool_types_aggregate_fieldsGenqlSelection - nodes?: e_map_pool_typesGenqlSelection +/** aggregated selection of "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_aggregateGenqlSelection{ + aggregate?: e_scrim_request_statuses_aggregate_fieldsGenqlSelection + nodes?: e_scrim_request_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_map_pool_types" */ -export interface e_map_pool_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_map_pool_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_map_pool_types_max_fieldsGenqlSelection - min?: e_map_pool_types_min_fieldsGenqlSelection +/** aggregate fields of "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_scrim_request_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_scrim_request_statuses_max_fieldsGenqlSelection + min?: e_scrim_request_statuses_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_map_pool_types". All fields are combined with a logical 'AND'. */ -export interface e_map_pool_types_bool_exp {_and?: (e_map_pool_types_bool_exp[] | null),_not?: (e_map_pool_types_bool_exp | null),_or?: (e_map_pool_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_scrim_request_statuses". All fields are combined with a logical 'AND'. */ +export interface e_scrim_request_statuses_bool_exp {_and?: (e_scrim_request_statuses_bool_exp[] | null),_not?: (e_scrim_request_statuses_bool_exp | null),_or?: (e_scrim_request_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),scrim_requests?: (team_scrim_requests_bool_exp | null),scrim_requests_aggregate?: (team_scrim_requests_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_map_pool_types_enum". All fields are combined with logical 'AND'. */ -export interface e_map_pool_types_enum_comparison_exp {_eq?: (e_map_pool_types_enum | null),_in?: (e_map_pool_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_map_pool_types_enum | null),_nin?: (e_map_pool_types_enum[] | null)} +/** Boolean expression to compare columns of type "e_scrim_request_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_scrim_request_statuses_enum_comparison_exp {_eq?: (e_scrim_request_statuses_enum | null),_in?: (e_scrim_request_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_scrim_request_statuses_enum | null),_nin?: (e_scrim_request_statuses_enum[] | null)} -/** input type for inserting data into table "e_map_pool_types" */ -export interface e_map_pool_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_insert_input {description?: (Scalars['String'] | null),scrim_requests?: (team_scrim_requests_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_map_pool_types_max_fieldsGenqlSelection{ +export interface e_scrim_request_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37092,7 +40325,7 @@ export interface e_map_pool_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_map_pool_types_min_fieldsGenqlSelection{ +export interface e_scrim_request_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37100,123 +40333,117 @@ export interface e_map_pool_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_map_pool_types" */ -export interface e_map_pool_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_map_pool_typesGenqlSelection + returning?: e_scrim_request_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_map_pool_types" */ -export interface e_map_pool_types_obj_rel_insert_input {data: e_map_pool_types_insert_input, -/** upsert condition */ -on_conflict?: (e_map_pool_types_on_conflict | null)} - - -/** on_conflict condition type for table "e_map_pool_types" */ -export interface e_map_pool_types_on_conflict {constraint: e_map_pool_types_constraint,update_columns?: e_map_pool_types_update_column[],where?: (e_map_pool_types_bool_exp | null)} +/** on_conflict condition type for table "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_on_conflict {constraint: e_scrim_request_statuses_constraint,update_columns?: e_scrim_request_statuses_update_column[],where?: (e_scrim_request_statuses_bool_exp | null)} -/** Ordering options when selecting data from "e_map_pool_types". */ -export interface e_map_pool_types_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_scrim_request_statuses". */ +export interface e_scrim_request_statuses_order_by {description?: (order_by | null),scrim_requests_aggregate?: (team_scrim_requests_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_map_pool_types */ -export interface e_map_pool_types_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_scrim_request_statuses */ +export interface e_scrim_request_statuses_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_map_pool_types" */ -export interface e_map_pool_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_map_pool_types" */ -export interface e_map_pool_types_stream_cursor_input { +/** Streaming cursor of the table "e_scrim_request_statuses" */ +export interface e_scrim_request_statuses_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_map_pool_types_stream_cursor_value_input, +initial_value: e_scrim_request_statuses_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_map_pool_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_scrim_request_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_map_pool_types_updates { +export interface e_scrim_request_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_map_pool_types_set_input | null), +_set?: (e_scrim_request_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_map_pool_types_bool_exp} +where: e_scrim_request_statuses_bool_exp} -/** columns and relationships of "e_match_clip_visibility" */ -export interface e_match_clip_visibilityGenqlSelection{ +/** columns and relationships of "e_server_types" */ +export interface e_server_typesGenqlSelection{ description?: boolean | number /** An array relationship */ - match_clips?: (match_clipsGenqlSelection & { __args?: { + servers?: (serversGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_clips_select_column[] | null), + distinct_on?: (servers_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?: (match_clips_order_by[] | null), + order_by?: (servers_order_by[] | null), /** filter the rows returned */ - where?: (match_clips_bool_exp | null)} }) + where?: (servers_bool_exp | null)} }) /** An aggregate relationship */ - match_clips_aggregate?: (match_clips_aggregateGenqlSelection & { __args?: { + servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_clips_select_column[] | null), + distinct_on?: (servers_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?: (match_clips_order_by[] | null), + order_by?: (servers_order_by[] | null), /** filter the rows returned */ - where?: (match_clips_bool_exp | null)} }) + where?: (servers_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_match_clip_visibility" */ -export interface e_match_clip_visibility_aggregateGenqlSelection{ - aggregate?: e_match_clip_visibility_aggregate_fieldsGenqlSelection - nodes?: e_match_clip_visibilityGenqlSelection +/** aggregated selection of "e_server_types" */ +export interface e_server_types_aggregateGenqlSelection{ + aggregate?: e_server_types_aggregate_fieldsGenqlSelection + nodes?: e_server_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_match_clip_visibility" */ -export interface e_match_clip_visibility_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_match_clip_visibility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_match_clip_visibility_max_fieldsGenqlSelection - min?: e_match_clip_visibility_min_fieldsGenqlSelection +/** aggregate fields of "e_server_types" */ +export interface e_server_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_server_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_server_types_max_fieldsGenqlSelection + min?: e_server_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_match_clip_visibility". All fields are combined with a logical 'AND'. */ -export interface e_match_clip_visibility_bool_exp {_and?: (e_match_clip_visibility_bool_exp[] | null),_not?: (e_match_clip_visibility_bool_exp | null),_or?: (e_match_clip_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),match_clips?: (match_clips_bool_exp | null),match_clips_aggregate?: (match_clips_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_server_types". All fields are combined with a logical 'AND'. */ +export interface e_server_types_bool_exp {_and?: (e_server_types_bool_exp[] | null),_not?: (e_server_types_bool_exp | null),_or?: (e_server_types_bool_exp[] | null),description?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_match_clip_visibility_enum". All fields are combined with logical 'AND'. */ -export interface e_match_clip_visibility_enum_comparison_exp {_eq?: (e_match_clip_visibility_enum | null),_in?: (e_match_clip_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_clip_visibility_enum | null),_nin?: (e_match_clip_visibility_enum[] | null)} +/** Boolean expression to compare columns of type "e_server_types_enum". All fields are combined with logical 'AND'. */ +export interface e_server_types_enum_comparison_exp {_eq?: (e_server_types_enum | null),_in?: (e_server_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_server_types_enum | null),_nin?: (e_server_types_enum[] | null)} -/** input type for inserting data into table "e_match_clip_visibility" */ -export interface e_match_clip_visibility_insert_input {description?: (Scalars['String'] | null),match_clips?: (match_clips_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_server_types" */ +export interface e_server_types_insert_input {description?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_match_clip_visibility_max_fieldsGenqlSelection{ +export interface e_server_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37225,7 +40452,7 @@ export interface e_match_clip_visibility_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_clip_visibility_min_fieldsGenqlSelection{ +export interface e_server_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37233,56 +40460,56 @@ export interface e_match_clip_visibility_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_match_clip_visibility" */ -export interface e_match_clip_visibility_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_server_types" */ +export interface e_server_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_match_clip_visibilityGenqlSelection + returning?: e_server_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_match_clip_visibility" */ -export interface e_match_clip_visibility_on_conflict {constraint: e_match_clip_visibility_constraint,update_columns?: e_match_clip_visibility_update_column[],where?: (e_match_clip_visibility_bool_exp | null)} +/** on_conflict condition type for table "e_server_types" */ +export interface e_server_types_on_conflict {constraint: e_server_types_constraint,update_columns?: e_server_types_update_column[],where?: (e_server_types_bool_exp | null)} -/** Ordering options when selecting data from "e_match_clip_visibility". */ -export interface e_match_clip_visibility_order_by {description?: (order_by | null),match_clips_aggregate?: (match_clips_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_server_types". */ +export interface e_server_types_order_by {description?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_match_clip_visibility */ -export interface e_match_clip_visibility_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_server_types */ +export interface e_server_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_match_clip_visibility" */ -export interface e_match_clip_visibility_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_server_types" */ +export interface e_server_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_match_clip_visibility" */ -export interface e_match_clip_visibility_stream_cursor_input { +/** Streaming cursor of the table "e_server_types" */ +export interface e_server_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_match_clip_visibility_stream_cursor_value_input, +initial_value: e_server_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_match_clip_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_server_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_match_clip_visibility_updates { +export interface e_server_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_clip_visibility_set_input | null), +_set?: (e_server_types_set_input | null), /** filter the rows which have to be updated */ -where: e_match_clip_visibility_bool_exp} +where: e_server_types_bool_exp} -/** columns and relationships of "e_match_map_status" */ -export interface e_match_map_statusGenqlSelection{ +/** columns and relationships of "e_sides" */ +export interface e_sidesGenqlSelection{ description?: boolean | number /** An array relationship */ - match_maps?: (match_mapsGenqlSelection & { __args?: { + match_map_lineup_1?: (match_mapsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (match_maps_select_column[] | null), /** limit the number of rows returned */ @@ -37294,7 +40521,31 @@ export interface e_match_map_statusGenqlSelection{ /** filter the rows returned */ where?: (match_maps_bool_exp | null)} }) /** An aggregate relationship */ - match_maps_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { + match_map_lineup_1_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + /** An array relationship */ + match_map_lineup_2?: (match_mapsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), + /** filter the rows returned */ + where?: (match_maps_bool_exp | null)} }) + /** An aggregate relationship */ + match_map_lineup_2_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (match_maps_select_column[] | null), /** limit the number of rows returned */ @@ -37311,39 +40562,39 @@ export interface e_match_map_statusGenqlSelection{ } -/** aggregated selection of "e_match_map_status" */ -export interface e_match_map_status_aggregateGenqlSelection{ - aggregate?: e_match_map_status_aggregate_fieldsGenqlSelection - nodes?: e_match_map_statusGenqlSelection +/** aggregated selection of "e_sides" */ +export interface e_sides_aggregateGenqlSelection{ + aggregate?: e_sides_aggregate_fieldsGenqlSelection + nodes?: e_sidesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_match_map_status" */ -export interface e_match_map_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_match_map_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_match_map_status_max_fieldsGenqlSelection - min?: e_match_map_status_min_fieldsGenqlSelection +/** aggregate fields of "e_sides" */ +export interface e_sides_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_sides_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_sides_max_fieldsGenqlSelection + min?: e_sides_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_match_map_status". All fields are combined with a logical 'AND'. */ -export interface e_match_map_status_bool_exp {_and?: (e_match_map_status_bool_exp[] | null),_not?: (e_match_map_status_bool_exp | null),_or?: (e_match_map_status_bool_exp[] | null),description?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_sides". All fields are combined with a logical 'AND'. */ +export interface e_sides_bool_exp {_and?: (e_sides_bool_exp[] | null),_not?: (e_sides_bool_exp | null),_or?: (e_sides_bool_exp[] | null),description?: (String_comparison_exp | null),match_map_lineup_1?: (match_maps_bool_exp | null),match_map_lineup_1_aggregate?: (match_maps_aggregate_bool_exp | null),match_map_lineup_2?: (match_maps_bool_exp | null),match_map_lineup_2_aggregate?: (match_maps_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_match_map_status_enum". All fields are combined with logical 'AND'. */ -export interface e_match_map_status_enum_comparison_exp {_eq?: (e_match_map_status_enum | null),_in?: (e_match_map_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_map_status_enum | null),_nin?: (e_match_map_status_enum[] | null)} +/** Boolean expression to compare columns of type "e_sides_enum". All fields are combined with logical 'AND'. */ +export interface e_sides_enum_comparison_exp {_eq?: (e_sides_enum | null),_in?: (e_sides_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_sides_enum | null),_nin?: (e_sides_enum[] | null)} -/** input type for inserting data into table "e_match_map_status" */ -export interface e_match_map_status_insert_input {description?: (Scalars['String'] | null),match_maps?: (match_maps_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_sides" */ +export interface e_sides_insert_input {description?: (Scalars['String'] | null),match_map_lineup_1?: (match_maps_arr_rel_insert_input | null),match_map_lineup_2?: (match_maps_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_match_map_status_max_fieldsGenqlSelection{ +export interface e_sides_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37352,7 +40603,7 @@ export interface e_match_map_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_map_status_min_fieldsGenqlSelection{ +export interface e_sides_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37360,59 +40611,53 @@ export interface e_match_map_status_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_match_map_status" */ -export interface e_match_map_status_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_sides" */ +export interface e_sides_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_match_map_statusGenqlSelection + returning?: e_sidesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_match_map_status" */ -export interface e_match_map_status_obj_rel_insert_input {data: e_match_map_status_insert_input, -/** upsert condition */ -on_conflict?: (e_match_map_status_on_conflict | null)} - - -/** on_conflict condition type for table "e_match_map_status" */ -export interface e_match_map_status_on_conflict {constraint: e_match_map_status_constraint,update_columns?: e_match_map_status_update_column[],where?: (e_match_map_status_bool_exp | null)} +/** on_conflict condition type for table "e_sides" */ +export interface e_sides_on_conflict {constraint: e_sides_constraint,update_columns?: e_sides_update_column[],where?: (e_sides_bool_exp | null)} -/** Ordering options when selecting data from "e_match_map_status". */ -export interface e_match_map_status_order_by {description?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_sides". */ +export interface e_sides_order_by {description?: (order_by | null),match_map_lineup_1_aggregate?: (match_maps_aggregate_order_by | null),match_map_lineup_2_aggregate?: (match_maps_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_match_map_status */ -export interface e_match_map_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_sides */ +export interface e_sides_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_match_map_status" */ -export interface e_match_map_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_sides" */ +export interface e_sides_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_match_map_status" */ -export interface e_match_map_status_stream_cursor_input { +/** Streaming cursor of the table "e_sides" */ +export interface e_sides_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_match_map_status_stream_cursor_value_input, +initial_value: e_sides_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_match_map_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_sides_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_match_map_status_updates { +export interface e_sides_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_map_status_set_input | null), +_set?: (e_sides_set_input | null), /** filter the rows which have to be updated */ -where: e_match_map_status_bool_exp} +where: e_sides_bool_exp} -/** columns and relationships of "e_match_mode" */ -export interface e_match_modeGenqlSelection{ +/** columns and relationships of "e_system_alert_types" */ +export interface e_system_alert_typesGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37420,39 +40665,39 @@ export interface e_match_modeGenqlSelection{ } -/** aggregated selection of "e_match_mode" */ -export interface e_match_mode_aggregateGenqlSelection{ - aggregate?: e_match_mode_aggregate_fieldsGenqlSelection - nodes?: e_match_modeGenqlSelection +/** aggregated selection of "e_system_alert_types" */ +export interface e_system_alert_types_aggregateGenqlSelection{ + aggregate?: e_system_alert_types_aggregate_fieldsGenqlSelection + nodes?: e_system_alert_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_match_mode" */ -export interface e_match_mode_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_match_mode_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_match_mode_max_fieldsGenqlSelection - min?: e_match_mode_min_fieldsGenqlSelection +/** aggregate fields of "e_system_alert_types" */ +export interface e_system_alert_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_system_alert_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_system_alert_types_max_fieldsGenqlSelection + min?: e_system_alert_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_match_mode". All fields are combined with a logical 'AND'. */ -export interface e_match_mode_bool_exp {_and?: (e_match_mode_bool_exp[] | null),_not?: (e_match_mode_bool_exp | null),_or?: (e_match_mode_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_system_alert_types". All fields are combined with a logical 'AND'. */ +export interface e_system_alert_types_bool_exp {_and?: (e_system_alert_types_bool_exp[] | null),_not?: (e_system_alert_types_bool_exp | null),_or?: (e_system_alert_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_match_mode_enum". All fields are combined with logical 'AND'. */ -export interface e_match_mode_enum_comparison_exp {_eq?: (e_match_mode_enum | null),_in?: (e_match_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_mode_enum | null),_nin?: (e_match_mode_enum[] | null)} +/** Boolean expression to compare columns of type "e_system_alert_types_enum". All fields are combined with logical 'AND'. */ +export interface e_system_alert_types_enum_comparison_exp {_eq?: (e_system_alert_types_enum | null),_in?: (e_system_alert_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_system_alert_types_enum | null),_nin?: (e_system_alert_types_enum[] | null)} -/** input type for inserting data into table "e_match_mode" */ -export interface e_match_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_system_alert_types" */ +export interface e_system_alert_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_match_mode_max_fieldsGenqlSelection{ +export interface e_system_alert_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37461,7 +40706,7 @@ export interface e_match_mode_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_mode_min_fieldsGenqlSelection{ +export interface e_system_alert_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37469,117 +40714,141 @@ export interface e_match_mode_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_match_mode" */ -export interface e_match_mode_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_system_alert_types" */ +export interface e_system_alert_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_match_modeGenqlSelection + returning?: e_system_alert_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_match_mode" */ -export interface e_match_mode_on_conflict {constraint: e_match_mode_constraint,update_columns?: e_match_mode_update_column[],where?: (e_match_mode_bool_exp | null)} +/** on_conflict condition type for table "e_system_alert_types" */ +export interface e_system_alert_types_on_conflict {constraint: e_system_alert_types_constraint,update_columns?: e_system_alert_types_update_column[],where?: (e_system_alert_types_bool_exp | null)} -/** Ordering options when selecting data from "e_match_mode". */ -export interface e_match_mode_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_system_alert_types". */ +export interface e_system_alert_types_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_match_mode */ -export interface e_match_mode_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_system_alert_types */ +export interface e_system_alert_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_match_mode" */ -export interface e_match_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_system_alert_types" */ +export interface e_system_alert_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_match_mode" */ -export interface e_match_mode_stream_cursor_input { +/** Streaming cursor of the table "e_system_alert_types" */ +export interface e_system_alert_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_match_mode_stream_cursor_value_input, +initial_value: e_system_alert_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_match_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_system_alert_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_match_mode_updates { +export interface e_system_alert_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_mode_set_input | null), +_set?: (e_system_alert_types_set_input | null), /** filter the rows which have to be updated */ -where: e_match_mode_bool_exp} +where: e_system_alert_types_bool_exp} -/** columns and relationships of "e_match_status" */ -export interface e_match_statusGenqlSelection{ +/** columns and relationships of "e_team_roles" */ +export interface e_team_rolesGenqlSelection{ description?: boolean | number /** An array relationship */ - matches?: (matchesGenqlSelection & { __args?: { + team_rosters?: (team_rosterGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (matches_select_column[] | null), + distinct_on?: (team_roster_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?: (matches_order_by[] | null), + order_by?: (team_roster_order_by[] | null), /** filter the rows returned */ - where?: (matches_bool_exp | null)} }) + where?: (team_roster_bool_exp | null)} }) /** An aggregate relationship */ - matches_aggregate?: (matches_aggregateGenqlSelection & { __args?: { + team_rosters_aggregate?: (team_roster_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (matches_select_column[] | null), + distinct_on?: (team_roster_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?: (matches_order_by[] | null), + order_by?: (team_roster_order_by[] | null), /** filter the rows returned */ - where?: (matches_bool_exp | null)} }) + where?: (team_roster_bool_exp | null)} }) + /** An array relationship */ + tournament_team_rosters?: (tournament_team_rosterGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_roster_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_team_roster_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_roster_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_team_rosters_aggregate?: (tournament_team_roster_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_team_roster_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_team_roster_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_team_roster_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_match_status" */ -export interface e_match_status_aggregateGenqlSelection{ - aggregate?: e_match_status_aggregate_fieldsGenqlSelection - nodes?: e_match_statusGenqlSelection +/** aggregated selection of "e_team_roles" */ +export interface e_team_roles_aggregateGenqlSelection{ + aggregate?: e_team_roles_aggregate_fieldsGenqlSelection + nodes?: e_team_rolesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_match_status" */ -export interface e_match_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_match_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_match_status_max_fieldsGenqlSelection - min?: e_match_status_min_fieldsGenqlSelection +/** aggregate fields of "e_team_roles" */ +export interface e_team_roles_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_team_roles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_team_roles_max_fieldsGenqlSelection + min?: e_team_roles_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_match_status". All fields are combined with a logical 'AND'. */ -export interface e_match_status_bool_exp {_and?: (e_match_status_bool_exp[] | null),_not?: (e_match_status_bool_exp | null),_or?: (e_match_status_bool_exp[] | null),description?: (String_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_team_roles". All fields are combined with a logical 'AND'. */ +export interface e_team_roles_bool_exp {_and?: (e_team_roles_bool_exp[] | null),_not?: (e_team_roles_bool_exp | null),_or?: (e_team_roles_bool_exp[] | null),description?: (String_comparison_exp | null),team_rosters?: (team_roster_bool_exp | null),team_rosters_aggregate?: (team_roster_aggregate_bool_exp | null),tournament_team_rosters?: (tournament_team_roster_bool_exp | null),tournament_team_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_match_status_enum". All fields are combined with logical 'AND'. */ -export interface e_match_status_enum_comparison_exp {_eq?: (e_match_status_enum | null),_in?: (e_match_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_status_enum | null),_nin?: (e_match_status_enum[] | null)} +/** Boolean expression to compare columns of type "e_team_roles_enum". All fields are combined with logical 'AND'. */ +export interface e_team_roles_enum_comparison_exp {_eq?: (e_team_roles_enum | null),_in?: (e_team_roles_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_team_roles_enum | null),_nin?: (e_team_roles_enum[] | null)} -/** input type for inserting data into table "e_match_status" */ -export interface e_match_status_insert_input {description?: (Scalars['String'] | null),matches?: (matches_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_team_roles" */ +export interface e_team_roles_insert_input {description?: (Scalars['String'] | null),team_rosters?: (team_roster_arr_rel_insert_input | null),tournament_team_rosters?: (tournament_team_roster_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_match_status_max_fieldsGenqlSelection{ +export interface e_team_roles_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37588,7 +40857,7 @@ export interface e_match_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_status_min_fieldsGenqlSelection{ +export interface e_team_roles_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37596,123 +40865,99 @@ export interface e_match_status_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_match_status" */ -export interface e_match_status_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_team_roles" */ +export interface e_team_roles_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_match_statusGenqlSelection + returning?: e_team_rolesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_match_status" */ -export interface e_match_status_obj_rel_insert_input {data: e_match_status_insert_input, +/** input type for inserting object relation for remote table "e_team_roles" */ +export interface e_team_roles_obj_rel_insert_input {data: e_team_roles_insert_input, /** upsert condition */ -on_conflict?: (e_match_status_on_conflict | null)} +on_conflict?: (e_team_roles_on_conflict | null)} -/** on_conflict condition type for table "e_match_status" */ -export interface e_match_status_on_conflict {constraint: e_match_status_constraint,update_columns?: e_match_status_update_column[],where?: (e_match_status_bool_exp | null)} +/** on_conflict condition type for table "e_team_roles" */ +export interface e_team_roles_on_conflict {constraint: e_team_roles_constraint,update_columns?: e_team_roles_update_column[],where?: (e_team_roles_bool_exp | null)} -/** Ordering options when selecting data from "e_match_status". */ -export interface e_match_status_order_by {description?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_team_roles". */ +export interface e_team_roles_order_by {description?: (order_by | null),team_rosters_aggregate?: (team_roster_aggregate_order_by | null),tournament_team_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_match_status */ -export interface e_match_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_team_roles */ +export interface e_team_roles_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_match_status" */ -export interface e_match_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_team_roles" */ +export interface e_team_roles_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_match_status" */ -export interface e_match_status_stream_cursor_input { +/** Streaming cursor of the table "e_team_roles" */ +export interface e_team_roles_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_match_status_stream_cursor_value_input, +initial_value: e_team_roles_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_match_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_team_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_match_status_updates { +export interface e_team_roles_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_status_set_input | null), +_set?: (e_team_roles_set_input | null), /** filter the rows which have to be updated */ -where: e_match_status_bool_exp} +where: e_team_roles_bool_exp} -/** columns and relationships of "e_match_types" */ -export interface e_match_typesGenqlSelection{ +/** columns and relationships of "e_team_roster_statuses" */ +export interface e_team_roster_statusesGenqlSelection{ description?: boolean | number - /** An array relationship */ - maps?: (mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (maps_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?: (maps_order_by[] | null), - /** filter the rows returned */ - where?: (maps_bool_exp | null)} }) - /** An aggregate relationship */ - maps_aggregate?: (maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (maps_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?: (maps_order_by[] | null), - /** filter the rows returned */ - where?: (maps_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_match_types" */ -export interface e_match_types_aggregateGenqlSelection{ - aggregate?: e_match_types_aggregate_fieldsGenqlSelection - nodes?: e_match_typesGenqlSelection +/** aggregated selection of "e_team_roster_statuses" */ +export interface e_team_roster_statuses_aggregateGenqlSelection{ + aggregate?: e_team_roster_statuses_aggregate_fieldsGenqlSelection + nodes?: e_team_roster_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_match_types" */ -export interface e_match_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_match_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_match_types_max_fieldsGenqlSelection - min?: e_match_types_min_fieldsGenqlSelection +/** aggregate fields of "e_team_roster_statuses" */ +export interface e_team_roster_statuses_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_team_roster_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_team_roster_statuses_max_fieldsGenqlSelection + min?: e_team_roster_statuses_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_match_types". All fields are combined with a logical 'AND'. */ -export interface e_match_types_bool_exp {_and?: (e_match_types_bool_exp[] | null),_not?: (e_match_types_bool_exp | null),_or?: (e_match_types_bool_exp[] | null),description?: (String_comparison_exp | null),maps?: (maps_bool_exp | null),maps_aggregate?: (maps_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_team_roster_statuses". All fields are combined with a logical 'AND'. */ +export interface e_team_roster_statuses_bool_exp {_and?: (e_team_roster_statuses_bool_exp[] | null),_not?: (e_team_roster_statuses_bool_exp | null),_or?: (e_team_roster_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_match_types_enum". All fields are combined with logical 'AND'. */ -export interface e_match_types_enum_comparison_exp {_eq?: (e_match_types_enum | null),_in?: (e_match_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_match_types_enum | null),_nin?: (e_match_types_enum[] | null)} +/** Boolean expression to compare columns of type "e_team_roster_statuses_enum". All fields are combined with logical 'AND'. */ +export interface e_team_roster_statuses_enum_comparison_exp {_eq?: (e_team_roster_statuses_enum | null),_in?: (e_team_roster_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_team_roster_statuses_enum | null),_nin?: (e_team_roster_statuses_enum[] | null)} -/** input type for inserting data into table "e_match_types" */ -export interface e_match_types_insert_input {description?: (Scalars['String'] | null),maps?: (maps_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_team_roster_statuses" */ +export interface e_team_roster_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_match_types_max_fieldsGenqlSelection{ +export interface e_team_roster_statuses_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37721,7 +40966,7 @@ export interface e_match_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_match_types_min_fieldsGenqlSelection{ +export interface e_team_roster_statuses_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37729,59 +40974,53 @@ export interface e_match_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_match_types" */ -export interface e_match_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_team_roster_statuses" */ +export interface e_team_roster_statuses_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_match_typesGenqlSelection + returning?: e_team_roster_statusesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_match_types" */ -export interface e_match_types_obj_rel_insert_input {data: e_match_types_insert_input, -/** upsert condition */ -on_conflict?: (e_match_types_on_conflict | null)} - - -/** on_conflict condition type for table "e_match_types" */ -export interface e_match_types_on_conflict {constraint: e_match_types_constraint,update_columns?: e_match_types_update_column[],where?: (e_match_types_bool_exp | null)} +/** on_conflict condition type for table "e_team_roster_statuses" */ +export interface e_team_roster_statuses_on_conflict {constraint: e_team_roster_statuses_constraint,update_columns?: e_team_roster_statuses_update_column[],where?: (e_team_roster_statuses_bool_exp | null)} -/** Ordering options when selecting data from "e_match_types". */ -export interface e_match_types_order_by {description?: (order_by | null),maps_aggregate?: (maps_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_team_roster_statuses". */ +export interface e_team_roster_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_match_types */ -export interface e_match_types_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_team_roster_statuses */ +export interface e_team_roster_statuses_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_match_types" */ -export interface e_match_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_team_roster_statuses" */ +export interface e_team_roster_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_match_types" */ -export interface e_match_types_stream_cursor_input { +/** Streaming cursor of the table "e_team_roster_statuses" */ +export interface e_team_roster_statuses_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_match_types_stream_cursor_value_input, +initial_value: e_team_roster_statuses_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_match_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_team_roster_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_match_types_updates { +export interface e_team_roster_statuses_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_match_types_set_input | null), +_set?: (e_team_roster_statuses_set_input | null), /** filter the rows which have to be updated */ -where: e_match_types_bool_exp} +where: e_team_roster_statuses_bool_exp} -/** columns and relationships of "e_notification_types" */ -export interface e_notification_typesGenqlSelection{ +/** columns and relationships of "e_timeout_settings" */ +export interface e_timeout_settingsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37789,39 +41028,39 @@ export interface e_notification_typesGenqlSelection{ } -/** aggregated selection of "e_notification_types" */ -export interface e_notification_types_aggregateGenqlSelection{ - aggregate?: e_notification_types_aggregate_fieldsGenqlSelection - nodes?: e_notification_typesGenqlSelection +/** aggregated selection of "e_timeout_settings" */ +export interface e_timeout_settings_aggregateGenqlSelection{ + aggregate?: e_timeout_settings_aggregate_fieldsGenqlSelection + nodes?: e_timeout_settingsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_notification_types" */ -export interface e_notification_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_notification_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_notification_types_max_fieldsGenqlSelection - min?: e_notification_types_min_fieldsGenqlSelection +/** aggregate fields of "e_timeout_settings" */ +export interface e_timeout_settings_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_timeout_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_timeout_settings_max_fieldsGenqlSelection + min?: e_timeout_settings_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_notification_types". All fields are combined with a logical 'AND'. */ -export interface e_notification_types_bool_exp {_and?: (e_notification_types_bool_exp[] | null),_not?: (e_notification_types_bool_exp | null),_or?: (e_notification_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_timeout_settings". All fields are combined with a logical 'AND'. */ +export interface e_timeout_settings_bool_exp {_and?: (e_timeout_settings_bool_exp[] | null),_not?: (e_timeout_settings_bool_exp | null),_or?: (e_timeout_settings_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_notification_types_enum". All fields are combined with logical 'AND'. */ -export interface e_notification_types_enum_comparison_exp {_eq?: (e_notification_types_enum | null),_in?: (e_notification_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_notification_types_enum | null),_nin?: (e_notification_types_enum[] | null)} +/** Boolean expression to compare columns of type "e_timeout_settings_enum". All fields are combined with logical 'AND'. */ +export interface e_timeout_settings_enum_comparison_exp {_eq?: (e_timeout_settings_enum | null),_in?: (e_timeout_settings_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_timeout_settings_enum | null),_nin?: (e_timeout_settings_enum[] | null)} -/** input type for inserting data into table "e_notification_types" */ -export interface e_notification_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_timeout_settings" */ +export interface e_timeout_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_notification_types_max_fieldsGenqlSelection{ +export interface e_timeout_settings_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37830,7 +41069,7 @@ export interface e_notification_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_notification_types_min_fieldsGenqlSelection{ +export interface e_timeout_settings_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37838,117 +41077,117 @@ export interface e_notification_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_notification_types" */ -export interface e_notification_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_timeout_settings" */ +export interface e_timeout_settings_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_notification_typesGenqlSelection + returning?: e_timeout_settingsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_notification_types" */ -export interface e_notification_types_on_conflict {constraint: e_notification_types_constraint,update_columns?: e_notification_types_update_column[],where?: (e_notification_types_bool_exp | null)} +/** on_conflict condition type for table "e_timeout_settings" */ +export interface e_timeout_settings_on_conflict {constraint: e_timeout_settings_constraint,update_columns?: e_timeout_settings_update_column[],where?: (e_timeout_settings_bool_exp | null)} -/** Ordering options when selecting data from "e_notification_types". */ -export interface e_notification_types_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_timeout_settings". */ +export interface e_timeout_settings_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_notification_types */ -export interface e_notification_types_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_timeout_settings */ +export interface e_timeout_settings_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_notification_types" */ -export interface e_notification_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_timeout_settings" */ +export interface e_timeout_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_notification_types" */ -export interface e_notification_types_stream_cursor_input { +/** Streaming cursor of the table "e_timeout_settings" */ +export interface e_timeout_settings_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_notification_types_stream_cursor_value_input, +initial_value: e_timeout_settings_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_notification_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_timeout_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_notification_types_updates { +export interface e_timeout_settings_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_notification_types_set_input | null), +_set?: (e_timeout_settings_set_input | null), /** filter the rows which have to be updated */ -where: e_notification_types_bool_exp} +where: e_timeout_settings_bool_exp} -/** columns and relationships of "e_objective_types" */ -export interface e_objective_typesGenqlSelection{ +/** columns and relationships of "e_tournament_stage_types" */ +export interface e_tournament_stage_typesGenqlSelection{ description?: boolean | number /** An array relationship */ - player_objectives?: (player_objectivesGenqlSelection & { __args?: { + tournament_stages?: (tournament_stagesGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (player_objectives_select_column[] | null), + distinct_on?: (tournament_stages_select_column[] | null), /** limit the number of rows returned */ limit?: (Scalars['Int'] | null), /** skip the first n rows. Use only with order_by */ offset?: (Scalars['Int'] | null), /** sort the rows by one or more columns */ - order_by?: (player_objectives_order_by[] | null), + order_by?: (tournament_stages_order_by[] | null), /** filter the rows returned */ - where?: (player_objectives_bool_exp | null)} }) + where?: (tournament_stages_bool_exp | null)} }) /** An aggregate relationship */ - player_objectives_aggregate?: (player_objectives_aggregateGenqlSelection & { __args?: { + tournament_stages_aggregate?: (tournament_stages_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (player_objectives_select_column[] | null), + distinct_on?: (tournament_stages_select_column[] | null), /** limit the number of rows returned */ limit?: (Scalars['Int'] | null), /** skip the first n rows. Use only with order_by */ offset?: (Scalars['Int'] | null), /** sort the rows by one or more columns */ - order_by?: (player_objectives_order_by[] | null), + order_by?: (tournament_stages_order_by[] | null), /** filter the rows returned */ - where?: (player_objectives_bool_exp | null)} }) + where?: (tournament_stages_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_objective_types" */ -export interface e_objective_types_aggregateGenqlSelection{ - aggregate?: e_objective_types_aggregate_fieldsGenqlSelection - nodes?: e_objective_typesGenqlSelection +/** aggregated selection of "e_tournament_stage_types" */ +export interface e_tournament_stage_types_aggregateGenqlSelection{ + aggregate?: e_tournament_stage_types_aggregate_fieldsGenqlSelection + nodes?: e_tournament_stage_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_objective_types" */ -export interface e_objective_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_objective_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_objective_types_max_fieldsGenqlSelection - min?: e_objective_types_min_fieldsGenqlSelection +/** aggregate fields of "e_tournament_stage_types" */ +export interface e_tournament_stage_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_tournament_stage_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_tournament_stage_types_max_fieldsGenqlSelection + min?: e_tournament_stage_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_objective_types". All fields are combined with a logical 'AND'. */ -export interface e_objective_types_bool_exp {_and?: (e_objective_types_bool_exp[] | null),_not?: (e_objective_types_bool_exp | null),_or?: (e_objective_types_bool_exp[] | null),description?: (String_comparison_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_tournament_stage_types". All fields are combined with a logical 'AND'. */ +export interface e_tournament_stage_types_bool_exp {_and?: (e_tournament_stage_types_bool_exp[] | null),_not?: (e_tournament_stage_types_bool_exp | null),_or?: (e_tournament_stage_types_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_stages?: (tournament_stages_bool_exp | null),tournament_stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_objective_types_enum". All fields are combined with logical 'AND'. */ -export interface e_objective_types_enum_comparison_exp {_eq?: (e_objective_types_enum | null),_in?: (e_objective_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_objective_types_enum | null),_nin?: (e_objective_types_enum[] | null)} +/** Boolean expression to compare columns of type "e_tournament_stage_types_enum". All fields are combined with logical 'AND'. */ +export interface e_tournament_stage_types_enum_comparison_exp {_eq?: (e_tournament_stage_types_enum | null),_in?: (e_tournament_stage_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_stage_types_enum | null),_nin?: (e_tournament_stage_types_enum[] | null)} -/** input type for inserting data into table "e_objective_types" */ -export interface e_objective_types_insert_input {description?: (Scalars['String'] | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_insert_input {description?: (Scalars['String'] | null),tournament_stages?: (tournament_stages_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_objective_types_max_fieldsGenqlSelection{ +export interface e_tournament_stage_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37957,7 +41196,7 @@ export interface e_objective_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_objective_types_min_fieldsGenqlSelection{ +export interface e_tournament_stage_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37965,93 +41204,123 @@ export interface e_objective_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_objective_types" */ -export interface e_objective_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_objective_typesGenqlSelection + returning?: e_tournament_stage_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_objective_types" */ -export interface e_objective_types_on_conflict {constraint: e_objective_types_constraint,update_columns?: e_objective_types_update_column[],where?: (e_objective_types_bool_exp | null)} +/** input type for inserting object relation for remote table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_obj_rel_insert_input {data: e_tournament_stage_types_insert_input, +/** upsert condition */ +on_conflict?: (e_tournament_stage_types_on_conflict | null)} -/** Ordering options when selecting data from "e_objective_types". */ -export interface e_objective_types_order_by {description?: (order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),value?: (order_by | null)} +/** on_conflict condition type for table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_on_conflict {constraint: e_tournament_stage_types_constraint,update_columns?: e_tournament_stage_types_update_column[],where?: (e_tournament_stage_types_bool_exp | null)} -/** primary key columns input for table: e_objective_types */ -export interface e_objective_types_pk_columns_input {value: Scalars['String']} +/** Ordering options when selecting data from "e_tournament_stage_types". */ +export interface e_tournament_stage_types_order_by {description?: (order_by | null),tournament_stages_aggregate?: (tournament_stages_aggregate_order_by | null),value?: (order_by | null)} -/** input type for updating data in table "e_objective_types" */ -export interface e_objective_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** primary key columns input for table: e_tournament_stage_types */ +export interface e_tournament_stage_types_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "e_objective_types" */ -export interface e_objective_types_stream_cursor_input { +/** input type for updating data in table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_stage_types" */ +export interface e_tournament_stage_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_objective_types_stream_cursor_value_input, +initial_value: e_tournament_stage_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_objective_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_tournament_stage_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_objective_types_updates { +export interface e_tournament_stage_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_objective_types_set_input | null), +_set?: (e_tournament_stage_types_set_input | null), /** filter the rows which have to be updated */ -where: e_objective_types_bool_exp} +where: e_tournament_stage_types_bool_exp} -/** columns and relationships of "e_player_roles" */ -export interface e_player_rolesGenqlSelection{ +/** columns and relationships of "e_tournament_status" */ +export interface e_tournament_statusGenqlSelection{ description?: boolean | number + /** An array relationship */ + tournaments?: (tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournaments_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?: (tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (tournaments_bool_exp | null)} }) + /** An aggregate relationship */ + tournaments_aggregate?: (tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournaments_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?: (tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (tournaments_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_player_roles" */ -export interface e_player_roles_aggregateGenqlSelection{ - aggregate?: e_player_roles_aggregate_fieldsGenqlSelection - nodes?: e_player_rolesGenqlSelection +/** aggregated selection of "e_tournament_status" */ +export interface e_tournament_status_aggregateGenqlSelection{ + aggregate?: e_tournament_status_aggregate_fieldsGenqlSelection + nodes?: e_tournament_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_player_roles" */ -export interface e_player_roles_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_player_roles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_player_roles_max_fieldsGenqlSelection - min?: e_player_roles_min_fieldsGenqlSelection +/** aggregate fields of "e_tournament_status" */ +export interface e_tournament_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_tournament_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_tournament_status_max_fieldsGenqlSelection + min?: e_tournament_status_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_player_roles". All fields are combined with a logical 'AND'. */ -export interface e_player_roles_bool_exp {_and?: (e_player_roles_bool_exp[] | null),_not?: (e_player_roles_bool_exp | null),_or?: (e_player_roles_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_tournament_status". All fields are combined with a logical 'AND'. */ +export interface e_tournament_status_bool_exp {_and?: (e_tournament_status_bool_exp[] | null),_not?: (e_tournament_status_bool_exp | null),_or?: (e_tournament_status_bool_exp[] | null),description?: (String_comparison_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_player_roles_enum". All fields are combined with logical 'AND'. */ -export interface e_player_roles_enum_comparison_exp {_eq?: (e_player_roles_enum | null),_in?: (e_player_roles_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_player_roles_enum | null),_nin?: (e_player_roles_enum[] | null)} +/** Boolean expression to compare columns of type "e_tournament_status_enum". All fields are combined with logical 'AND'. */ +export interface e_tournament_status_enum_comparison_exp {_eq?: (e_tournament_status_enum | null),_in?: (e_tournament_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_status_enum | null),_nin?: (e_tournament_status_enum[] | null)} -/** input type for inserting data into table "e_player_roles" */ -export interface e_player_roles_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_tournament_status" */ +export interface e_tournament_status_insert_input {description?: (Scalars['String'] | null),tournaments?: (tournaments_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_player_roles_max_fieldsGenqlSelection{ +export interface e_tournament_status_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38060,7 +41329,7 @@ export interface e_player_roles_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_player_roles_min_fieldsGenqlSelection{ +export interface e_tournament_status_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38068,93 +41337,123 @@ export interface e_player_roles_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_player_roles" */ -export interface e_player_roles_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_tournament_status" */ +export interface e_tournament_status_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_player_rolesGenqlSelection + returning?: e_tournament_statusGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_player_roles" */ -export interface e_player_roles_on_conflict {constraint: e_player_roles_constraint,update_columns?: e_player_roles_update_column[],where?: (e_player_roles_bool_exp | null)} +/** input type for inserting object relation for remote table "e_tournament_status" */ +export interface e_tournament_status_obj_rel_insert_input {data: e_tournament_status_insert_input, +/** upsert condition */ +on_conflict?: (e_tournament_status_on_conflict | null)} -/** Ordering options when selecting data from "e_player_roles". */ -export interface e_player_roles_order_by {description?: (order_by | null),value?: (order_by | null)} +/** on_conflict condition type for table "e_tournament_status" */ +export interface e_tournament_status_on_conflict {constraint: e_tournament_status_constraint,update_columns?: e_tournament_status_update_column[],where?: (e_tournament_status_bool_exp | null)} -/** primary key columns input for table: e_player_roles */ -export interface e_player_roles_pk_columns_input {value: Scalars['String']} +/** Ordering options when selecting data from "e_tournament_status". */ +export interface e_tournament_status_order_by {description?: (order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),value?: (order_by | null)} -/** input type for updating data in table "e_player_roles" */ -export interface e_player_roles_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** primary key columns input for table: e_tournament_status */ +export interface e_tournament_status_pk_columns_input {value: Scalars['String']} -/** Streaming cursor of the table "e_player_roles" */ -export interface e_player_roles_stream_cursor_input { +/** input type for updating data in table "e_tournament_status" */ +export interface e_tournament_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_status" */ +export interface e_tournament_status_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_player_roles_stream_cursor_value_input, +initial_value: e_tournament_status_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_player_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_tournament_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_player_roles_updates { +export interface e_tournament_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_player_roles_set_input | null), +_set?: (e_tournament_status_set_input | null), /** filter the rows which have to be updated */ -where: e_player_roles_bool_exp} +where: e_tournament_status_bool_exp} -/** columns and relationships of "e_plugin_runtimes" */ -export interface e_plugin_runtimesGenqlSelection{ +/** columns and relationships of "e_utility_types" */ +export interface e_utility_typesGenqlSelection{ description?: boolean | number + /** An array relationship */ + player_utilities?: (player_utilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_utility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (player_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_utility_bool_exp | null)} }) + /** An aggregate relationship */ + player_utilities_aggregate?: (player_utility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (player_utility_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (player_utility_order_by[] | null), + /** filter the rows returned */ + where?: (player_utility_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_plugin_runtimes" */ -export interface e_plugin_runtimes_aggregateGenqlSelection{ - aggregate?: e_plugin_runtimes_aggregate_fieldsGenqlSelection - nodes?: e_plugin_runtimesGenqlSelection +/** aggregated selection of "e_utility_types" */ +export interface e_utility_types_aggregateGenqlSelection{ + aggregate?: e_utility_types_aggregate_fieldsGenqlSelection + nodes?: e_utility_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_plugin_runtimes" */ -export interface e_plugin_runtimes_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_plugin_runtimes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_plugin_runtimes_max_fieldsGenqlSelection - min?: e_plugin_runtimes_min_fieldsGenqlSelection +/** aggregate fields of "e_utility_types" */ +export interface e_utility_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_utility_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_utility_types_max_fieldsGenqlSelection + min?: e_utility_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_plugin_runtimes". All fields are combined with a logical 'AND'. */ -export interface e_plugin_runtimes_bool_exp {_and?: (e_plugin_runtimes_bool_exp[] | null),_not?: (e_plugin_runtimes_bool_exp | null),_or?: (e_plugin_runtimes_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_utility_types". All fields are combined with a logical 'AND'. */ +export interface e_utility_types_bool_exp {_and?: (e_utility_types_bool_exp[] | null),_not?: (e_utility_types_bool_exp | null),_or?: (e_utility_types_bool_exp[] | null),description?: (String_comparison_exp | null),player_utilities?: (player_utility_bool_exp | null),player_utilities_aggregate?: (player_utility_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_plugin_runtimes_enum". All fields are combined with logical 'AND'. */ -export interface e_plugin_runtimes_enum_comparison_exp {_eq?: (e_plugin_runtimes_enum | null),_in?: (e_plugin_runtimes_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_plugin_runtimes_enum | null),_nin?: (e_plugin_runtimes_enum[] | null)} +/** Boolean expression to compare columns of type "e_utility_types_enum". All fields are combined with logical 'AND'. */ +export interface e_utility_types_enum_comparison_exp {_eq?: (e_utility_types_enum | null),_in?: (e_utility_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_types_enum | null),_nin?: (e_utility_types_enum[] | null)} -/** input type for inserting data into table "e_plugin_runtimes" */ -export interface e_plugin_runtimes_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_utility_types" */ +export interface e_utility_types_insert_input {description?: (Scalars['String'] | null),player_utilities?: (player_utility_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_plugin_runtimes_max_fieldsGenqlSelection{ +export interface e_utility_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38163,7 +41462,7 @@ export interface e_plugin_runtimes_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_plugin_runtimes_min_fieldsGenqlSelection{ +export interface e_utility_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38171,93 +41470,117 @@ export interface e_plugin_runtimes_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_plugin_runtimes" */ -export interface e_plugin_runtimes_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_utility_types" */ +export interface e_utility_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_plugin_runtimesGenqlSelection + returning?: e_utility_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_plugin_runtimes" */ -export interface e_plugin_runtimes_on_conflict {constraint: e_plugin_runtimes_constraint,update_columns?: e_plugin_runtimes_update_column[],where?: (e_plugin_runtimes_bool_exp | null)} +/** on_conflict condition type for table "e_utility_types" */ +export interface e_utility_types_on_conflict {constraint: e_utility_types_constraint,update_columns?: e_utility_types_update_column[],where?: (e_utility_types_bool_exp | null)} -/** Ordering options when selecting data from "e_plugin_runtimes". */ -export interface e_plugin_runtimes_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_utility_types". */ +export interface e_utility_types_order_by {description?: (order_by | null),player_utilities_aggregate?: (player_utility_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_plugin_runtimes */ -export interface e_plugin_runtimes_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_utility_types */ +export interface e_utility_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_plugin_runtimes" */ -export interface e_plugin_runtimes_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_utility_types" */ +export interface e_utility_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_plugin_runtimes" */ -export interface e_plugin_runtimes_stream_cursor_input { +/** Streaming cursor of the table "e_utility_types" */ +export interface e_utility_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_plugin_runtimes_stream_cursor_value_input, +initial_value: e_utility_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_plugin_runtimes_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_utility_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_plugin_runtimes_updates { +export interface e_utility_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_plugin_runtimes_set_input | null), +_set?: (e_utility_types_set_input | null), /** filter the rows which have to be updated */ -where: e_plugin_runtimes_bool_exp} +where: e_utility_types_bool_exp} -/** columns and relationships of "e_ready_settings" */ -export interface e_ready_settingsGenqlSelection{ +/** columns and relationships of "e_veto_pick_types" */ +export interface e_veto_pick_typesGenqlSelection{ description?: boolean | number + /** An array relationship */ + match_veto_picks?: (match_map_veto_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_veto_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_map_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_veto_picks_bool_exp | null)} }) + /** An aggregate relationship */ + match_veto_picks_aggregate?: (match_map_veto_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (match_map_veto_picks_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (match_map_veto_picks_order_by[] | null), + /** filter the rows returned */ + where?: (match_map_veto_picks_bool_exp | null)} }) value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_ready_settings" */ -export interface e_ready_settings_aggregateGenqlSelection{ - aggregate?: e_ready_settings_aggregate_fieldsGenqlSelection - nodes?: e_ready_settingsGenqlSelection +/** aggregated selection of "e_veto_pick_types" */ +export interface e_veto_pick_types_aggregateGenqlSelection{ + aggregate?: e_veto_pick_types_aggregate_fieldsGenqlSelection + nodes?: e_veto_pick_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_ready_settings" */ -export interface e_ready_settings_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_ready_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_ready_settings_max_fieldsGenqlSelection - min?: e_ready_settings_min_fieldsGenqlSelection +/** aggregate fields of "e_veto_pick_types" */ +export interface e_veto_pick_types_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_veto_pick_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_veto_pick_types_max_fieldsGenqlSelection + min?: e_veto_pick_types_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_ready_settings". All fields are combined with a logical 'AND'. */ -export interface e_ready_settings_bool_exp {_and?: (e_ready_settings_bool_exp[] | null),_not?: (e_ready_settings_bool_exp | null),_or?: (e_ready_settings_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_veto_pick_types". All fields are combined with a logical 'AND'. */ +export interface e_veto_pick_types_bool_exp {_and?: (e_veto_pick_types_bool_exp[] | null),_not?: (e_veto_pick_types_bool_exp | null),_or?: (e_veto_pick_types_bool_exp[] | null),description?: (String_comparison_exp | null),match_veto_picks?: (match_map_veto_picks_bool_exp | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_ready_settings_enum". All fields are combined with logical 'AND'. */ -export interface e_ready_settings_enum_comparison_exp {_eq?: (e_ready_settings_enum | null),_in?: (e_ready_settings_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_ready_settings_enum | null),_nin?: (e_ready_settings_enum[] | null)} +/** Boolean expression to compare columns of type "e_veto_pick_types_enum". All fields are combined with logical 'AND'. */ +export interface e_veto_pick_types_enum_comparison_exp {_eq?: (e_veto_pick_types_enum | null),_in?: (e_veto_pick_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_veto_pick_types_enum | null),_nin?: (e_veto_pick_types_enum[] | null)} -/** input type for inserting data into table "e_ready_settings" */ -export interface e_ready_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_veto_pick_types" */ +export interface e_veto_pick_types_insert_input {description?: (Scalars['String'] | null),match_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_ready_settings_max_fieldsGenqlSelection{ +export interface e_veto_pick_types_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38266,7 +41589,7 @@ export interface e_ready_settings_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_ready_settings_min_fieldsGenqlSelection{ +export interface e_veto_pick_types_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38274,53 +41597,53 @@ export interface e_ready_settings_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_ready_settings" */ -export interface e_ready_settings_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_veto_pick_types" */ +export interface e_veto_pick_types_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_ready_settingsGenqlSelection + returning?: e_veto_pick_typesGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_ready_settings" */ -export interface e_ready_settings_on_conflict {constraint: e_ready_settings_constraint,update_columns?: e_ready_settings_update_column[],where?: (e_ready_settings_bool_exp | null)} +/** on_conflict condition type for table "e_veto_pick_types" */ +export interface e_veto_pick_types_on_conflict {constraint: e_veto_pick_types_constraint,update_columns?: e_veto_pick_types_update_column[],where?: (e_veto_pick_types_bool_exp | null)} -/** Ordering options when selecting data from "e_ready_settings". */ -export interface e_ready_settings_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_veto_pick_types". */ +export interface e_veto_pick_types_order_by {description?: (order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_ready_settings */ -export interface e_ready_settings_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_veto_pick_types */ +export interface e_veto_pick_types_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_ready_settings" */ -export interface e_ready_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_veto_pick_types" */ +export interface e_veto_pick_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_ready_settings" */ -export interface e_ready_settings_stream_cursor_input { +/** Streaming cursor of the table "e_veto_pick_types" */ +export interface e_veto_pick_types_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_ready_settings_stream_cursor_value_input, +initial_value: e_veto_pick_types_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_ready_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_veto_pick_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_ready_settings_updates { +export interface e_veto_pick_types_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_ready_settings_set_input | null), +_set?: (e_veto_pick_types_set_input | null), /** filter the rows which have to be updated */ -where: e_ready_settings_bool_exp} +where: e_veto_pick_types_bool_exp} -/** columns and relationships of "e_sanction_types" */ -export interface e_sanction_typesGenqlSelection{ +/** columns and relationships of "e_winning_reasons" */ +export interface e_winning_reasonsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38328,39 +41651,39 @@ export interface e_sanction_typesGenqlSelection{ } -/** aggregated selection of "e_sanction_types" */ -export interface e_sanction_types_aggregateGenqlSelection{ - aggregate?: e_sanction_types_aggregate_fieldsGenqlSelection - nodes?: e_sanction_typesGenqlSelection +/** aggregated selection of "e_winning_reasons" */ +export interface e_winning_reasons_aggregateGenqlSelection{ + aggregate?: e_winning_reasons_aggregate_fieldsGenqlSelection + nodes?: e_winning_reasonsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_sanction_types" */ -export interface e_sanction_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_sanction_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_sanction_types_max_fieldsGenqlSelection - min?: e_sanction_types_min_fieldsGenqlSelection +/** aggregate fields of "e_winning_reasons" */ +export interface e_winning_reasons_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_winning_reasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_winning_reasons_max_fieldsGenqlSelection + min?: e_winning_reasons_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_sanction_types". All fields are combined with a logical 'AND'. */ -export interface e_sanction_types_bool_exp {_and?: (e_sanction_types_bool_exp[] | null),_not?: (e_sanction_types_bool_exp | null),_or?: (e_sanction_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. */ +export interface e_winning_reasons_bool_exp {_and?: (e_winning_reasons_bool_exp[] | null),_not?: (e_winning_reasons_bool_exp | null),_or?: (e_winning_reasons_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_sanction_types_enum". All fields are combined with logical 'AND'. */ -export interface e_sanction_types_enum_comparison_exp {_eq?: (e_sanction_types_enum | null),_in?: (e_sanction_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_sanction_types_enum | null),_nin?: (e_sanction_types_enum[] | null)} +/** Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. */ +export interface e_winning_reasons_enum_comparison_exp {_eq?: (e_winning_reasons_enum | null),_in?: (e_winning_reasons_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_winning_reasons_enum | null),_nin?: (e_winning_reasons_enum[] | null)} -/** input type for inserting data into table "e_sanction_types" */ -export interface e_sanction_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_winning_reasons" */ +export interface e_winning_reasons_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_sanction_types_max_fieldsGenqlSelection{ +export interface e_winning_reasons_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38369,7 +41692,7 @@ export interface e_sanction_types_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_sanction_types_min_fieldsGenqlSelection{ +export interface e_winning_reasons_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -38377,1549 +41700,1780 @@ export interface e_sanction_types_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_sanction_types" */ -export interface e_sanction_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_winning_reasons" */ +export interface e_winning_reasons_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_sanction_typesGenqlSelection + returning?: e_winning_reasonsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_sanction_types" */ -export interface e_sanction_types_obj_rel_insert_input {data: e_sanction_types_insert_input, -/** upsert condition */ -on_conflict?: (e_sanction_types_on_conflict | null)} - - -/** on_conflict condition type for table "e_sanction_types" */ -export interface e_sanction_types_on_conflict {constraint: e_sanction_types_constraint,update_columns?: e_sanction_types_update_column[],where?: (e_sanction_types_bool_exp | null)} +/** on_conflict condition type for table "e_winning_reasons" */ +export interface e_winning_reasons_on_conflict {constraint: e_winning_reasons_constraint,update_columns?: e_winning_reasons_update_column[],where?: (e_winning_reasons_bool_exp | null)} -/** Ordering options when selecting data from "e_sanction_types". */ -export interface e_sanction_types_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_winning_reasons". */ +export interface e_winning_reasons_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_sanction_types */ -export interface e_sanction_types_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_winning_reasons */ +export interface e_winning_reasons_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_sanction_types" */ -export interface e_sanction_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_winning_reasons" */ +export interface e_winning_reasons_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_sanction_types" */ -export interface e_sanction_types_stream_cursor_input { +/** Streaming cursor of the table "e_winning_reasons" */ +export interface e_winning_reasons_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_sanction_types_stream_cursor_value_input, +initial_value: e_winning_reasons_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_sanction_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_winning_reasons_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_sanction_types_updates { +export interface e_winning_reasons_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_sanction_types_set_input | null), +_set?: (e_winning_reasons_set_input | null), /** filter the rows which have to be updated */ -where: e_sanction_types_bool_exp} +where: e_winning_reasons_bool_exp} -/** columns and relationships of "e_scrim_request_statuses" */ -export interface e_scrim_request_statusesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - scrim_requests?: (team_scrim_requestsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_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?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - /** An aggregate relationship */ - scrim_requests_aggregate?: (team_scrim_requests_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_scrim_requests_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?: (team_scrim_requests_order_by[] | null), - /** filter the rows returned */ - where?: (team_scrim_requests_bool_exp | null)} }) - value?: boolean | number +/** columns and relationships of "event_match_links" */ +export interface event_match_linksGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_aggregateGenqlSelection{ - aggregate?: e_scrim_request_statuses_aggregate_fieldsGenqlSelection - nodes?: e_scrim_request_statusesGenqlSelection +/** aggregated selection of "event_match_links" */ +export interface event_match_links_aggregateGenqlSelection{ + aggregate?: event_match_links_aggregate_fieldsGenqlSelection + nodes?: event_match_linksGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_scrim_request_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_scrim_request_statuses_max_fieldsGenqlSelection - min?: e_scrim_request_statuses_min_fieldsGenqlSelection +/** aggregate fields of "event_match_links" */ +export interface event_match_links_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (event_match_links_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_match_links_max_fieldsGenqlSelection + min?: event_match_links_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_scrim_request_statuses". All fields are combined with a logical 'AND'. */ -export interface e_scrim_request_statuses_bool_exp {_and?: (e_scrim_request_statuses_bool_exp[] | null),_not?: (e_scrim_request_statuses_bool_exp | null),_or?: (e_scrim_request_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),scrim_requests?: (team_scrim_requests_bool_exp | null),scrim_requests_aggregate?: (team_scrim_requests_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_scrim_request_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_scrim_request_statuses_enum_comparison_exp {_eq?: (e_scrim_request_statuses_enum | null),_in?: (e_scrim_request_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_scrim_request_statuses_enum | null),_nin?: (e_scrim_request_statuses_enum[] | null)} +/** Boolean expression to filter rows from the table "event_match_links". All fields are combined with a logical 'AND'. */ +export interface event_match_links_bool_exp {_and?: (event_match_links_bool_exp[] | null),_not?: (event_match_links_bool_exp | null),_or?: (event_match_links_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null)} -/** input type for inserting data into table "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_insert_input {description?: (Scalars['String'] | null),scrim_requests?: (team_scrim_requests_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "event_match_links" */ +export interface event_match_links_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ -export interface e_scrim_request_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_match_links_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + match_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface e_scrim_request_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_match_links_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + match_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_mutation_responseGenqlSelection{ +/** response of any mutation on the table "event_match_links" */ +export interface event_match_links_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_scrim_request_statusesGenqlSelection + returning?: event_match_linksGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_on_conflict {constraint: e_scrim_request_statuses_constraint,update_columns?: e_scrim_request_statuses_update_column[],where?: (e_scrim_request_statuses_bool_exp | null)} +/** on_conflict condition type for table "event_match_links" */ +export interface event_match_links_on_conflict {constraint: event_match_links_constraint,update_columns?: event_match_links_update_column[],where?: (event_match_links_bool_exp | null)} -/** Ordering options when selecting data from "e_scrim_request_statuses". */ -export interface e_scrim_request_statuses_order_by {description?: (order_by | null),scrim_requests_aggregate?: (team_scrim_requests_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "event_match_links". */ +export interface event_match_links_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null)} -/** primary key columns input for table: e_scrim_request_statuses */ -export interface e_scrim_request_statuses_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: event_match_links */ +export interface event_match_links_pk_columns_input {event_id: Scalars['uuid'],match_id: Scalars['uuid']} -/** input type for updating data in table "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "event_match_links" */ +export interface event_match_links_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null)} -/** Streaming cursor of the table "e_scrim_request_statuses" */ -export interface e_scrim_request_statuses_stream_cursor_input { +/** Streaming cursor of the table "event_match_links" */ +export interface event_match_links_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_scrim_request_statuses_stream_cursor_value_input, +initial_value: event_match_links_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_scrim_request_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface event_match_links_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null)} -export interface e_scrim_request_statuses_updates { +export interface event_match_links_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_scrim_request_statuses_set_input | null), +_set?: (event_match_links_set_input | null), /** filter the rows which have to be updated */ -where: e_scrim_request_statuses_bool_exp} +where: event_match_links_bool_exp} -/** columns and relationships of "e_server_types" */ -export interface e_server_typesGenqlSelection{ - description?: boolean | number +/** columns and relationships of "event_media" */ +export interface event_mediaGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + external_url?: boolean | number + filename?: boolean | number + id?: boolean | number + mime_type?: boolean | number /** An array relationship */ - servers?: (serversGenqlSelection & { __args?: { + players?: (event_media_playersGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (servers_select_column[] | null), + distinct_on?: (event_media_players_select_column[] | null), /** limit the number of rows returned */ limit?: (Scalars['Int'] | null), /** skip the first n rows. Use only with order_by */ offset?: (Scalars['Int'] | null), /** sort the rows by one or more columns */ - order_by?: (servers_order_by[] | null), + order_by?: (event_media_players_order_by[] | null), /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) + where?: (event_media_players_bool_exp | null)} }) /** An aggregate relationship */ - servers_aggregate?: (servers_aggregateGenqlSelection & { __args?: { + players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (servers_select_column[] | null), + distinct_on?: (event_media_players_select_column[] | null), /** limit the number of rows returned */ limit?: (Scalars['Int'] | null), /** skip the first n rows. Use only with order_by */ offset?: (Scalars['Int'] | null), /** sort the rows by one or more columns */ - order_by?: (servers_order_by[] | null), + order_by?: (event_media_players_order_by[] | null), /** filter the rows returned */ - where?: (servers_bool_exp | null)} }) - value?: boolean | number + where?: (event_media_players_bool_exp | null)} }) + size?: boolean | number + thumbnail_filename?: boolean | number + title?: boolean | number + /** An object relationship */ + uploader?: playersGenqlSelection + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_server_types" */ -export interface e_server_types_aggregateGenqlSelection{ - aggregate?: e_server_types_aggregate_fieldsGenqlSelection - nodes?: e_server_typesGenqlSelection +/** aggregated selection of "event_media" */ +export interface event_media_aggregateGenqlSelection{ + aggregate?: event_media_aggregate_fieldsGenqlSelection + nodes?: event_mediaGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface event_media_aggregate_bool_exp {count?: (event_media_aggregate_bool_exp_count | null)} -/** aggregate fields of "e_server_types" */ -export interface e_server_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_server_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_server_types_max_fieldsGenqlSelection - min?: e_server_types_min_fieldsGenqlSelection +export interface event_media_aggregate_bool_exp_count {arguments?: (event_media_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_media_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_media" */ +export interface event_media_aggregate_fieldsGenqlSelection{ + avg?: event_media_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_media_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_media_max_fieldsGenqlSelection + min?: event_media_min_fieldsGenqlSelection + stddev?: event_media_stddev_fieldsGenqlSelection + stddev_pop?: event_media_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_media_stddev_samp_fieldsGenqlSelection + sum?: event_media_sum_fieldsGenqlSelection + var_pop?: event_media_var_pop_fieldsGenqlSelection + var_samp?: event_media_var_samp_fieldsGenqlSelection + variance?: event_media_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_server_types". All fields are combined with a logical 'AND'. */ -export interface e_server_types_bool_exp {_and?: (e_server_types_bool_exp[] | null),_not?: (e_server_types_bool_exp | null),_or?: (e_server_types_bool_exp[] | null),description?: (String_comparison_exp | null),servers?: (servers_bool_exp | null),servers_aggregate?: (servers_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** order by aggregate values of table "event_media" */ +export interface event_media_aggregate_order_by {avg?: (event_media_avg_order_by | null),count?: (order_by | null),max?: (event_media_max_order_by | null),min?: (event_media_min_order_by | null),stddev?: (event_media_stddev_order_by | null),stddev_pop?: (event_media_stddev_pop_order_by | null),stddev_samp?: (event_media_stddev_samp_order_by | null),sum?: (event_media_sum_order_by | null),var_pop?: (event_media_var_pop_order_by | null),var_samp?: (event_media_var_samp_order_by | null),variance?: (event_media_variance_order_by | null)} -/** Boolean expression to compare columns of type "e_server_types_enum". All fields are combined with logical 'AND'. */ -export interface e_server_types_enum_comparison_exp {_eq?: (e_server_types_enum | null),_in?: (e_server_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_server_types_enum | null),_nin?: (e_server_types_enum[] | null)} +/** input type for inserting array relation for remote table "event_media" */ +export interface event_media_arr_rel_insert_input {data: event_media_insert_input[], +/** upsert condition */ +on_conflict?: (event_media_on_conflict | null)} -/** input type for inserting data into table "e_server_types" */ -export interface e_server_types_insert_input {description?: (Scalars['String'] | null),servers?: (servers_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** aggregate avg on columns */ +export interface event_media_avg_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "event_media" */ +export interface event_media_avg_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. */ +export interface event_media_bool_exp {_and?: (event_media_bool_exp[] | null),_not?: (event_media_bool_exp | null),_or?: (event_media_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),external_url?: (String_comparison_exp | null),filename?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),mime_type?: (String_comparison_exp | null),players?: (event_media_players_bool_exp | null),players_aggregate?: (event_media_players_aggregate_bool_exp | null),size?: (bigint_comparison_exp | null),thumbnail_filename?: (String_comparison_exp | null),title?: (String_comparison_exp | null),uploader?: (players_bool_exp | null),uploader_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "event_media" */ +export interface event_media_inc_input {size?: (Scalars['bigint'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "event_media" */ +export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} /** aggregate max on columns */ -export interface e_server_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_media_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + external_url?: boolean | number + filename?: boolean | number + id?: boolean | number + mime_type?: boolean | number + size?: boolean | number + thumbnail_filename?: boolean | number + title?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "event_media" */ +export interface event_media_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),external_url?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} + + /** aggregate min on columns */ -export interface e_server_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_media_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + external_url?: boolean | number + filename?: boolean | number + id?: boolean | number + mime_type?: boolean | number + size?: boolean | number + thumbnail_filename?: boolean | number + title?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_server_types" */ -export interface e_server_types_mutation_responseGenqlSelection{ +/** order by min() on columns of table "event_media" */ +export interface event_media_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),external_url?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_media" */ +export interface event_media_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_server_typesGenqlSelection + returning?: event_mediaGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_server_types" */ -export interface e_server_types_on_conflict {constraint: e_server_types_constraint,update_columns?: e_server_types_update_column[],where?: (e_server_types_bool_exp | null)} - - -/** Ordering options when selecting data from "e_server_types". */ -export interface e_server_types_order_by {description?: (order_by | null),servers_aggregate?: (servers_aggregate_order_by | null),value?: (order_by | null)} - +/** input type for inserting object relation for remote table "event_media" */ +export interface event_media_obj_rel_insert_input {data: event_media_insert_input, +/** upsert condition */ +on_conflict?: (event_media_on_conflict | null)} -/** primary key columns input for table: e_server_types */ -export interface e_server_types_pk_columns_input {value: Scalars['String']} +/** on_conflict condition type for table "event_media" */ +export interface event_media_on_conflict {constraint: event_media_constraint,update_columns?: event_media_update_column[],where?: (event_media_bool_exp | null)} -/** input type for updating data in table "e_server_types" */ -export interface e_server_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** Ordering options when selecting data from "event_media". */ +export interface event_media_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),external_url?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),players_aggregate?: (event_media_players_aggregate_order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader?: (players_order_by | null),uploader_steam_id?: (order_by | null)} -/** Streaming cursor of the table "e_server_types" */ -export interface e_server_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_server_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** primary key columns input for table: event_media */ +export interface event_media_pk_columns_input {id: Scalars['uuid']} -/** Initial value of the column from where the streaming should start */ -export interface e_server_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_server_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_server_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_server_types_bool_exp} +/** columns and relationships of "event_media_players" */ +export interface event_media_playersGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + media?: event_mediaGenqlSelection + media_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** columns and relationships of "e_sides" */ -export interface e_sidesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - match_map_lineup_1?: (match_mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - /** An aggregate relationship */ - match_map_lineup_1_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - /** An array relationship */ - match_map_lineup_2?: (match_mapsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - /** An aggregate relationship */ - match_map_lineup_2_aggregate?: (match_maps_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (match_maps_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?: (match_maps_order_by[] | null), - /** filter the rows returned */ - where?: (match_maps_bool_exp | null)} }) - value?: boolean | number +/** aggregated selection of "event_media_players" */ +export interface event_media_players_aggregateGenqlSelection{ + aggregate?: event_media_players_aggregate_fieldsGenqlSelection + nodes?: event_media_playersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface event_media_players_aggregate_bool_exp {count?: (event_media_players_aggregate_bool_exp_count | null)} -/** aggregated selection of "e_sides" */ -export interface e_sides_aggregateGenqlSelection{ - aggregate?: e_sides_aggregate_fieldsGenqlSelection - nodes?: e_sidesGenqlSelection +export interface event_media_players_aggregate_bool_exp_count {arguments?: (event_media_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_media_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_media_players" */ +export interface event_media_players_aggregate_fieldsGenqlSelection{ + avg?: event_media_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_media_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_media_players_max_fieldsGenqlSelection + min?: event_media_players_min_fieldsGenqlSelection + stddev?: event_media_players_stddev_fieldsGenqlSelection + stddev_pop?: event_media_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_media_players_stddev_samp_fieldsGenqlSelection + sum?: event_media_players_sum_fieldsGenqlSelection + var_pop?: event_media_players_var_pop_fieldsGenqlSelection + var_samp?: event_media_players_var_samp_fieldsGenqlSelection + variance?: event_media_players_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_sides" */ -export interface e_sides_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_sides_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_sides_max_fieldsGenqlSelection - min?: e_sides_min_fieldsGenqlSelection +/** order by aggregate values of table "event_media_players" */ +export interface event_media_players_aggregate_order_by {avg?: (event_media_players_avg_order_by | null),count?: (order_by | null),max?: (event_media_players_max_order_by | null),min?: (event_media_players_min_order_by | null),stddev?: (event_media_players_stddev_order_by | null),stddev_pop?: (event_media_players_stddev_pop_order_by | null),stddev_samp?: (event_media_players_stddev_samp_order_by | null),sum?: (event_media_players_sum_order_by | null),var_pop?: (event_media_players_var_pop_order_by | null),var_samp?: (event_media_players_var_samp_order_by | null),variance?: (event_media_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "event_media_players" */ +export interface event_media_players_arr_rel_insert_input {data: event_media_players_insert_input[], +/** upsert condition */ +on_conflict?: (event_media_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface event_media_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_sides". All fields are combined with a logical 'AND'. */ -export interface e_sides_bool_exp {_and?: (e_sides_bool_exp[] | null),_not?: (e_sides_bool_exp | null),_or?: (e_sides_bool_exp[] | null),description?: (String_comparison_exp | null),match_map_lineup_1?: (match_maps_bool_exp | null),match_map_lineup_1_aggregate?: (match_maps_aggregate_bool_exp | null),match_map_lineup_2?: (match_maps_bool_exp | null),match_map_lineup_2_aggregate?: (match_maps_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** order by avg() on columns of table "event_media_players" */ +export interface event_media_players_avg_order_by {steam_id?: (order_by | null)} -/** Boolean expression to compare columns of type "e_sides_enum". All fields are combined with logical 'AND'. */ -export interface e_sides_enum_comparison_exp {_eq?: (e_sides_enum | null),_in?: (e_sides_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_sides_enum | null),_nin?: (e_sides_enum[] | null)} +/** Boolean expression to filter rows from the table "event_media_players". All fields are combined with a logical 'AND'. */ +export interface event_media_players_bool_exp {_and?: (event_media_players_bool_exp[] | null),_not?: (event_media_players_bool_exp | null),_or?: (event_media_players_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),media?: (event_media_bool_exp | null),media_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} -/** input type for inserting data into table "e_sides" */ -export interface e_sides_insert_input {description?: (Scalars['String'] | null),match_map_lineup_1?: (match_maps_arr_rel_insert_input | null),match_map_lineup_2?: (match_maps_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for incrementing numeric columns in table "event_media_players" */ +export interface event_media_players_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "event_media_players" */ +export interface event_media_players_insert_input {created_at?: (Scalars['timestamptz'] | null),media?: (event_media_obj_rel_insert_input | null),media_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} /** aggregate max on columns */ -export interface e_sides_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_media_players_max_fieldsGenqlSelection{ + created_at?: boolean | number + media_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "event_media_players" */ +export interface event_media_players_max_order_by {created_at?: (order_by | null),media_id?: (order_by | null),steam_id?: (order_by | null)} + + /** aggregate min on columns */ -export interface e_sides_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_media_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + media_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_sides" */ -export interface e_sides_mutation_responseGenqlSelection{ +/** order by min() on columns of table "event_media_players" */ +export interface event_media_players_min_order_by {created_at?: (order_by | null),media_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_media_players" */ +export interface event_media_players_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_sidesGenqlSelection + returning?: event_media_playersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_sides" */ -export interface e_sides_on_conflict {constraint: e_sides_constraint,update_columns?: e_sides_update_column[],where?: (e_sides_bool_exp | null)} +/** on_conflict condition type for table "event_media_players" */ +export interface event_media_players_on_conflict {constraint: event_media_players_constraint,update_columns?: event_media_players_update_column[],where?: (event_media_players_bool_exp | null)} -/** Ordering options when selecting data from "e_sides". */ -export interface e_sides_order_by {description?: (order_by | null),match_map_lineup_1_aggregate?: (match_maps_aggregate_order_by | null),match_map_lineup_2_aggregate?: (match_maps_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "event_media_players". */ +export interface event_media_players_order_by {created_at?: (order_by | null),media?: (event_media_order_by | null),media_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} -/** primary key columns input for table: e_sides */ -export interface e_sides_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: event_media_players */ +export interface event_media_players_pk_columns_input {media_id: Scalars['uuid'],steam_id: Scalars['bigint']} -/** input type for updating data in table "e_sides" */ -export interface e_sides_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "event_media_players" */ +export interface event_media_players_set_input {created_at?: (Scalars['timestamptz'] | null),media_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} -/** Streaming cursor of the table "e_sides" */ -export interface e_sides_stream_cursor_input { +/** aggregate stddev on columns */ +export interface event_media_players_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "event_media_players" */ +export interface event_media_players_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_media_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "event_media_players" */ +export interface event_media_players_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface event_media_players_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "event_media_players" */ +export interface event_media_players_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "event_media_players" */ +export interface event_media_players_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_sides_stream_cursor_value_input, +initial_value: event_media_players_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} -/** Initial value of the column from where the streaming should start */ -export interface e_sides_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** Initial value of the column from where the streaming should start */ +export interface event_media_players_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),media_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface event_media_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + -export interface e_sides_updates { +/** order by sum() on columns of table "event_media_players" */ +export interface event_media_players_sum_order_by {steam_id?: (order_by | null)} + +export interface event_media_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_media_players_inc_input | null), /** sets the columns of the filtered rows to the given values */ -_set?: (e_sides_set_input | null), +_set?: (event_media_players_set_input | null), /** filter the rows which have to be updated */ -where: e_sides_bool_exp} +where: event_media_players_bool_exp} -/** columns and relationships of "e_system_alert_types" */ -export interface e_system_alert_typesGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate var_pop on columns */ +export interface event_media_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_system_alert_types" */ -export interface e_system_alert_types_aggregateGenqlSelection{ - aggregate?: e_system_alert_types_aggregate_fieldsGenqlSelection - nodes?: e_system_alert_typesGenqlSelection +/** order by var_pop() on columns of table "event_media_players" */ +export interface event_media_players_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_media_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_system_alert_types" */ -export interface e_system_alert_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_system_alert_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_system_alert_types_max_fieldsGenqlSelection - min?: e_system_alert_types_min_fieldsGenqlSelection +/** order by var_samp() on columns of table "event_media_players" */ +export interface event_media_players_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface event_media_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_system_alert_types". All fields are combined with a logical 'AND'. */ -export interface e_system_alert_types_bool_exp {_and?: (e_system_alert_types_bool_exp[] | null),_not?: (e_system_alert_types_bool_exp | null),_or?: (e_system_alert_types_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_system_alert_types_enum". All fields are combined with logical 'AND'. */ -export interface e_system_alert_types_enum_comparison_exp {_eq?: (e_system_alert_types_enum | null),_in?: (e_system_alert_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_system_alert_types_enum | null),_nin?: (e_system_alert_types_enum[] | null)} +/** order by variance() on columns of table "event_media_players" */ +export interface event_media_players_variance_order_by {steam_id?: (order_by | null)} -/** input type for inserting data into table "e_system_alert_types" */ -export interface e_system_alert_types_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "event_media" */ +export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} -/** aggregate max on columns */ -export interface e_system_alert_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate stddev on columns */ +export interface event_media_stddev_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_system_alert_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by stddev() on columns of table "event_media" */ +export interface event_media_stddev_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} -/** response of any mutation on the table "e_system_alert_types" */ -export interface e_system_alert_types_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_system_alert_typesGenqlSelection +/** aggregate stddev_pop on columns */ +export interface event_media_stddev_pop_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_system_alert_types" */ -export interface e_system_alert_types_on_conflict {constraint: e_system_alert_types_constraint,update_columns?: e_system_alert_types_update_column[],where?: (e_system_alert_types_bool_exp | null)} - - -/** Ordering options when selecting data from "e_system_alert_types". */ -export interface e_system_alert_types_order_by {description?: (order_by | null),value?: (order_by | null)} +/** order by stddev_pop() on columns of table "event_media" */ +export interface event_media_stddev_pop_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} -/** primary key columns input for table: e_system_alert_types */ -export interface e_system_alert_types_pk_columns_input {value: Scalars['String']} +/** aggregate stddev_samp on columns */ +export interface event_media_stddev_samp_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for updating data in table "e_system_alert_types" */ -export interface e_system_alert_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** order by stddev_samp() on columns of table "event_media" */ +export interface event_media_stddev_samp_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} -/** Streaming cursor of the table "e_system_alert_types" */ -export interface e_system_alert_types_stream_cursor_input { +/** Streaming cursor of the table "event_media" */ +export interface event_media_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_system_alert_types_stream_cursor_value_input, +initial_value: event_media_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_system_alert_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_system_alert_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_system_alert_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_system_alert_types_bool_exp} +export interface event_media_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} -/** columns and relationships of "e_team_roles" */ -export interface e_team_rolesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - team_rosters?: (team_rosterGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_roster_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?: (team_roster_order_by[] | null), - /** filter the rows returned */ - where?: (team_roster_bool_exp | null)} }) - /** An aggregate relationship */ - team_rosters_aggregate?: (team_roster_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (team_roster_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?: (team_roster_order_by[] | null), - /** filter the rows returned */ - where?: (team_roster_bool_exp | null)} }) - /** An array relationship */ - tournament_team_rosters?: (tournament_team_rosterGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_roster_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_team_roster_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_roster_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_team_rosters_aggregate?: (tournament_team_roster_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_team_roster_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_team_roster_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_team_roster_bool_exp | null)} }) - value?: boolean | number +/** aggregate sum on columns */ +export interface event_media_sum_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_team_roles" */ -export interface e_team_roles_aggregateGenqlSelection{ - aggregate?: e_team_roles_aggregate_fieldsGenqlSelection - nodes?: e_team_rolesGenqlSelection +/** order by sum() on columns of table "event_media" */ +export interface event_media_sum_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + +export interface event_media_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_media_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_media_set_input | null), +/** filter the rows which have to be updated */ +where: event_media_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_media_var_pop_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_team_roles" */ -export interface e_team_roles_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_team_roles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_team_roles_max_fieldsGenqlSelection - min?: e_team_roles_min_fieldsGenqlSelection +/** order by var_pop() on columns of table "event_media" */ +export interface event_media_var_pop_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_media_var_samp_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_team_roles". All fields are combined with a logical 'AND'. */ -export interface e_team_roles_bool_exp {_and?: (e_team_roles_bool_exp[] | null),_not?: (e_team_roles_bool_exp | null),_or?: (e_team_roles_bool_exp[] | null),description?: (String_comparison_exp | null),team_rosters?: (team_roster_bool_exp | null),team_rosters_aggregate?: (team_roster_aggregate_bool_exp | null),tournament_team_rosters?: (tournament_team_roster_bool_exp | null),tournament_team_rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** order by var_samp() on columns of table "event_media" */ +export interface event_media_var_samp_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} -/** Boolean expression to compare columns of type "e_team_roles_enum". All fields are combined with logical 'AND'. */ -export interface e_team_roles_enum_comparison_exp {_eq?: (e_team_roles_enum | null),_in?: (e_team_roles_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_team_roles_enum | null),_nin?: (e_team_roles_enum[] | null)} +/** aggregate variance on columns */ +export interface event_media_variance_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for inserting data into table "e_team_roles" */ -export interface e_team_roles_insert_input {description?: (Scalars['String'] | null),team_rosters?: (team_roster_arr_rel_insert_input | null),tournament_team_rosters?: (tournament_team_roster_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** order by variance() on columns of table "event_media" */ +export interface event_media_variance_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} -/** aggregate max on columns */ -export interface e_team_roles_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** columns and relationships of "event_organizers" */ +export interface event_organizersGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + organizer?: playersGenqlSelection + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_team_roles_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregated selection of "event_organizers" */ +export interface event_organizers_aggregateGenqlSelection{ + aggregate?: event_organizers_aggregate_fieldsGenqlSelection + nodes?: event_organizersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface event_organizers_aggregate_bool_exp {count?: (event_organizers_aggregate_bool_exp_count | null)} -/** response of any mutation on the table "e_team_roles" */ -export interface e_team_roles_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_team_rolesGenqlSelection +export interface event_organizers_aggregate_bool_exp_count {arguments?: (event_organizers_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_organizers_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_organizers" */ +export interface event_organizers_aggregate_fieldsGenqlSelection{ + avg?: event_organizers_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_organizers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_organizers_max_fieldsGenqlSelection + min?: event_organizers_min_fieldsGenqlSelection + stddev?: event_organizers_stddev_fieldsGenqlSelection + stddev_pop?: event_organizers_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_organizers_stddev_samp_fieldsGenqlSelection + sum?: event_organizers_sum_fieldsGenqlSelection + var_pop?: event_organizers_var_pop_fieldsGenqlSelection + var_samp?: event_organizers_var_samp_fieldsGenqlSelection + variance?: event_organizers_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_team_roles" */ -export interface e_team_roles_obj_rel_insert_input {data: e_team_roles_insert_input, -/** upsert condition */ -on_conflict?: (e_team_roles_on_conflict | null)} - +/** order by aggregate values of table "event_organizers" */ +export interface event_organizers_aggregate_order_by {avg?: (event_organizers_avg_order_by | null),count?: (order_by | null),max?: (event_organizers_max_order_by | null),min?: (event_organizers_min_order_by | null),stddev?: (event_organizers_stddev_order_by | null),stddev_pop?: (event_organizers_stddev_pop_order_by | null),stddev_samp?: (event_organizers_stddev_samp_order_by | null),sum?: (event_organizers_sum_order_by | null),var_pop?: (event_organizers_var_pop_order_by | null),var_samp?: (event_organizers_var_samp_order_by | null),variance?: (event_organizers_variance_order_by | null)} -/** on_conflict condition type for table "e_team_roles" */ -export interface e_team_roles_on_conflict {constraint: e_team_roles_constraint,update_columns?: e_team_roles_update_column[],where?: (e_team_roles_bool_exp | null)} +/** input type for inserting array relation for remote table "event_organizers" */ +export interface event_organizers_arr_rel_insert_input {data: event_organizers_insert_input[], +/** upsert condition */ +on_conflict?: (event_organizers_on_conflict | null)} -/** Ordering options when selecting data from "e_team_roles". */ -export interface e_team_roles_order_by {description?: (order_by | null),team_rosters_aggregate?: (team_roster_aggregate_order_by | null),tournament_team_rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),value?: (order_by | null)} +/** aggregate avg on columns */ +export interface event_organizers_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** primary key columns input for table: e_team_roles */ -export interface e_team_roles_pk_columns_input {value: Scalars['String']} +/** order by avg() on columns of table "event_organizers" */ +export interface event_organizers_avg_order_by {steam_id?: (order_by | null)} -/** input type for updating data in table "e_team_roles" */ -export interface e_team_roles_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** Boolean expression to filter rows from the table "event_organizers". All fields are combined with a logical 'AND'. */ +export interface event_organizers_bool_exp {_and?: (event_organizers_bool_exp[] | null),_not?: (event_organizers_bool_exp | null),_or?: (event_organizers_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),organizer?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} -/** Streaming cursor of the table "e_team_roles" */ -export interface e_team_roles_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_team_roles_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** input type for incrementing numeric columns in table "event_organizers" */ +export interface event_organizers_inc_input {steam_id?: (Scalars['bigint'] | null)} -/** Initial value of the column from where the streaming should start */ -export interface e_team_roles_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_team_roles_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_team_roles_set_input | null), -/** filter the rows which have to be updated */ -where: e_team_roles_bool_exp} +/** input type for inserting data into table "event_organizers" */ +export interface event_organizers_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),organizer?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} -/** columns and relationships of "e_team_roster_statuses" */ -export interface e_team_roster_statusesGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate max on columns */ +export interface event_organizers_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_team_roster_statuses" */ -export interface e_team_roster_statuses_aggregateGenqlSelection{ - aggregate?: e_team_roster_statuses_aggregate_fieldsGenqlSelection - nodes?: e_team_roster_statusesGenqlSelection +/** order by max() on columns of table "event_organizers" */ +export interface event_organizers_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_organizers_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_team_roster_statuses" */ -export interface e_team_roster_statuses_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_team_roster_statuses_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_team_roster_statuses_max_fieldsGenqlSelection - min?: e_team_roster_statuses_min_fieldsGenqlSelection +/** order by min() on columns of table "event_organizers" */ +export interface event_organizers_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_organizers" */ +export interface event_organizers_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_organizersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_team_roster_statuses". All fields are combined with a logical 'AND'. */ -export interface e_team_roster_statuses_bool_exp {_and?: (e_team_roster_statuses_bool_exp[] | null),_not?: (e_team_roster_statuses_bool_exp | null),_or?: (e_team_roster_statuses_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** on_conflict condition type for table "event_organizers" */ +export interface event_organizers_on_conflict {constraint: event_organizers_constraint,update_columns?: event_organizers_update_column[],where?: (event_organizers_bool_exp | null)} -/** Boolean expression to compare columns of type "e_team_roster_statuses_enum". All fields are combined with logical 'AND'. */ -export interface e_team_roster_statuses_enum_comparison_exp {_eq?: (e_team_roster_statuses_enum | null),_in?: (e_team_roster_statuses_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_team_roster_statuses_enum | null),_nin?: (e_team_roster_statuses_enum[] | null)} +/** Ordering options when selecting data from "event_organizers". */ +export interface event_organizers_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),organizer?: (players_order_by | null),steam_id?: (order_by | null)} -/** input type for inserting data into table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** primary key columns input for table: event_organizers */ +export interface event_organizers_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} -/** aggregate max on columns */ -export interface e_team_roster_statuses_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for updating data in table "event_organizers" */ +export interface event_organizers_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} -/** aggregate min on columns */ -export interface e_team_roster_statuses_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate stddev on columns */ +export interface event_organizers_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_team_roster_statusesGenqlSelection +/** order by stddev() on columns of table "event_organizers" */ +export interface event_organizers_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_organizers_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_on_conflict {constraint: e_team_roster_statuses_constraint,update_columns?: e_team_roster_statuses_update_column[],where?: (e_team_roster_statuses_bool_exp | null)} - - -/** Ordering options when selecting data from "e_team_roster_statuses". */ -export interface e_team_roster_statuses_order_by {description?: (order_by | null),value?: (order_by | null)} +/** order by stddev_pop() on columns of table "event_organizers" */ +export interface event_organizers_stddev_pop_order_by {steam_id?: (order_by | null)} -/** primary key columns input for table: e_team_roster_statuses */ -export interface e_team_roster_statuses_pk_columns_input {value: Scalars['String']} +/** aggregate stddev_samp on columns */ +export interface event_organizers_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for updating data in table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** order by stddev_samp() on columns of table "event_organizers" */ +export interface event_organizers_stddev_samp_order_by {steam_id?: (order_by | null)} -/** Streaming cursor of the table "e_team_roster_statuses" */ -export interface e_team_roster_statuses_stream_cursor_input { +/** Streaming cursor of the table "event_organizers" */ +export interface event_organizers_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_team_roster_statuses_stream_cursor_value_input, +initial_value: event_organizers_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_team_roster_statuses_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_team_roster_statuses_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_team_roster_statuses_set_input | null), -/** filter the rows which have to be updated */ -where: e_team_roster_statuses_bool_exp} +export interface event_organizers_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} -/** columns and relationships of "e_timeout_settings" */ -export interface e_timeout_settingsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate sum on columns */ +export interface event_organizers_sum_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_timeout_settings" */ -export interface e_timeout_settings_aggregateGenqlSelection{ - aggregate?: e_timeout_settings_aggregate_fieldsGenqlSelection - nodes?: e_timeout_settingsGenqlSelection +/** order by sum() on columns of table "event_organizers" */ +export interface event_organizers_sum_order_by {steam_id?: (order_by | null)} + +export interface event_organizers_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_organizers_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_organizers_set_input | null), +/** filter the rows which have to be updated */ +where: event_organizers_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_organizers_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_timeout_settings" */ -export interface e_timeout_settings_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_timeout_settings_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_timeout_settings_max_fieldsGenqlSelection - min?: e_timeout_settings_min_fieldsGenqlSelection +/** order by var_pop() on columns of table "event_organizers" */ +export interface event_organizers_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_organizers_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_timeout_settings". All fields are combined with a logical 'AND'. */ -export interface e_timeout_settings_bool_exp {_and?: (e_timeout_settings_bool_exp[] | null),_not?: (e_timeout_settings_bool_exp | null),_or?: (e_timeout_settings_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** order by var_samp() on columns of table "event_organizers" */ +export interface event_organizers_var_samp_order_by {steam_id?: (order_by | null)} -/** Boolean expression to compare columns of type "e_timeout_settings_enum". All fields are combined with logical 'AND'. */ -export interface e_timeout_settings_enum_comparison_exp {_eq?: (e_timeout_settings_enum | null),_in?: (e_timeout_settings_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_timeout_settings_enum | null),_nin?: (e_timeout_settings_enum[] | null)} +/** aggregate variance on columns */ +export interface event_organizers_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for inserting data into table "e_timeout_settings" */ -export interface e_timeout_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** order by variance() on columns of table "event_organizers" */ +export interface event_organizers_variance_order_by {steam_id?: (order_by | null)} -/** aggregate max on columns */ -export interface e_timeout_settings_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** columns and relationships of "event_players" */ +export interface event_playersGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_timeout_settings_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregated selection of "event_players" */ +export interface event_players_aggregateGenqlSelection{ + aggregate?: event_players_aggregate_fieldsGenqlSelection + nodes?: event_playersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface event_players_aggregate_bool_exp {count?: (event_players_aggregate_bool_exp_count | null)} -/** response of any mutation on the table "e_timeout_settings" */ -export interface e_timeout_settings_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_timeout_settingsGenqlSelection +export interface event_players_aggregate_bool_exp_count {arguments?: (event_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_players" */ +export interface event_players_aggregate_fieldsGenqlSelection{ + avg?: event_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_players_max_fieldsGenqlSelection + min?: event_players_min_fieldsGenqlSelection + stddev?: event_players_stddev_fieldsGenqlSelection + stddev_pop?: event_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_players_stddev_samp_fieldsGenqlSelection + sum?: event_players_sum_fieldsGenqlSelection + var_pop?: event_players_var_pop_fieldsGenqlSelection + var_samp?: event_players_var_samp_fieldsGenqlSelection + variance?: event_players_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_timeout_settings" */ -export interface e_timeout_settings_on_conflict {constraint: e_timeout_settings_constraint,update_columns?: e_timeout_settings_update_column[],where?: (e_timeout_settings_bool_exp | null)} +/** order by aggregate values of table "event_players" */ +export interface event_players_aggregate_order_by {avg?: (event_players_avg_order_by | null),count?: (order_by | null),max?: (event_players_max_order_by | null),min?: (event_players_min_order_by | null),stddev?: (event_players_stddev_order_by | null),stddev_pop?: (event_players_stddev_pop_order_by | null),stddev_samp?: (event_players_stddev_samp_order_by | null),sum?: (event_players_sum_order_by | null),var_pop?: (event_players_var_pop_order_by | null),var_samp?: (event_players_var_samp_order_by | null),variance?: (event_players_variance_order_by | null)} -/** Ordering options when selecting data from "e_timeout_settings". */ -export interface e_timeout_settings_order_by {description?: (order_by | null),value?: (order_by | null)} +/** input type for inserting array relation for remote table "event_players" */ +export interface event_players_arr_rel_insert_input {data: event_players_insert_input[], +/** upsert condition */ +on_conflict?: (event_players_on_conflict | null)} -/** primary key columns input for table: e_timeout_settings */ -export interface e_timeout_settings_pk_columns_input {value: Scalars['String']} +/** aggregate avg on columns */ +export interface event_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for updating data in table "e_timeout_settings" */ -export interface e_timeout_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** order by avg() on columns of table "event_players" */ +export interface event_players_avg_order_by {steam_id?: (order_by | null)} -/** Streaming cursor of the table "e_timeout_settings" */ -export interface e_timeout_settings_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_timeout_settings_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** Boolean expression to filter rows from the table "event_players". All fields are combined with a logical 'AND'. */ +export interface event_players_bool_exp {_and?: (event_players_bool_exp[] | null),_not?: (event_players_bool_exp | null),_or?: (event_players_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} -/** Initial value of the column from where the streaming should start */ -export interface e_timeout_settings_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for incrementing numeric columns in table "event_players" */ +export interface event_players_inc_input {steam_id?: (Scalars['bigint'] | null)} -export interface e_timeout_settings_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_timeout_settings_set_input | null), -/** filter the rows which have to be updated */ -where: e_timeout_settings_bool_exp} +/** input type for inserting data into table "event_players" */ +export interface event_players_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} -/** columns and relationships of "e_tournament_stage_types" */ -export interface e_tournament_stage_typesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - tournament_stages?: (tournament_stagesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stages_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_stages_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stages_bool_exp | null)} }) - /** An aggregate relationship */ - tournament_stages_aggregate?: (tournament_stages_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournament_stages_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_stages_order_by[] | null), - /** filter the rows returned */ - where?: (tournament_stages_bool_exp | null)} }) - value?: boolean | number + +/** aggregate max on columns */ +export interface event_players_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_tournament_stage_types" */ -export interface e_tournament_stage_types_aggregateGenqlSelection{ - aggregate?: e_tournament_stage_types_aggregate_fieldsGenqlSelection - nodes?: e_tournament_stage_typesGenqlSelection +/** order by max() on columns of table "event_players" */ +export interface event_players_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_tournament_stage_types" */ -export interface e_tournament_stage_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_tournament_stage_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_tournament_stage_types_max_fieldsGenqlSelection - min?: e_tournament_stage_types_min_fieldsGenqlSelection +/** order by min() on columns of table "event_players" */ +export interface event_players_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_players" */ +export interface event_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_playersGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_tournament_stage_types". All fields are combined with a logical 'AND'. */ -export interface e_tournament_stage_types_bool_exp {_and?: (e_tournament_stage_types_bool_exp[] | null),_not?: (e_tournament_stage_types_bool_exp | null),_or?: (e_tournament_stage_types_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_stages?: (tournament_stages_bool_exp | null),tournament_stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** on_conflict condition type for table "event_players" */ +export interface event_players_on_conflict {constraint: event_players_constraint,update_columns?: event_players_update_column[],where?: (event_players_bool_exp | null)} -/** Boolean expression to compare columns of type "e_tournament_stage_types_enum". All fields are combined with logical 'AND'. */ -export interface e_tournament_stage_types_enum_comparison_exp {_eq?: (e_tournament_stage_types_enum | null),_in?: (e_tournament_stage_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_stage_types_enum | null),_nin?: (e_tournament_stage_types_enum[] | null)} +/** Ordering options when selecting data from "event_players". */ +export interface event_players_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} -/** input type for inserting data into table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_insert_input {description?: (Scalars['String'] | null),tournament_stages?: (tournament_stages_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** primary key columns input for table: event_players */ +export interface event_players_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} -/** aggregate max on columns */ -export interface e_tournament_stage_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** input type for updating data in table "event_players" */ +export interface event_players_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface event_players_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_tournament_stage_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** order by stddev() on columns of table "event_players" */ +export interface event_players_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_tournament_stage_typesGenqlSelection +/** order by stddev_pop() on columns of table "event_players" */ +export interface event_players_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface event_players_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_obj_rel_insert_input {data: e_tournament_stage_types_insert_input, -/** upsert condition */ -on_conflict?: (e_tournament_stage_types_on_conflict | null)} +/** order by stddev_samp() on columns of table "event_players" */ +export interface event_players_stddev_samp_order_by {steam_id?: (order_by | null)} -/** on_conflict condition type for table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_on_conflict {constraint: e_tournament_stage_types_constraint,update_columns?: e_tournament_stage_types_update_column[],where?: (e_tournament_stage_types_bool_exp | null)} +/** Streaming cursor of the table "event_players" */ +export interface event_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** Ordering options when selecting data from "e_tournament_stage_types". */ -export interface e_tournament_stage_types_order_by {description?: (order_by | null),tournament_stages_aggregate?: (tournament_stages_aggregate_order_by | null),value?: (order_by | null)} +/** Initial value of the column from where the streaming should start */ +export interface event_players_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} -/** primary key columns input for table: e_tournament_stage_types */ -export interface e_tournament_stage_types_pk_columns_input {value: Scalars['String']} +/** aggregate sum on columns */ +export interface event_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "event_players" */ +export interface event_players_sum_order_by {steam_id?: (order_by | null)} + +export interface event_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_players_set_input | null), +/** filter the rows which have to be updated */ +where: event_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_players" */ +export interface event_players_var_pop_order_by {steam_id?: (order_by | null)} + +/** aggregate var_samp on columns */ +export interface event_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for updating data in table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** order by var_samp() on columns of table "event_players" */ +export interface event_players_var_samp_order_by {steam_id?: (order_by | null)} -/** Streaming cursor of the table "e_tournament_stage_types" */ -export interface e_tournament_stage_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_tournament_stage_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** aggregate variance on columns */ +export interface event_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** Initial value of the column from where the streaming should start */ -export interface e_tournament_stage_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_tournament_stage_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_tournament_stage_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_tournament_stage_types_bool_exp} +/** order by variance() on columns of table "event_players" */ +export interface event_players_variance_order_by {steam_id?: (order_by | null)} -/** columns and relationships of "e_tournament_status" */ -export interface e_tournament_statusGenqlSelection{ - description?: boolean | number - /** An array relationship */ - tournaments?: (tournamentsGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournaments_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?: (tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (tournaments_bool_exp | null)} }) - /** An aggregate relationship */ - tournaments_aggregate?: (tournaments_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (tournaments_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?: (tournaments_order_by[] | null), - /** filter the rows returned */ - where?: (tournaments_bool_exp | null)} }) - value?: boolean | number +/** columns and relationships of "event_teams" */ +export interface event_teamsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_tournament_status" */ -export interface e_tournament_status_aggregateGenqlSelection{ - aggregate?: e_tournament_status_aggregate_fieldsGenqlSelection - nodes?: e_tournament_statusGenqlSelection +/** aggregated selection of "event_teams" */ +export interface event_teams_aggregateGenqlSelection{ + aggregate?: event_teams_aggregate_fieldsGenqlSelection + nodes?: event_teamsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface event_teams_aggregate_bool_exp {count?: (event_teams_aggregate_bool_exp_count | null)} -/** aggregate fields of "e_tournament_status" */ -export interface e_tournament_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_tournament_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_tournament_status_max_fieldsGenqlSelection - min?: e_tournament_status_min_fieldsGenqlSelection +export interface event_teams_aggregate_bool_exp_count {arguments?: (event_teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_teams_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_teams" */ +export interface event_teams_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (event_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_teams_max_fieldsGenqlSelection + min?: event_teams_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_tournament_status". All fields are combined with a logical 'AND'. */ -export interface e_tournament_status_bool_exp {_and?: (e_tournament_status_bool_exp[] | null),_not?: (e_tournament_status_bool_exp | null),_or?: (e_tournament_status_bool_exp[] | null),description?: (String_comparison_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** order by aggregate values of table "event_teams" */ +export interface event_teams_aggregate_order_by {count?: (order_by | null),max?: (event_teams_max_order_by | null),min?: (event_teams_min_order_by | null)} -/** Boolean expression to compare columns of type "e_tournament_status_enum". All fields are combined with logical 'AND'. */ -export interface e_tournament_status_enum_comparison_exp {_eq?: (e_tournament_status_enum | null),_in?: (e_tournament_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_status_enum | null),_nin?: (e_tournament_status_enum[] | null)} +/** input type for inserting array relation for remote table "event_teams" */ +export interface event_teams_arr_rel_insert_input {data: event_teams_insert_input[], +/** upsert condition */ +on_conflict?: (event_teams_on_conflict | null)} -/** input type for inserting data into table "e_tournament_status" */ -export interface e_tournament_status_insert_input {description?: (Scalars['String'] | null),tournaments?: (tournaments_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** Boolean expression to filter rows from the table "event_teams". All fields are combined with a logical 'AND'. */ +export interface event_teams_bool_exp {_and?: (event_teams_bool_exp[] | null),_not?: (event_teams_bool_exp | null),_or?: (event_teams_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "event_teams" */ +export interface event_teams_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ -export interface e_tournament_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_teams_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + team_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "event_teams" */ +export interface event_teams_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),team_id?: (order_by | null)} + + /** aggregate min on columns */ -export interface e_tournament_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_teams_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + team_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_tournament_status" */ -export interface e_tournament_status_mutation_responseGenqlSelection{ +/** order by min() on columns of table "event_teams" */ +export interface event_teams_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),team_id?: (order_by | null)} + + +/** response of any mutation on the table "event_teams" */ +export interface event_teams_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_tournament_statusGenqlSelection + returning?: event_teamsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "e_tournament_status" */ -export interface e_tournament_status_obj_rel_insert_input {data: e_tournament_status_insert_input, -/** upsert condition */ -on_conflict?: (e_tournament_status_on_conflict | null)} - +/** on_conflict condition type for table "event_teams" */ +export interface event_teams_on_conflict {constraint: event_teams_constraint,update_columns?: event_teams_update_column[],where?: (event_teams_bool_exp | null)} -/** on_conflict condition type for table "e_tournament_status" */ -export interface e_tournament_status_on_conflict {constraint: e_tournament_status_constraint,update_columns?: e_tournament_status_update_column[],where?: (e_tournament_status_bool_exp | null)} - -/** Ordering options when selecting data from "e_tournament_status". */ -export interface e_tournament_status_order_by {description?: (order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "event_teams". */ +export interface event_teams_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} -/** primary key columns input for table: e_tournament_status */ -export interface e_tournament_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: event_teams */ +export interface event_teams_pk_columns_input {event_id: Scalars['uuid'],team_id: Scalars['uuid']} -/** input type for updating data in table "e_tournament_status" */ -export interface e_tournament_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "event_teams" */ +export interface event_teams_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} -/** Streaming cursor of the table "e_tournament_status" */ -export interface e_tournament_status_stream_cursor_input { +/** Streaming cursor of the table "event_teams" */ +export interface event_teams_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_tournament_status_stream_cursor_value_input, +initial_value: event_teams_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_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface event_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} -export interface e_tournament_status_updates { +export interface event_teams_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_tournament_status_set_input | null), +_set?: (event_teams_set_input | null), /** filter the rows which have to be updated */ -where: e_tournament_status_bool_exp} +where: event_teams_bool_exp} -/** columns and relationships of "e_utility_types" */ -export interface e_utility_typesGenqlSelection{ - description?: boolean | number - /** An array relationship */ - player_utilities?: (player_utilityGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_utility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (player_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_utility_bool_exp | null)} }) - /** An aggregate relationship */ - player_utilities_aggregate?: (player_utility_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (player_utility_select_column[] | null), - /** limit the number of rows returned */ - limit?: (Scalars['Int'] | null), - /** skip the first n rows. Use only with order_by */ - offset?: (Scalars['Int'] | null), - /** sort the rows by one or more columns */ - order_by?: (player_utility_order_by[] | null), - /** filter the rows returned */ - where?: (player_utility_bool_exp | null)} }) - value?: boolean | number +/** columns and relationships of "event_tournaments" */ +export interface event_tournamentsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_utility_types" */ -export interface e_utility_types_aggregateGenqlSelection{ - aggregate?: e_utility_types_aggregate_fieldsGenqlSelection - nodes?: e_utility_typesGenqlSelection +/** aggregated selection of "event_tournaments" */ +export interface event_tournaments_aggregateGenqlSelection{ + aggregate?: event_tournaments_aggregate_fieldsGenqlSelection + nodes?: event_tournamentsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface event_tournaments_aggregate_bool_exp {count?: (event_tournaments_aggregate_bool_exp_count | null)} -/** aggregate fields of "e_utility_types" */ -export interface e_utility_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_types_max_fieldsGenqlSelection - min?: e_utility_types_min_fieldsGenqlSelection +export interface event_tournaments_aggregate_bool_exp_count {arguments?: (event_tournaments_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_tournaments_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_tournaments" */ +export interface event_tournaments_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (event_tournaments_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_tournaments_max_fieldsGenqlSelection + min?: event_tournaments_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_utility_types". All fields are combined with a logical 'AND'. */ -export interface e_utility_types_bool_exp {_and?: (e_utility_types_bool_exp[] | null),_not?: (e_utility_types_bool_exp | null),_or?: (e_utility_types_bool_exp[] | null),description?: (String_comparison_exp | null),player_utilities?: (player_utility_bool_exp | null),player_utilities_aggregate?: (player_utility_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** order by aggregate values of table "event_tournaments" */ +export interface event_tournaments_aggregate_order_by {count?: (order_by | null),max?: (event_tournaments_max_order_by | null),min?: (event_tournaments_min_order_by | null)} -/** Boolean expression to compare columns of type "e_utility_types_enum". All fields are combined with logical 'AND'. */ -export interface e_utility_types_enum_comparison_exp {_eq?: (e_utility_types_enum | null),_in?: (e_utility_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_utility_types_enum | null),_nin?: (e_utility_types_enum[] | null)} +/** input type for inserting array relation for remote table "event_tournaments" */ +export interface event_tournaments_arr_rel_insert_input {data: event_tournaments_insert_input[], +/** upsert condition */ +on_conflict?: (event_tournaments_on_conflict | null)} -/** input type for inserting data into table "e_utility_types" */ -export interface e_utility_types_insert_input {description?: (Scalars['String'] | null),player_utilities?: (player_utility_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** Boolean expression to filter rows from the table "event_tournaments". All fields are combined with a logical 'AND'. */ +export interface event_tournaments_bool_exp {_and?: (event_tournaments_bool_exp[] | null),_not?: (event_tournaments_bool_exp | null),_or?: (event_tournaments_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "event_tournaments" */ +export interface event_tournaments_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ -export interface e_utility_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_tournaments_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + tournament_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "event_tournaments" */ +export interface event_tournaments_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),tournament_id?: (order_by | null)} + + /** aggregate min on columns */ -export interface e_utility_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_tournaments_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + tournament_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_utility_types" */ -export interface e_utility_types_mutation_responseGenqlSelection{ +/** order by min() on columns of table "event_tournaments" */ +export interface event_tournaments_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "event_tournaments" */ +export interface event_tournaments_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_utility_typesGenqlSelection + returning?: event_tournamentsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_utility_types" */ -export interface e_utility_types_on_conflict {constraint: e_utility_types_constraint,update_columns?: e_utility_types_update_column[],where?: (e_utility_types_bool_exp | null)} +/** on_conflict condition type for table "event_tournaments" */ +export interface event_tournaments_on_conflict {constraint: event_tournaments_constraint,update_columns?: event_tournaments_update_column[],where?: (event_tournaments_bool_exp | null)} -/** Ordering options when selecting data from "e_utility_types". */ -export interface e_utility_types_order_by {description?: (order_by | null),player_utilities_aggregate?: (player_utility_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "event_tournaments". */ +export interface event_tournaments_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} -/** primary key columns input for table: e_utility_types */ -export interface e_utility_types_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: event_tournaments */ +export interface event_tournaments_pk_columns_input {event_id: Scalars['uuid'],tournament_id: Scalars['uuid']} -/** input type for updating data in table "e_utility_types" */ -export interface e_utility_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "event_tournaments" */ +export interface event_tournaments_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} -/** Streaming cursor of the table "e_utility_types" */ -export interface e_utility_types_stream_cursor_input { +/** Streaming cursor of the table "event_tournaments" */ +export interface event_tournaments_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_utility_types_stream_cursor_value_input, +initial_value: event_tournaments_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_utility_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface event_tournaments_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} -export interface e_utility_types_updates { +export interface event_tournaments_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_utility_types_set_input | null), +_set?: (event_tournaments_set_input | null), /** filter the rows which have to be updated */ -where: e_utility_types_bool_exp} +where: event_tournaments_bool_exp} -/** columns and relationships of "e_veto_pick_types" */ -export interface e_veto_pick_typesGenqlSelection{ +/** columns and relationships of "events" */ +export interface eventsGenqlSelection{ + /** An object relationship */ + banner?: event_mediaGenqlSelection + banner_media_id?: boolean | number + /** A computed field, executes function "can_upload_event_media" */ + can_upload_media?: boolean | number + /** A computed field, executes function "can_view_event" */ + can_view?: boolean | number + created_at?: boolean | number description?: boolean | number + ends_at?: boolean | number + hide_creator_organizer?: boolean | number + id?: boolean | number + /** A computed field, executes function "is_event_organizer" */ + is_organizer?: boolean | number /** An array relationship */ - match_veto_picks?: (match_map_veto_picksGenqlSelection & { __args?: { + media?: (event_mediaGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_map_veto_picks_select_column[] | null), + distinct_on?: (event_media_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?: (match_map_veto_picks_order_by[] | null), + order_by?: (event_media_order_by[] | null), /** filter the rows returned */ - where?: (match_map_veto_picks_bool_exp | null)} }) + where?: (event_media_bool_exp | null)} }) + media_access?: boolean | number /** An aggregate relationship */ - match_veto_picks_aggregate?: (match_map_veto_picks_aggregateGenqlSelection & { __args?: { + media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (match_map_veto_picks_select_column[] | null), + distinct_on?: (event_media_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?: (match_map_veto_picks_order_by[] | null), + order_by?: (event_media_order_by[] | null), /** filter the rows returned */ - where?: (match_map_veto_picks_bool_exp | null)} }) - value?: boolean | number + where?: (event_media_bool_exp | null)} }) + name?: boolean | number + /** An object relationship */ + organizer?: playersGenqlSelection + organizer_steam_id?: boolean | number + /** An array relationship */ + organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** An aggregate relationship */ + organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** An array relationship */ + player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** An aggregate relationship */ + player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** An array relationship */ + players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + starts_at?: boolean | number + /** An array relationship */ + teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** An aggregate relationship */ + teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** An array relationship */ + tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** An aggregate relationship */ + tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + visibility?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_veto_pick_types" */ -export interface e_veto_pick_types_aggregateGenqlSelection{ - aggregate?: e_veto_pick_types_aggregate_fieldsGenqlSelection - nodes?: e_veto_pick_typesGenqlSelection +/** aggregated selection of "events" */ +export interface events_aggregateGenqlSelection{ + aggregate?: events_aggregate_fieldsGenqlSelection + nodes?: eventsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_veto_pick_types" */ -export interface e_veto_pick_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_veto_pick_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_veto_pick_types_max_fieldsGenqlSelection - min?: e_veto_pick_types_min_fieldsGenqlSelection +/** aggregate fields of "events" */ +export interface events_aggregate_fieldsGenqlSelection{ + avg?: events_avg_fieldsGenqlSelection + count?: { __args: {columns?: (events_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: events_max_fieldsGenqlSelection + min?: events_min_fieldsGenqlSelection + stddev?: events_stddev_fieldsGenqlSelection + stddev_pop?: events_stddev_pop_fieldsGenqlSelection + stddev_samp?: events_stddev_samp_fieldsGenqlSelection + sum?: events_sum_fieldsGenqlSelection + var_pop?: events_var_pop_fieldsGenqlSelection + var_samp?: events_var_samp_fieldsGenqlSelection + variance?: events_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_veto_pick_types". All fields are combined with a logical 'AND'. */ -export interface e_veto_pick_types_bool_exp {_and?: (e_veto_pick_types_bool_exp[] | null),_not?: (e_veto_pick_types_bool_exp | null),_or?: (e_veto_pick_types_bool_exp[] | null),description?: (String_comparison_exp | null),match_veto_picks?: (match_map_veto_picks_bool_exp | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** aggregate avg on columns */ +export interface events_avg_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** Boolean expression to compare columns of type "e_veto_pick_types_enum". All fields are combined with logical 'AND'. */ -export interface e_veto_pick_types_enum_comparison_exp {_eq?: (e_veto_pick_types_enum | null),_in?: (e_veto_pick_types_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_veto_pick_types_enum | null),_nin?: (e_veto_pick_types_enum[] | null)} +/** Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. */ +export interface events_bool_exp {_and?: (events_bool_exp[] | null),_not?: (events_bool_exp | null),_or?: (events_bool_exp[] | null),banner?: (event_media_bool_exp | null),banner_media_id?: (uuid_comparison_exp | null),can_upload_media?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),hide_creator_organizer?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),media?: (event_media_bool_exp | null),media_access?: (e_event_media_access_enum_comparison_exp | null),media_aggregate?: (event_media_aggregate_bool_exp | null),name?: (String_comparison_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (event_organizers_bool_exp | null),organizers_aggregate?: (event_organizers_aggregate_bool_exp | null),player_stats?: (v_event_player_stats_bool_exp | null),player_stats_aggregate?: (v_event_player_stats_aggregate_bool_exp | null),players?: (event_players_bool_exp | null),players_aggregate?: (event_players_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),teams?: (event_teams_bool_exp | null),teams_aggregate?: (event_teams_aggregate_bool_exp | null),tournaments?: (event_tournaments_bool_exp | null),tournaments_aggregate?: (event_tournaments_aggregate_bool_exp | null),visibility?: (e_event_visibility_enum_comparison_exp | null)} -/** input type for inserting data into table "e_veto_pick_types" */ -export interface e_veto_pick_types_insert_input {description?: (Scalars['String'] | null),match_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for incrementing numeric columns in table "events" */ +export interface events_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "events" */ +export interface events_insert_input {banner?: (event_media_obj_rel_insert_input | null),banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media?: (event_media_arr_rel_insert_input | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (event_organizers_arr_rel_insert_input | null),player_stats?: (v_event_player_stats_arr_rel_insert_input | null),players?: (event_players_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),teams?: (event_teams_arr_rel_insert_input | null),tournaments?: (event_tournaments_arr_rel_insert_input | null),visibility?: (e_event_visibility_enum | null)} /** aggregate max on columns */ -export interface e_veto_pick_types_max_fieldsGenqlSelection{ +export interface events_max_fieldsGenqlSelection{ + banner_media_id?: boolean | number + created_at?: boolean | number description?: boolean | number - value?: boolean | number + ends_at?: boolean | number + id?: boolean | number + name?: boolean | number + organizer_steam_id?: boolean | number + starts_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate min on columns */ -export interface e_veto_pick_types_min_fieldsGenqlSelection{ +export interface events_min_fieldsGenqlSelection{ + banner_media_id?: boolean | number + created_at?: boolean | number description?: boolean | number - value?: boolean | number + ends_at?: boolean | number + id?: boolean | number + name?: boolean | number + organizer_steam_id?: boolean | number + starts_at?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_veto_pick_types" */ -export interface e_veto_pick_types_mutation_responseGenqlSelection{ +/** response of any mutation on the table "events" */ +export interface events_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_veto_pick_typesGenqlSelection + returning?: eventsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_veto_pick_types" */ -export interface e_veto_pick_types_on_conflict {constraint: e_veto_pick_types_constraint,update_columns?: e_veto_pick_types_update_column[],where?: (e_veto_pick_types_bool_exp | null)} - - -/** Ordering options when selecting data from "e_veto_pick_types". */ -export interface e_veto_pick_types_order_by {description?: (order_by | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),value?: (order_by | null)} - +/** input type for inserting object relation for remote table "events" */ +export interface events_obj_rel_insert_input {data: events_insert_input, +/** upsert condition */ +on_conflict?: (events_on_conflict | null)} -/** primary key columns input for table: e_veto_pick_types */ -export interface e_veto_pick_types_pk_columns_input {value: Scalars['String']} +/** on_conflict condition type for table "events" */ +export interface events_on_conflict {constraint: events_constraint,update_columns?: events_update_column[],where?: (events_bool_exp | null)} -/** input type for updating data in table "e_veto_pick_types" */ -export interface e_veto_pick_types_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** Ordering options when selecting data from "events". */ +export interface events_order_by {banner?: (event_media_order_by | null),banner_media_id?: (order_by | null),can_upload_media?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),hide_creator_organizer?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),media_access?: (order_by | null),media_aggregate?: (event_media_aggregate_order_by | null),name?: (order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (event_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_event_player_stats_aggregate_order_by | null),players_aggregate?: (event_players_aggregate_order_by | null),starts_at?: (order_by | null),teams_aggregate?: (event_teams_aggregate_order_by | null),tournaments_aggregate?: (event_tournaments_aggregate_order_by | null),visibility?: (order_by | null)} -/** Streaming cursor of the table "e_veto_pick_types" */ -export interface e_veto_pick_types_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_veto_pick_types_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** primary key columns input for table: events */ +export interface events_pk_columns_input {id: Scalars['uuid']} -/** Initial value of the column from where the streaming should start */ -export interface e_veto_pick_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_veto_pick_types_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_veto_pick_types_set_input | null), -/** filter the rows which have to be updated */ -where: e_veto_pick_types_bool_exp} +/** input type for updating data in table "events" */ +export interface events_set_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} -/** columns and relationships of "e_winning_reasons" */ -export interface e_winning_reasonsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate stddev on columns */ +export interface events_stddev_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "e_winning_reasons" */ -export interface e_winning_reasons_aggregateGenqlSelection{ - aggregate?: e_winning_reasons_aggregate_fieldsGenqlSelection - nodes?: e_winning_reasonsGenqlSelection +/** aggregate stddev_pop on columns */ +export interface events_stddev_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_winning_reasons" */ -export interface e_winning_reasons_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_winning_reasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_winning_reasons_max_fieldsGenqlSelection - min?: e_winning_reasons_min_fieldsGenqlSelection +/** aggregate stddev_samp on columns */ +export interface events_stddev_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. */ -export interface e_winning_reasons_bool_exp {_and?: (e_winning_reasons_bool_exp[] | null),_not?: (e_winning_reasons_bool_exp | null),_or?: (e_winning_reasons_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} - - -/** Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. */ -export interface e_winning_reasons_enum_comparison_exp {_eq?: (e_winning_reasons_enum | null),_in?: (e_winning_reasons_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_winning_reasons_enum | null),_nin?: (e_winning_reasons_enum[] | null)} +/** Streaming cursor of the table "events" */ +export interface events_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: events_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** input type for inserting data into table "e_winning_reasons" */ -export interface e_winning_reasons_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** Initial value of the column from where the streaming should start */ +export interface events_stream_cursor_value_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} -/** aggregate max on columns */ -export interface e_winning_reasons_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate sum on columns */ +export interface events_sum_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +export interface events_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (events_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (events_set_input | null), +/** filter the rows which have to be updated */ +where: events_bool_exp} + -/** aggregate min on columns */ -export interface e_winning_reasons_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate var_pop on columns */ +export interface events_var_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** response of any mutation on the table "e_winning_reasons" */ -export interface e_winning_reasons_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: e_winning_reasonsGenqlSelection +/** aggregate var_samp on columns */ +export interface events_var_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_winning_reasons" */ -export interface e_winning_reasons_on_conflict {constraint: e_winning_reasons_constraint,update_columns?: e_winning_reasons_update_column[],where?: (e_winning_reasons_bool_exp | null)} - - -/** Ordering options when selecting data from "e_winning_reasons". */ -export interface e_winning_reasons_order_by {description?: (order_by | null),value?: (order_by | null)} - - -/** primary key columns input for table: e_winning_reasons */ -export interface e_winning_reasons_pk_columns_input {value: Scalars['String']} - - -/** input type for updating data in table "e_winning_reasons" */ -export interface e_winning_reasons_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - - -/** Streaming cursor of the table "e_winning_reasons" */ -export interface e_winning_reasons_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_winning_reasons_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface e_winning_reasons_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} - -export interface e_winning_reasons_updates { -/** sets the columns of the filtered rows to the given values */ -_set?: (e_winning_reasons_set_input | null), -/** filter the rows which have to be updated */ -where: e_winning_reasons_bool_exp} +/** aggregate variance on columns */ +export interface events_variance_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} /** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */ @@ -41085,6 +44639,8 @@ export interface gamedata_signature_validations_variance_fieldsGenqlSelection{ __scalar?: boolean | number } +export interface get_event_leaderboard_args {_category?: (Scalars['String'] | null),_event_id?: (Scalars['uuid'] | null),_match_type?: (Scalars['String'] | null),_min_rounds?: (Scalars['Int'] | null)} + export interface get_leaderboard_args {_category?: (Scalars['String'] | null),_exclude_tournaments?: (Scalars['Boolean'] | null),_match_type?: (Scalars['String'] | null),_role?: (Scalars['String'] | null),_season_id?: (Scalars['uuid'] | null),_window_days?: (Scalars['Int'] | null)} export interface get_league_season_leaderboard_args {_category?: (Scalars['String'] | null),_league_season_id?: (Scalars['uuid'] | null),_role?: (Scalars['String'] | null)} @@ -48911,6 +52467,8 @@ export interface matchesGenqlSelection{ server?: serversGenqlSelection server_error?: boolean | number server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number /** A computed field, executes function "get_match_server_region" */ server_region?: boolean | number /** A computed field, executes function "get_match_server_type" */ @@ -49046,7 +52604,7 @@ export interface matches_avg_order_by {organizer_steam_id?: (order_by | null)} /** Boolean expression to filter rows from the table "matches". All fields are combined with a logical 'AND'. */ -export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),draft_games?: (draft_games_bool_exp | null),draft_games_aggregate?: (draft_games_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} +export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),draft_games?: (draft_games_bool_exp | null),draft_games_aggregate?: (draft_games_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_plugin_runtime?: (String_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} /** input type for incrementing numeric columns in table "matches" */ @@ -49093,6 +52651,8 @@ export interface matches_max_fieldsGenqlSelection{ scheduled_at?: boolean | number server_error?: boolean | number server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number /** A computed field, executes function "get_match_server_region" */ server_region?: boolean | number /** A computed field, executes function "get_match_server_type" */ @@ -49147,6 +52707,8 @@ export interface matches_min_fieldsGenqlSelection{ scheduled_at?: boolean | number server_error?: boolean | number server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number /** A computed field, executes function "get_match_server_region" */ server_region?: boolean | number /** A computed field, executes function "get_match_server_type" */ @@ -49187,7 +52749,7 @@ export interface matches_on_conflict {constraint: matches_constraint,update_colu /** Ordering options when selecting data from "matches". */ -export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),draft_games_aggregate?: (draft_games_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} +export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),draft_games_aggregate?: (draft_games_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_plugin_runtime?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} /** primary key columns input for table: matches */ @@ -49614,6 +53176,18 @@ export interface mutation_rootGenqlSelection{ where: e_draft_game_status_bool_exp} }) /** delete single row from the table: "e_draft_game_status" */ delete_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_event_media_access" */ + delete_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_event_media_access_bool_exp} }) + /** delete single row from the table: "e_event_media_access" */ + delete_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_event_visibility" */ + delete_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_event_visibility_bool_exp} }) + /** delete single row from the table: "e_event_visibility" */ + delete_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_friend_status" */ delete_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -49812,6 +53386,54 @@ export interface mutation_rootGenqlSelection{ where: e_winning_reasons_bool_exp} }) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "event_match_links" */ + delete_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_match_links_bool_exp} }) + /** delete single row from the table: "event_match_links" */ + delete_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) + /** delete data from the table: "event_media" */ + delete_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_media_bool_exp} }) + /** delete single row from the table: "event_media" */ + delete_event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "event_media_players" */ + delete_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_media_players_bool_exp} }) + /** delete single row from the table: "event_media_players" */ + delete_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_organizers" */ + delete_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_organizers_bool_exp} }) + /** delete single row from the table: "event_organizers" */ + delete_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_players" */ + delete_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_players_bool_exp} }) + /** delete single row from the table: "event_players" */ + delete_event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_teams" */ + delete_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_teams_bool_exp} }) + /** delete single row from the table: "event_teams" */ + delete_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** delete data from the table: "event_tournaments" */ + delete_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_tournaments_bool_exp} }) + /** delete single row from the table: "event_tournaments" */ + delete_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** delete data from the table: "events" */ + delete_events?: (events_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: events_bool_exp} }) + /** delete single row from the table: "events" */ + delete_events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "friends" */ delete_friends?: (friends_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -50517,6 +54139,30 @@ export interface mutation_rootGenqlSelection{ object: e_draft_game_status_insert_input, /** upsert condition */ on_conflict?: (e_draft_game_status_on_conflict | null)} }) + /** insert data into the table: "e_event_media_access" */ + insert_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_event_media_access_insert_input[], + /** upsert condition */ + on_conflict?: (e_event_media_access_on_conflict | null)} }) + /** insert a single row into the table: "e_event_media_access" */ + insert_e_event_media_access_one?: (e_event_media_accessGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_event_media_access_insert_input, + /** upsert condition */ + on_conflict?: (e_event_media_access_on_conflict | null)} }) + /** insert data into the table: "e_event_visibility" */ + insert_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_event_visibility_insert_input[], + /** upsert condition */ + on_conflict?: (e_event_visibility_on_conflict | null)} }) + /** insert a single row into the table: "e_event_visibility" */ + insert_e_event_visibility_one?: (e_event_visibilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_event_visibility_insert_input, + /** upsert condition */ + on_conflict?: (e_event_visibility_on_conflict | null)} }) /** insert data into the table: "e_friend_status" */ insert_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -50913,6 +54559,102 @@ export interface mutation_rootGenqlSelection{ object: e_winning_reasons_insert_input, /** upsert condition */ on_conflict?: (e_winning_reasons_on_conflict | null)} }) + /** insert data into the table: "event_match_links" */ + insert_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_match_links_insert_input[], + /** upsert condition */ + on_conflict?: (event_match_links_on_conflict | null)} }) + /** insert a single row into the table: "event_match_links" */ + insert_event_match_links_one?: (event_match_linksGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_match_links_insert_input, + /** upsert condition */ + on_conflict?: (event_match_links_on_conflict | null)} }) + /** insert data into the table: "event_media" */ + insert_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_media_insert_input[], + /** upsert condition */ + on_conflict?: (event_media_on_conflict | null)} }) + /** insert a single row into the table: "event_media" */ + insert_event_media_one?: (event_mediaGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_media_insert_input, + /** upsert condition */ + on_conflict?: (event_media_on_conflict | null)} }) + /** insert data into the table: "event_media_players" */ + insert_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_media_players_insert_input[], + /** upsert condition */ + on_conflict?: (event_media_players_on_conflict | null)} }) + /** insert a single row into the table: "event_media_players" */ + insert_event_media_players_one?: (event_media_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_media_players_insert_input, + /** upsert condition */ + on_conflict?: (event_media_players_on_conflict | null)} }) + /** insert data into the table: "event_organizers" */ + insert_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_organizers_insert_input[], + /** upsert condition */ + on_conflict?: (event_organizers_on_conflict | null)} }) + /** insert a single row into the table: "event_organizers" */ + insert_event_organizers_one?: (event_organizersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_organizers_insert_input, + /** upsert condition */ + on_conflict?: (event_organizers_on_conflict | null)} }) + /** insert data into the table: "event_players" */ + insert_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_players_insert_input[], + /** upsert condition */ + on_conflict?: (event_players_on_conflict | null)} }) + /** insert a single row into the table: "event_players" */ + insert_event_players_one?: (event_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_players_insert_input, + /** upsert condition */ + on_conflict?: (event_players_on_conflict | null)} }) + /** insert data into the table: "event_teams" */ + insert_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_teams_insert_input[], + /** upsert condition */ + on_conflict?: (event_teams_on_conflict | null)} }) + /** insert a single row into the table: "event_teams" */ + insert_event_teams_one?: (event_teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_teams_insert_input, + /** upsert condition */ + on_conflict?: (event_teams_on_conflict | null)} }) + /** insert data into the table: "event_tournaments" */ + insert_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_tournaments_insert_input[], + /** upsert condition */ + on_conflict?: (event_tournaments_on_conflict | null)} }) + /** insert a single row into the table: "event_tournaments" */ + insert_event_tournaments_one?: (event_tournamentsGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_tournaments_insert_input, + /** upsert condition */ + on_conflict?: (event_tournaments_on_conflict | null)} }) + /** insert data into the table: "events" */ + insert_events?: (events_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: events_insert_input[], + /** upsert condition */ + on_conflict?: (events_on_conflict | null)} }) + /** insert a single row into the table: "events" */ + insert_events_one?: (eventsGenqlSelection & { __args: { + /** the row to be inserted */ + object: events_insert_input, + /** upsert condition */ + on_conflict?: (events_on_conflict | null)} }) /** insert data into the table: "friends" */ insert_friends?: (friends_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -52408,6 +56150,34 @@ export interface mutation_rootGenqlSelection{ update_e_draft_game_status_many?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_draft_game_status_updates[]} }) + /** update data of the table: "e_event_media_access" */ + update_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_media_access_set_input | null), + /** filter the rows which have to be updated */ + where: e_event_media_access_bool_exp} }) + /** update single row of the table: "e_event_media_access" */ + update_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_media_access_set_input | null), pk_columns: e_event_media_access_pk_columns_input} }) + /** update multiples rows of table: "e_event_media_access" */ + update_e_event_media_access_many?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_event_media_access_updates[]} }) + /** update data of the table: "e_event_visibility" */ + update_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_visibility_set_input | null), + /** filter the rows which have to be updated */ + where: e_event_visibility_bool_exp} }) + /** update single row of the table: "e_event_visibility" */ + update_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_visibility_set_input | null), pk_columns: e_event_visibility_pk_columns_input} }) + /** update multiples rows of table: "e_event_visibility" */ + update_e_event_visibility_many?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_event_visibility_updates[]} }) /** update data of the table: "e_friend_status" */ update_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -52870,6 +56640,138 @@ export interface mutation_rootGenqlSelection{ update_e_winning_reasons_many?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_winning_reasons_updates[]} }) + /** update data of the table: "event_match_links" */ + update_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_match_links_set_input | null), + /** filter the rows which have to be updated */ + where: event_match_links_bool_exp} }) + /** update single row of the table: "event_match_links" */ + update_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_match_links_set_input | null), pk_columns: event_match_links_pk_columns_input} }) + /** update multiples rows of table: "event_match_links" */ + update_event_match_links_many?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_match_links_updates[]} }) + /** update data of the table: "event_media" */ + update_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_set_input | null), + /** filter the rows which have to be updated */ + where: event_media_bool_exp} }) + /** update single row of the table: "event_media" */ + update_event_media_by_pk?: (event_mediaGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_set_input | null), pk_columns: event_media_pk_columns_input} }) + /** update multiples rows of table: "event_media" */ + update_event_media_many?: (event_media_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_media_updates[]} }) + /** update data of the table: "event_media_players" */ + update_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_players_set_input | null), + /** filter the rows which have to be updated */ + where: event_media_players_bool_exp} }) + /** update single row of the table: "event_media_players" */ + update_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_players_set_input | null), pk_columns: event_media_players_pk_columns_input} }) + /** update multiples rows of table: "event_media_players" */ + update_event_media_players_many?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_media_players_updates[]} }) + /** update data of the table: "event_organizers" */ + update_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_organizers_set_input | null), + /** filter the rows which have to be updated */ + where: event_organizers_bool_exp} }) + /** update single row of the table: "event_organizers" */ + update_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_organizers_set_input | null), pk_columns: event_organizers_pk_columns_input} }) + /** update multiples rows of table: "event_organizers" */ + update_event_organizers_many?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_organizers_updates[]} }) + /** update data of the table: "event_players" */ + update_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_players_set_input | null), + /** filter the rows which have to be updated */ + where: event_players_bool_exp} }) + /** update single row of the table: "event_players" */ + update_event_players_by_pk?: (event_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_players_set_input | null), pk_columns: event_players_pk_columns_input} }) + /** update multiples rows of table: "event_players" */ + update_event_players_many?: (event_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_players_updates[]} }) + /** update data of the table: "event_teams" */ + update_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_teams_set_input | null), + /** filter the rows which have to be updated */ + where: event_teams_bool_exp} }) + /** update single row of the table: "event_teams" */ + update_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_teams_set_input | null), pk_columns: event_teams_pk_columns_input} }) + /** update multiples rows of table: "event_teams" */ + update_event_teams_many?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_teams_updates[]} }) + /** update data of the table: "event_tournaments" */ + update_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_tournaments_set_input | null), + /** filter the rows which have to be updated */ + where: event_tournaments_bool_exp} }) + /** update single row of the table: "event_tournaments" */ + update_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_tournaments_set_input | null), pk_columns: event_tournaments_pk_columns_input} }) + /** update multiples rows of table: "event_tournaments" */ + update_event_tournaments_many?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_tournaments_updates[]} }) + /** update data of the table: "events" */ + update_events?: (events_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (events_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (events_set_input | null), + /** filter the rows which have to be updated */ + where: events_bool_exp} }) + /** update single row of the table: "events" */ + update_events_by_pk?: (eventsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (events_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (events_set_input | null), pk_columns: events_pk_columns_input} }) + /** update multiples rows of table: "events" */ + update_events_many?: (events_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: events_updates[]} }) /** update data of the table: "friends" */ update_friends?: (friends_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -66547,6 +70449,58 @@ export interface query_rootGenqlSelection{ where?: (e_draft_game_status_bool_exp | null)} }) /** fetch data from the table: "e_draft_game_status" using primary key columns */ e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_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_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_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_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -67405,6 +71359,214 @@ export interface query_rootGenqlSelection{ where?: (e_winning_reasons_bool_exp | null)} }) /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "event_match_links" */ + event_match_links?: (event_match_linksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) + /** fetch data from the table: "event_media" */ + event_media?: (event_mediaGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "event_media_players" */ + event_media_players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_organizers" */ + event_organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_players" */ + event_players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_teams" */ + event_teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** fetch data from the table: "event_tournaments" */ + event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table: "events" */ + events?: (eventsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch aggregated fields from the table: "events" */ + events_aggregate?: (events_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch data from the table: "events" using primary key columns */ + events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** fetch data from the table: "friends" */ friends?: (friendsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -67543,6 +71705,34 @@ export interface query_rootGenqlSelection{ getTableStats?: (TableStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) /** Get TimescaleDB statistics */ getTimescaleStats?: TimescaleStatsGenqlSelection + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard_aggregate" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { /** input parameters for function "get_leaderboard" */ @@ -69888,6 +74078,30 @@ export interface query_rootGenqlSelection{ where?: (tournaments_bool_exp | null)} }) /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -72433,6 +76647,74 @@ export interface subscription_rootGenqlSelection{ cursor: (e_draft_game_status_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_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_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_media_access_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_event_media_access_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_event_media_access" */ + e_event_media_access_stream?: (e_event_media_accessGenqlSelection & { __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_event_media_access_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_event_visibility" */ + e_event_visibility_stream?: (e_event_visibilityGenqlSelection & { __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_event_visibility_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -73555,6 +77837,278 @@ export interface subscription_rootGenqlSelection{ cursor: (e_winning_reasons_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" */ + event_match_links?: (event_match_linksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_match_links" */ + event_match_links_stream?: (event_match_linksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_match_links_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_media" */ + event_media?: (event_mediaGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "event_media_players" */ + event_media_players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_media_players" */ + event_media_players_stream?: (event_media_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_media_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "event_media" */ + event_media_stream?: (event_mediaGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_media_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" */ + event_organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_organizers" */ + event_organizers_stream?: (event_organizersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_organizers_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_players" */ + event_players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_players" */ + event_players_stream?: (event_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_teams" */ + event_teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_teams" */ + event_teams_stream?: (event_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: (event_teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" */ + event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_tournaments" */ + event_tournaments_stream?: (event_tournamentsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_tournaments_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "events" */ + events?: (eventsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch aggregated fields from the table: "events" */ + events_aggregate?: (events_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch data from the table: "events" using primary key columns */ + events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "events" */ + events_stream?: (eventsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (events_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) /** fetch data from the table: "friends" */ friends?: (friendsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -73691,6 +78245,34 @@ export interface subscription_rootGenqlSelection{ cursor: (gamedata_signature_validations_stream_cursor_input | null)[], /** filter the rows returned */ where?: (gamedata_signature_validations_bool_exp | null)} }) + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard_aggregate" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { /** input parameters for function "get_leaderboard" */ @@ -76717,6 +81299,38 @@ export interface subscription_rootGenqlSelection{ cursor: (tournaments_stream_cursor_input | null)[], /** filter the rows returned */ where?: (tournaments_bool_exp | null)} }) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_event_player_stats" */ + v_event_player_stats_stream?: (v_event_player_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_event_player_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -83370,6 +87984,301 @@ _contains?: (Scalars['uuid'][] | null),_eq?: (Scalars['uuid'][] | null),_gt?: (S export interface uuid_comparison_exp {_eq?: (Scalars['uuid'] | null),_gt?: (Scalars['uuid'] | null),_gte?: (Scalars['uuid'] | null),_in?: (Scalars['uuid'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'] | null),_lte?: (Scalars['uuid'] | null),_neq?: (Scalars['uuid'] | null),_nin?: (Scalars['uuid'][] | null)} +/** columns and relationships of "v_event_player_stats" */ +export interface v_event_player_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_event_player_stats" */ +export interface v_event_player_stats_aggregateGenqlSelection{ + aggregate?: v_event_player_stats_aggregate_fieldsGenqlSelection + nodes?: v_event_player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_event_player_stats_aggregate_bool_exp {avg?: (v_event_player_stats_aggregate_bool_exp_avg | null),corr?: (v_event_player_stats_aggregate_bool_exp_corr | null),count?: (v_event_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_event_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_event_player_stats_aggregate_bool_exp_max | null),min?: (v_event_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_event_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_event_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_event_player_stats_aggregate_bool_exp_var_samp | null)} + +export interface v_event_player_stats_aggregate_bool_exp_avg {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_corr {arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_corr_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns} + +export interface v_event_player_stats_aggregate_bool_exp_count {arguments?: (v_event_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_covar_samp {arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_event_player_stats_aggregate_bool_exp_max {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_min {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_sum {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_var_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_fieldsGenqlSelection{ + avg?: v_event_player_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_event_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_event_player_stats_max_fieldsGenqlSelection + min?: v_event_player_stats_min_fieldsGenqlSelection + stddev?: v_event_player_stats_stddev_fieldsGenqlSelection + stddev_pop?: v_event_player_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_event_player_stats_stddev_samp_fieldsGenqlSelection + sum?: v_event_player_stats_sum_fieldsGenqlSelection + var_pop?: v_event_player_stats_var_pop_fieldsGenqlSelection + var_samp?: v_event_player_stats_var_samp_fieldsGenqlSelection + variance?: v_event_player_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_order_by {avg?: (v_event_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_event_player_stats_max_order_by | null),min?: (v_event_player_stats_min_order_by | null),stddev?: (v_event_player_stats_stddev_order_by | null),stddev_pop?: (v_event_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_event_player_stats_stddev_samp_order_by | null),sum?: (v_event_player_stats_sum_order_by | null),var_pop?: (v_event_player_stats_var_pop_order_by | null),var_samp?: (v_event_player_stats_var_samp_order_by | null),variance?: (v_event_player_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_event_player_stats" */ +export interface v_event_player_stats_arr_rel_insert_input {data: v_event_player_stats_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_event_player_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. */ +export interface v_event_player_stats_bool_exp {_and?: (v_event_player_stats_bool_exp[] | null),_not?: (v_event_player_stats_bool_exp | null),_or?: (v_event_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for inserting data into table "v_event_player_stats" */ +export interface v_event_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface v_event_player_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_event_player_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Ordering options when selecting data from "v_event_player_stats". */ +export interface v_event_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_event_player_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_event_player_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_event_player_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "v_event_player_stats" */ +export interface v_event_player_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_event_player_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_event_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_event_player_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_event_player_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_event_player_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_event_player_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + /** columns and relationships of "v_gpu_pool_status" */ export interface v_gpu_pool_statusGenqlSelection{ demo_free_gpu_nodes?: boolean | number @@ -89081,481 +93990,1082 @@ export interface v_steam_account_pool_status_stddev_fieldsGenqlSelection{ /** aggregate stddev_pop on columns */ -export interface v_steam_account_pool_status_stddev_pop_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number +export interface v_steam_account_pool_status_stddev_pop_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_steam_account_pool_status_stddev_samp_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_steam_account_pool_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_steam_account_pool_status_stream_cursor_value_input {busy_accounts?: (Scalars['Int'] | null),free_accounts?: (Scalars['Int'] | null),id?: (Scalars['Int'] | null),total_accounts?: (Scalars['Int'] | null)} + + +/** aggregate sum on columns */ +export interface v_steam_account_pool_status_sum_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_steam_account_pool_status_var_pop_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_steam_account_pool_status_var_samp_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_steam_account_pool_status_variance_fieldsGenqlSelection{ + busy_accounts?: boolean | number + free_accounts?: boolean | number + id?: boolean | number + total_accounts?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_team_ranks" */ +export interface v_team_ranksGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_team_ranks" */ +export interface v_team_ranks_aggregateGenqlSelection{ + aggregate?: v_team_ranks_aggregate_fieldsGenqlSelection + nodes?: v_team_ranksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_team_ranks" */ +export interface v_team_ranks_aggregate_fieldsGenqlSelection{ + avg?: v_team_ranks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_ranks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_ranks_max_fieldsGenqlSelection + min?: v_team_ranks_min_fieldsGenqlSelection + stddev?: v_team_ranks_stddev_fieldsGenqlSelection + stddev_pop?: v_team_ranks_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_ranks_stddev_samp_fieldsGenqlSelection + sum?: v_team_ranks_sum_fieldsGenqlSelection + var_pop?: v_team_ranks_var_pop_fieldsGenqlSelection + var_samp?: v_team_ranks_var_samp_fieldsGenqlSelection + variance?: v_team_ranks_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_team_ranks_avg_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_team_ranks". All fields are combined with a logical 'AND'. */ +export interface v_team_ranks_bool_exp {_and?: (v_team_ranks_bool_exp[] | null),_not?: (v_team_ranks_bool_exp | null),_or?: (v_team_ranks_bool_exp[] | null),avg_elo?: (Int_comparison_exp | null),avg_faceit_elo?: (Int_comparison_exp | null),avg_faceit_level?: (float8_comparison_exp | null),avg_premier?: (Int_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),roster_size?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "v_team_ranks" */ +export interface v_team_ranks_insert_input {avg_elo?: (Scalars['Int'] | null),avg_faceit_elo?: (Scalars['Int'] | null),avg_faceit_level?: (Scalars['float8'] | null),avg_premier?: (Scalars['Int'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),roster_size?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface v_team_ranks_max_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_team_ranks_min_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "v_team_ranks" */ +export interface v_team_ranks_obj_rel_insert_input {data: v_team_ranks_insert_input} + + +/** Ordering options when selecting data from "v_team_ranks". */ +export interface v_team_ranks_order_by {avg_elo?: (order_by | null),avg_faceit_elo?: (order_by | null),avg_faceit_level?: (order_by | null),avg_premier?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),roster_size?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_team_ranks_stddev_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_team_ranks_stddev_pop_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface v_team_ranks_stddev_samp_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "v_team_ranks" */ +export interface v_team_ranks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_team_ranks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_team_ranks_stream_cursor_value_input {avg_elo?: (Scalars['Int'] | null),avg_faceit_elo?: (Scalars['Int'] | null),avg_faceit_level?: (Scalars['float8'] | null),avg_premier?: (Scalars['Int'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),roster_size?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface v_team_ranks_sum_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_pop on columns */ +export interface v_team_ranks_var_pop_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface v_team_ranks_var_samp_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface v_team_ranks_variance_fieldsGenqlSelection{ + avg_elo?: boolean | number + avg_faceit_elo?: boolean | number + avg_faceit_level?: boolean | number + avg_premier?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + roster_size?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** columns and relationships of "v_team_reputation" */ +export interface v_team_reputationGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_team_reputation" */ +export interface v_team_reputation_aggregateGenqlSelection{ + aggregate?: v_team_reputation_aggregate_fieldsGenqlSelection + nodes?: v_team_reputationGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_team_reputation" */ +export interface v_team_reputation_aggregate_fieldsGenqlSelection{ + avg?: v_team_reputation_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_reputation_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_reputation_max_fieldsGenqlSelection + min?: v_team_reputation_min_fieldsGenqlSelection + stddev?: v_team_reputation_stddev_fieldsGenqlSelection + stddev_pop?: v_team_reputation_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_reputation_stddev_samp_fieldsGenqlSelection + sum?: v_team_reputation_sum_fieldsGenqlSelection + var_pop?: v_team_reputation_var_pop_fieldsGenqlSelection + var_samp?: v_team_reputation_var_samp_fieldsGenqlSelection + variance?: v_team_reputation_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface v_team_reputation_avg_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_team_reputation". All fields are combined with a logical 'AND'. */ +export interface v_team_reputation_bool_exp {_and?: (v_team_reputation_bool_exp[] | null),_not?: (v_team_reputation_bool_exp | null),_or?: (v_team_reputation_bool_exp[] | null),late_cancels?: (bigint_comparison_exp | null),no_shows?: (bigint_comparison_exp | null),reliability_pct?: (numeric_comparison_exp | null),scrims_completed?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "v_team_reputation" */ +export interface v_team_reputation_insert_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface v_team_reputation_max_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_team_reputation_min_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "v_team_reputation" */ +export interface v_team_reputation_obj_rel_insert_input {data: v_team_reputation_insert_input} + + +/** Ordering options when selecting data from "v_team_reputation". */ +export interface v_team_reputation_order_by {late_cancels?: (order_by | null),no_shows?: (order_by | null),reliability_pct?: (order_by | null),scrims_completed?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_team_reputation_stddev_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface v_team_reputation_stddev_pop_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate stddev_samp on columns */ -export interface v_steam_account_pool_status_stddev_samp_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number +export interface v_team_reputation_stddev_samp_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Streaming cursor of the table "v_steam_account_pool_status" */ -export interface v_steam_account_pool_status_stream_cursor_input { +/** Streaming cursor of the table "v_team_reputation" */ +export interface v_team_reputation_stream_cursor_input { /** Stream column input with initial value */ -initial_value: v_steam_account_pool_status_stream_cursor_value_input, +initial_value: v_team_reputation_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface v_steam_account_pool_status_stream_cursor_value_input {busy_accounts?: (Scalars['Int'] | null),free_accounts?: (Scalars['Int'] | null),id?: (Scalars['Int'] | null),total_accounts?: (Scalars['Int'] | null)} +export interface v_team_reputation_stream_cursor_value_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} /** aggregate sum on columns */ -export interface v_steam_account_pool_status_sum_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number +export interface v_team_reputation_sum_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate var_pop on columns */ -export interface v_steam_account_pool_status_var_pop_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number +export interface v_team_reputation_var_pop_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate var_samp on columns */ -export interface v_steam_account_pool_status_var_samp_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number +export interface v_team_reputation_var_samp_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** aggregate variance on columns */ -export interface v_steam_account_pool_status_variance_fieldsGenqlSelection{ - busy_accounts?: boolean | number - free_accounts?: boolean | number - id?: boolean | number - total_accounts?: boolean | number +export interface v_team_reputation_variance_fieldsGenqlSelection{ + late_cancels?: boolean | number + no_shows?: boolean | number + reliability_pct?: boolean | number + scrims_completed?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** columns and relationships of "v_team_ranks" */ -export interface v_team_ranksGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +/** columns and relationships of "v_team_stage_results" */ +export interface v_team_stage_resultsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number + stage?: tournament_stagesGenqlSelection + /** An object relationship */ + team?: tournament_teamsGenqlSelection + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "v_team_ranks" */ -export interface v_team_ranks_aggregateGenqlSelection{ - aggregate?: v_team_ranks_aggregate_fieldsGenqlSelection - nodes?: v_team_ranksGenqlSelection +/** aggregated selection of "v_team_stage_results" */ +export interface v_team_stage_results_aggregateGenqlSelection{ + aggregate?: v_team_stage_results_aggregate_fieldsGenqlSelection + nodes?: v_team_stage_resultsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface v_team_stage_results_aggregate_bool_exp {avg?: (v_team_stage_results_aggregate_bool_exp_avg | null),corr?: (v_team_stage_results_aggregate_bool_exp_corr | null),count?: (v_team_stage_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_stage_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_stage_results_aggregate_bool_exp_max | null),min?: (v_team_stage_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_stage_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_stage_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_stage_results_aggregate_bool_exp_var_samp | null)} -/** aggregate fields of "v_team_ranks" */ -export interface v_team_ranks_aggregate_fieldsGenqlSelection{ - avg?: v_team_ranks_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_ranks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_ranks_max_fieldsGenqlSelection - min?: v_team_ranks_min_fieldsGenqlSelection - stddev?: v_team_ranks_stddev_fieldsGenqlSelection - stddev_pop?: v_team_ranks_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_ranks_stddev_samp_fieldsGenqlSelection - sum?: v_team_ranks_sum_fieldsGenqlSelection - var_pop?: v_team_ranks_var_pop_fieldsGenqlSelection - var_samp?: v_team_ranks_var_samp_fieldsGenqlSelection - variance?: v_team_ranks_variance_fieldsGenqlSelection +export interface v_team_stage_results_aggregate_bool_exp_avg {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_corr {arguments: v_team_stage_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_corr_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns} + +export interface v_team_stage_results_aggregate_bool_exp_count {arguments?: (v_team_stage_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_covar_samp {arguments: v_team_stage_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_team_stage_results_aggregate_bool_exp_max {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_min {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_stddev_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_sum {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_team_stage_results_aggregate_bool_exp_var_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_team_stage_results" */ +export interface v_team_stage_results_aggregate_fieldsGenqlSelection{ + avg?: v_team_stage_results_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_stage_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_stage_results_max_fieldsGenqlSelection + min?: v_team_stage_results_min_fieldsGenqlSelection + stddev?: v_team_stage_results_stddev_fieldsGenqlSelection + stddev_pop?: v_team_stage_results_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_stage_results_stddev_samp_fieldsGenqlSelection + sum?: v_team_stage_results_sum_fieldsGenqlSelection + var_pop?: v_team_stage_results_var_pop_fieldsGenqlSelection + var_samp?: v_team_stage_results_var_samp_fieldsGenqlSelection + variance?: v_team_stage_results_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +/** order by aggregate values of table "v_team_stage_results" */ +export interface v_team_stage_results_aggregate_order_by {avg?: (v_team_stage_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_stage_results_max_order_by | null),min?: (v_team_stage_results_min_order_by | null),stddev?: (v_team_stage_results_stddev_order_by | null),stddev_pop?: (v_team_stage_results_stddev_pop_order_by | null),stddev_samp?: (v_team_stage_results_stddev_samp_order_by | null),sum?: (v_team_stage_results_sum_order_by | null),var_pop?: (v_team_stage_results_var_pop_order_by | null),var_samp?: (v_team_stage_results_var_samp_order_by | null),variance?: (v_team_stage_results_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_team_stage_results" */ +export interface v_team_stage_results_arr_rel_insert_input {data: v_team_stage_results_insert_input[], +/** upsert condition */ +on_conflict?: (v_team_stage_results_on_conflict | null)} + + /** aggregate avg on columns */ -export interface v_team_ranks_avg_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +export interface v_team_stage_results_avg_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "v_team_ranks". All fields are combined with a logical 'AND'. */ -export interface v_team_ranks_bool_exp {_and?: (v_team_ranks_bool_exp[] | null),_not?: (v_team_ranks_bool_exp | null),_or?: (v_team_ranks_bool_exp[] | null),avg_elo?: (Int_comparison_exp | null),avg_faceit_elo?: (Int_comparison_exp | null),avg_faceit_level?: (float8_comparison_exp | null),avg_premier?: (Int_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),roster_size?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} +/** order by avg() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_avg_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -/** input type for inserting data into table "v_team_ranks" */ -export interface v_team_ranks_insert_input {avg_elo?: (Scalars['Int'] | null),avg_faceit_elo?: (Scalars['Int'] | null),avg_faceit_level?: (Scalars['float8'] | null),avg_premier?: (Scalars['Int'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),roster_size?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} +/** Boolean expression to filter rows from the table "v_team_stage_results". All fields are combined with a logical 'AND'. */ +export interface v_team_stage_results_bool_exp {_and?: (v_team_stage_results_bool_exp[] | null),_not?: (v_team_stage_results_bool_exp | null),_or?: (v_team_stage_results_bool_exp[] | null),group_number?: (Int_comparison_exp | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),placement?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),stage?: (tournament_stages_bool_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament_stage_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "v_team_stage_results" */ +export interface v_team_stage_results_inc_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "v_team_stage_results" */ +export interface v_team_stage_results_insert_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),stage?: (tournament_stages_obj_rel_insert_input | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} /** aggregate max on columns */ -export interface v_team_ranks_max_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - team_id?: boolean | number +export interface v_team_stage_results_max_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by max() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_max_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + /** aggregate min on columns */ -export interface v_team_ranks_min_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - team_id?: boolean | number +export interface v_team_stage_results_min_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_stage_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "v_team_ranks" */ -export interface v_team_ranks_obj_rel_insert_input {data: v_team_ranks_insert_input} +/** order by min() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_min_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} -/** Ordering options when selecting data from "v_team_ranks". */ -export interface v_team_ranks_order_by {avg_elo?: (order_by | null),avg_faceit_elo?: (order_by | null),avg_faceit_level?: (order_by | null),avg_premier?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),roster_size?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} +/** response of any mutation on the table "v_team_stage_results" */ +export interface v_team_stage_results_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: v_team_stage_resultsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "v_team_stage_results" */ +export interface v_team_stage_results_obj_rel_insert_input {data: v_team_stage_results_insert_input, +/** upsert condition */ +on_conflict?: (v_team_stage_results_on_conflict | null)} + + +/** on_conflict condition type for table "v_team_stage_results" */ +export interface v_team_stage_results_on_conflict {constraint: v_team_stage_results_constraint,update_columns?: v_team_stage_results_update_column[],where?: (v_team_stage_results_bool_exp | null)} + + +/** Ordering options when selecting data from "v_team_stage_results". */ +export interface v_team_stage_results_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),stage?: (tournament_stages_order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** primary key columns input for table: v_team_stage_results */ +export interface v_team_stage_results_pk_columns_input {tournament_stage_id: Scalars['uuid'],tournament_team_id: Scalars['uuid']} + + +/** input type for updating data in table "v_team_stage_results" */ +export interface v_team_stage_results_set_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} /** aggregate stddev on columns */ -export interface v_team_ranks_stddev_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +export interface v_team_stage_results_stddev_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by stddev() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_stddev_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + /** aggregate stddev_pop on columns */ -export interface v_team_ranks_stddev_pop_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +export interface v_team_stage_results_stddev_pop_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by stddev_pop() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_stddev_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + /** aggregate stddev_samp on columns */ -export interface v_team_ranks_stddev_samp_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +export interface v_team_stage_results_stddev_samp_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Streaming cursor of the table "v_team_ranks" */ -export interface v_team_ranks_stream_cursor_input { +/** order by stddev_samp() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_stddev_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** Streaming cursor of the table "v_team_stage_results" */ +export interface v_team_stage_results_stream_cursor_input { /** Stream column input with initial value */ -initial_value: v_team_ranks_stream_cursor_value_input, +initial_value: v_team_stage_results_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface v_team_ranks_stream_cursor_value_input {avg_elo?: (Scalars['Int'] | null),avg_faceit_elo?: (Scalars['Int'] | null),avg_faceit_level?: (Scalars['float8'] | null),avg_premier?: (Scalars['Int'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),roster_size?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} +export interface v_team_stage_results_stream_cursor_value_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} /** aggregate sum on columns */ -export interface v_team_ranks_sum_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +export interface v_team_stage_results_sum_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } +/** order by sum() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_sum_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + +export interface v_team_stage_results_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (v_team_stage_results_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (v_team_stage_results_set_input | null), +/** filter the rows which have to be updated */ +where: v_team_stage_results_bool_exp} + + /** aggregate var_pop on columns */ -export interface v_team_ranks_var_pop_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +export interface v_team_stage_results_var_pop_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface v_team_ranks_var_samp_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by var_pop() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_var_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -/** aggregate variance on columns */ -export interface v_team_ranks_variance_fieldsGenqlSelection{ - avg_elo?: boolean | number - avg_faceit_elo?: boolean | number - avg_faceit_level?: boolean | number - avg_premier?: boolean | number - max_elo?: boolean | number - min_elo?: boolean | number - roster_size?: boolean | number +/** aggregate var_samp on columns */ +export interface v_team_stage_results_var_samp_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** columns and relationships of "v_team_reputation" */ -export interface v_team_reputationGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by var_samp() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_var_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -/** aggregated selection of "v_team_reputation" */ -export interface v_team_reputation_aggregateGenqlSelection{ - aggregate?: v_team_reputation_aggregate_fieldsGenqlSelection - nodes?: v_team_reputationGenqlSelection +/** aggregate variance on columns */ +export interface v_team_stage_results_variance_fieldsGenqlSelection{ + group_number?: boolean | number + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + placement?: boolean | number + rank?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "v_team_reputation" */ -export interface v_team_reputation_aggregate_fieldsGenqlSelection{ - avg?: v_team_reputation_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_reputation_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_reputation_max_fieldsGenqlSelection - min?: v_team_reputation_min_fieldsGenqlSelection - stddev?: v_team_reputation_stddev_fieldsGenqlSelection - stddev_pop?: v_team_reputation_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_reputation_stddev_samp_fieldsGenqlSelection - sum?: v_team_reputation_sum_fieldsGenqlSelection - var_pop?: v_team_reputation_var_pop_fieldsGenqlSelection - var_samp?: v_team_reputation_var_samp_fieldsGenqlSelection - variance?: v_team_reputation_variance_fieldsGenqlSelection +/** order by variance() on columns of table "v_team_stage_results" */ +export interface v_team_stage_results_variance_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** columns and relationships of "v_team_tournament_results" */ +export interface v_team_tournament_resultsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + /** An object relationship */ + team?: tournament_teamsGenqlSelection + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate avg on columns */ -export interface v_team_reputation_avg_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number +/** aggregated selection of "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregateGenqlSelection{ + aggregate?: v_team_tournament_results_aggregate_fieldsGenqlSelection + nodes?: v_team_tournament_resultsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface v_team_tournament_results_aggregate_bool_exp {avg?: (v_team_tournament_results_aggregate_bool_exp_avg | null),corr?: (v_team_tournament_results_aggregate_bool_exp_corr | null),count?: (v_team_tournament_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_tournament_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_tournament_results_aggregate_bool_exp_max | null),min?: (v_team_tournament_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_tournament_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_tournament_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_tournament_results_aggregate_bool_exp_var_samp | null)} -/** Boolean expression to filter rows from the table "v_team_reputation". All fields are combined with a logical 'AND'. */ -export interface v_team_reputation_bool_exp {_and?: (v_team_reputation_bool_exp[] | null),_not?: (v_team_reputation_bool_exp | null),_or?: (v_team_reputation_bool_exp[] | null),late_cancels?: (bigint_comparison_exp | null),no_shows?: (bigint_comparison_exp | null),reliability_pct?: (numeric_comparison_exp | null),scrims_completed?: (bigint_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} +export interface v_team_tournament_results_aggregate_bool_exp_avg {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} +export interface v_team_tournament_results_aggregate_bool_exp_corr {arguments: v_team_tournament_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} -/** input type for inserting data into table "v_team_reputation" */ -export interface v_team_reputation_insert_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} +export interface v_team_tournament_results_aggregate_bool_exp_corr_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns} +export interface v_team_tournament_results_aggregate_bool_exp_count {arguments?: (v_team_tournament_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: Int_comparison_exp} -/** aggregate max on columns */ -export interface v_team_reputation_max_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface v_team_tournament_results_aggregate_bool_exp_covar_samp {arguments: v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} +export interface v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns} -/** aggregate min on columns */ -export interface v_team_reputation_min_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - team_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface v_team_tournament_results_aggregate_bool_exp_max {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} +export interface v_team_tournament_results_aggregate_bool_exp_min {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} -/** input type for inserting object relation for remote table "v_team_reputation" */ -export interface v_team_reputation_obj_rel_insert_input {data: v_team_reputation_insert_input} +export interface v_team_tournament_results_aggregate_bool_exp_stddev_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} +export interface v_team_tournament_results_aggregate_bool_exp_sum {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} -/** Ordering options when selecting data from "v_team_reputation". */ -export interface v_team_reputation_order_by {late_cancels?: (order_by | null),no_shows?: (order_by | null),reliability_pct?: (order_by | null),scrims_completed?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} +export interface v_team_tournament_results_aggregate_bool_exp_var_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} -/** aggregate stddev on columns */ -export interface v_team_reputation_stddev_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number +/** aggregate fields of "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregate_fieldsGenqlSelection{ + avg?: v_team_tournament_results_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_team_tournament_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_team_tournament_results_max_fieldsGenqlSelection + min?: v_team_tournament_results_min_fieldsGenqlSelection + stddev?: v_team_tournament_results_stddev_fieldsGenqlSelection + stddev_pop?: v_team_tournament_results_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_team_tournament_results_stddev_samp_fieldsGenqlSelection + sum?: v_team_tournament_results_sum_fieldsGenqlSelection + var_pop?: v_team_tournament_results_var_pop_fieldsGenqlSelection + var_samp?: v_team_tournament_results_var_samp_fieldsGenqlSelection + variance?: v_team_tournament_results_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate stddev_pop on columns */ -export interface v_team_reputation_stddev_pop_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by aggregate values of table "v_team_tournament_results" */ +export interface v_team_tournament_results_aggregate_order_by {avg?: (v_team_tournament_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_tournament_results_max_order_by | null),min?: (v_team_tournament_results_min_order_by | null),stddev?: (v_team_tournament_results_stddev_order_by | null),stddev_pop?: (v_team_tournament_results_stddev_pop_order_by | null),stddev_samp?: (v_team_tournament_results_stddev_samp_order_by | null),sum?: (v_team_tournament_results_sum_order_by | null),var_pop?: (v_team_tournament_results_var_pop_order_by | null),var_samp?: (v_team_tournament_results_var_samp_order_by | null),variance?: (v_team_tournament_results_variance_order_by | null)} -/** aggregate stddev_samp on columns */ -export interface v_team_reputation_stddev_samp_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number +/** input type for inserting array relation for remote table "v_team_tournament_results" */ +export interface v_team_tournament_results_arr_rel_insert_input {data: v_team_tournament_results_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_team_tournament_results_avg_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Streaming cursor of the table "v_team_reputation" */ -export interface v_team_reputation_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_team_reputation_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** order by avg() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_avg_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -/** Initial value of the column from where the streaming should start */ -export interface v_team_reputation_stream_cursor_value_input {late_cancels?: (Scalars['bigint'] | null),no_shows?: (Scalars['bigint'] | null),reliability_pct?: (Scalars['numeric'] | null),scrims_completed?: (Scalars['bigint'] | null),team_id?: (Scalars['uuid'] | null)} +/** Boolean expression to filter rows from the table "v_team_tournament_results". All fields are combined with a logical 'AND'. */ +export interface v_team_tournament_results_bool_exp {_and?: (v_team_tournament_results_bool_exp[] | null),_not?: (v_team_tournament_results_bool_exp | null),_or?: (v_team_tournament_results_bool_exp[] | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} -/** aggregate sum on columns */ -export interface v_team_reputation_sum_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** input type for inserting data into table "v_team_tournament_results" */ +export interface v_team_tournament_results_insert_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} -/** aggregate var_pop on columns */ -export interface v_team_reputation_var_pop_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number +/** aggregate max on columns */ +export interface v_team_tournament_results_max_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface v_team_reputation_var_samp_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** order by max() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_max_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} -/** aggregate variance on columns */ -export interface v_team_reputation_variance_fieldsGenqlSelection{ - late_cancels?: boolean | number - no_shows?: boolean | number - reliability_pct?: boolean | number - scrims_completed?: boolean | number +/** aggregate min on columns */ +export interface v_team_tournament_results_min_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + tournament_id?: boolean | number + tournament_team_id?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** columns and relationships of "v_team_stage_results" */ -export interface v_team_stage_resultsGenqlSelection{ - group_number?: boolean | number +/** order by min() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_min_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** Ordering options when selecting data from "v_team_tournament_results". */ +export interface v_team_tournament_results_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_team_tournament_results_stddev_fieldsGenqlSelection{ head_to_head_match_wins?: boolean | number head_to_head_rounds_won?: boolean | number losses?: boolean | number @@ -89563,89 +95073,107 @@ export interface v_team_stage_resultsGenqlSelection{ maps_won?: boolean | number matches_played?: boolean | number matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number rounds_lost?: boolean | number rounds_won?: boolean | number - /** An object relationship */ - stage?: tournament_stagesGenqlSelection - /** An object relationship */ - team?: tournament_teamsGenqlSelection team_kdr?: boolean | number total_deaths?: boolean | number total_kills?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id?: boolean | number wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "v_team_stage_results" */ -export interface v_team_stage_results_aggregateGenqlSelection{ - aggregate?: v_team_stage_results_aggregate_fieldsGenqlSelection - nodes?: v_team_stage_resultsGenqlSelection +/** order by stddev() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_stddev_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_team_tournament_results_stddev_pop_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface v_team_stage_results_aggregate_bool_exp {avg?: (v_team_stage_results_aggregate_bool_exp_avg | null),corr?: (v_team_stage_results_aggregate_bool_exp_corr | null),count?: (v_team_stage_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_stage_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_stage_results_aggregate_bool_exp_max | null),min?: (v_team_stage_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_stage_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_stage_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_stage_results_aggregate_bool_exp_var_samp | null)} - -export interface v_team_stage_results_aggregate_bool_exp_avg {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} - -export interface v_team_stage_results_aggregate_bool_exp_corr {arguments: v_team_stage_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} -export interface v_team_stage_results_aggregate_bool_exp_corr_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_corr_arguments_columns} +/** order by stddev_pop() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_stddev_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -export interface v_team_stage_results_aggregate_bool_exp_count {arguments?: (v_team_stage_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: Int_comparison_exp} -export interface v_team_stage_results_aggregate_bool_exp_covar_samp {arguments: v_team_stage_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} +/** aggregate stddev_samp on columns */ +export interface v_team_tournament_results_stddev_samp_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -export interface v_team_stage_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_covar_samp_arguments_columns} -export interface v_team_stage_results_aggregate_bool_exp_max {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} +/** order by stddev_samp() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_stddev_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -export interface v_team_stage_results_aggregate_bool_exp_min {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} -export interface v_team_stage_results_aggregate_bool_exp_stddev_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} +/** Streaming cursor of the table "v_team_tournament_results" */ +export interface v_team_tournament_results_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_team_tournament_results_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -export interface v_team_stage_results_aggregate_bool_exp_sum {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} -export interface v_team_stage_results_aggregate_bool_exp_var_samp {arguments: v_team_stage_results_select_column_v_team_stage_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_stage_results_bool_exp | null),predicate: float8_comparison_exp} +/** Initial value of the column from where the streaming should start */ +export interface v_team_tournament_results_stream_cursor_value_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} -/** aggregate fields of "v_team_stage_results" */ -export interface v_team_stage_results_aggregate_fieldsGenqlSelection{ - avg?: v_team_stage_results_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_stage_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_stage_results_max_fieldsGenqlSelection - min?: v_team_stage_results_min_fieldsGenqlSelection - stddev?: v_team_stage_results_stddev_fieldsGenqlSelection - stddev_pop?: v_team_stage_results_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_stage_results_stddev_samp_fieldsGenqlSelection - sum?: v_team_stage_results_sum_fieldsGenqlSelection - var_pop?: v_team_stage_results_var_pop_fieldsGenqlSelection - var_samp?: v_team_stage_results_var_samp_fieldsGenqlSelection - variance?: v_team_stage_results_variance_fieldsGenqlSelection +/** aggregate sum on columns */ +export interface v_team_tournament_results_sum_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by aggregate values of table "v_team_stage_results" */ -export interface v_team_stage_results_aggregate_order_by {avg?: (v_team_stage_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_stage_results_max_order_by | null),min?: (v_team_stage_results_min_order_by | null),stddev?: (v_team_stage_results_stddev_order_by | null),stddev_pop?: (v_team_stage_results_stddev_pop_order_by | null),stddev_samp?: (v_team_stage_results_stddev_samp_order_by | null),sum?: (v_team_stage_results_sum_order_by | null),var_pop?: (v_team_stage_results_var_pop_order_by | null),var_samp?: (v_team_stage_results_var_samp_order_by | null),variance?: (v_team_stage_results_variance_order_by | null)} - - -/** input type for inserting array relation for remote table "v_team_stage_results" */ -export interface v_team_stage_results_arr_rel_insert_input {data: v_team_stage_results_insert_input[], -/** upsert condition */ -on_conflict?: (v_team_stage_results_on_conflict | null)} +/** order by sum() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_sum_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -/** aggregate avg on columns */ -export interface v_team_stage_results_avg_fieldsGenqlSelection{ - group_number?: boolean | number +/** aggregate var_pop on columns */ +export interface v_team_tournament_results_var_pop_fieldsGenqlSelection{ head_to_head_match_wins?: boolean | number head_to_head_rounds_won?: boolean | number losses?: boolean | number @@ -89653,8 +95181,6 @@ export interface v_team_stage_results_avg_fieldsGenqlSelection{ maps_won?: boolean | number matches_played?: boolean | number matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number rounds_lost?: boolean | number rounds_won?: boolean | number team_kdr?: boolean | number @@ -89666,25 +95192,36 @@ export interface v_team_stage_results_avg_fieldsGenqlSelection{ } -/** order by avg() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_avg_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - - -/** Boolean expression to filter rows from the table "v_team_stage_results". All fields are combined with a logical 'AND'. */ -export interface v_team_stage_results_bool_exp {_and?: (v_team_stage_results_bool_exp[] | null),_not?: (v_team_stage_results_bool_exp | null),_or?: (v_team_stage_results_bool_exp[] | null),group_number?: (Int_comparison_exp | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),placement?: (Int_comparison_exp | null),rank?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),stage?: (tournament_stages_bool_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament_stage_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} +/** order by var_pop() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_var_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -/** input type for incrementing numeric columns in table "v_team_stage_results" */ -export interface v_team_stage_results_inc_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),wins?: (Scalars['Int'] | null)} +/** aggregate var_samp on columns */ +export interface v_team_tournament_results_var_samp_fieldsGenqlSelection{ + head_to_head_match_wins?: boolean | number + head_to_head_rounds_won?: boolean | number + losses?: boolean | number + maps_lost?: boolean | number + maps_won?: boolean | number + matches_played?: boolean | number + matches_remaining?: boolean | number + rounds_lost?: boolean | number + rounds_won?: boolean | number + team_kdr?: boolean | number + total_deaths?: boolean | number + total_kills?: boolean | number + wins?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** input type for inserting data into table "v_team_stage_results" */ -export interface v_team_stage_results_insert_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),stage?: (tournament_stages_obj_rel_insert_input | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} +/** order by var_samp() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_var_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} -/** aggregate max on columns */ -export interface v_team_stage_results_max_fieldsGenqlSelection{ - group_number?: boolean | number +/** aggregate variance on columns */ +export interface v_team_tournament_results_variance_fieldsGenqlSelection{ head_to_head_match_wins?: boolean | number head_to_head_rounds_won?: boolean | number losses?: boolean | number @@ -89692,4264 +95229,4436 @@ export interface v_team_stage_results_max_fieldsGenqlSelection{ maps_won?: boolean | number matches_played?: boolean | number matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number rounds_lost?: boolean | number rounds_won?: boolean | number team_kdr?: boolean | number total_deaths?: boolean | number total_kills?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id?: boolean | number wins?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by max() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_max_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} +/** order by variance() on columns of table "v_team_tournament_results" */ +export interface v_team_tournament_results_variance_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + + +/** columns and relationships of "v_tournament_player_stats" */ +export interface v_tournament_player_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregateGenqlSelection{ + aggregate?: v_tournament_player_stats_aggregate_fieldsGenqlSelection + nodes?: v_tournament_player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_tournament_player_stats_aggregate_bool_exp {avg?: (v_tournament_player_stats_aggregate_bool_exp_avg | null),corr?: (v_tournament_player_stats_aggregate_bool_exp_corr | null),count?: (v_tournament_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_tournament_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_tournament_player_stats_aggregate_bool_exp_max | null),min?: (v_tournament_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_tournament_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_tournament_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_tournament_player_stats_aggregate_bool_exp_var_samp | null)} + +export interface v_tournament_player_stats_aggregate_bool_exp_avg {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_corr {arguments: v_tournament_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_corr_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns} + +export interface v_tournament_player_stats_aggregate_bool_exp_count {arguments?: (v_tournament_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp {arguments: v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_tournament_player_stats_aggregate_bool_exp_max {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_min {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_sum {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_tournament_player_stats_aggregate_bool_exp_var_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregate_fieldsGenqlSelection{ + avg?: v_tournament_player_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_tournament_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_tournament_player_stats_max_fieldsGenqlSelection + min?: v_tournament_player_stats_min_fieldsGenqlSelection + stddev?: v_tournament_player_stats_stddev_fieldsGenqlSelection + stddev_pop?: v_tournament_player_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_tournament_player_stats_stddev_samp_fieldsGenqlSelection + sum?: v_tournament_player_stats_sum_fieldsGenqlSelection + var_pop?: v_tournament_player_stats_var_pop_fieldsGenqlSelection + var_samp?: v_tournament_player_stats_var_samp_fieldsGenqlSelection + variance?: v_tournament_player_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_aggregate_order_by {avg?: (v_tournament_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_tournament_player_stats_max_order_by | null),min?: (v_tournament_player_stats_min_order_by | null),stddev?: (v_tournament_player_stats_stddev_order_by | null),stddev_pop?: (v_tournament_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_tournament_player_stats_stddev_samp_order_by | null),sum?: (v_tournament_player_stats_sum_order_by | null),var_pop?: (v_tournament_player_stats_var_pop_order_by | null),var_samp?: (v_tournament_player_stats_var_samp_order_by | null),variance?: (v_tournament_player_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_arr_rel_insert_input {data: v_tournament_player_stats_insert_input[]} -/** aggregate min on columns */ -export interface v_team_stage_results_min_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +/** aggregate avg on columns */ +export interface v_tournament_player_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_stage_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by min() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_min_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} +/** order by avg() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} -/** response of any mutation on the table "v_team_stage_results" */ -export interface v_team_stage_results_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: v_team_stage_resultsGenqlSelection +/** Boolean expression to filter rows from the table "v_tournament_player_stats". All fields are combined with a logical 'AND'. */ +export interface v_tournament_player_stats_bool_exp {_and?: (v_tournament_player_stats_bool_exp[] | null),_not?: (v_tournament_player_stats_bool_exp | null),_or?: (v_tournament_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface v_tournament_player_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** input type for inserting object relation for remote table "v_team_stage_results" */ -export interface v_team_stage_results_obj_rel_insert_input {data: v_team_stage_results_insert_input, -/** upsert condition */ -on_conflict?: (v_team_stage_results_on_conflict | null)} - - -/** on_conflict condition type for table "v_team_stage_results" */ -export interface v_team_stage_results_on_conflict {constraint: v_team_stage_results_constraint,update_columns?: v_team_stage_results_update_column[],where?: (v_team_stage_results_bool_exp | null)} +/** order by max() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} -/** Ordering options when selecting data from "v_team_stage_results". */ -export interface v_team_stage_results_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),stage?: (tournament_stages_order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_stage_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} +/** aggregate min on columns */ +export interface v_tournament_player_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** primary key columns input for table: v_team_stage_results */ -export interface v_team_stage_results_pk_columns_input {tournament_stage_id: Scalars['uuid'],tournament_team_id: Scalars['uuid']} +/** order by min() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} -/** input type for updating data in table "v_team_stage_results" */ -export interface v_team_stage_results_set_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} +/** Ordering options when selecting data from "v_tournament_player_stats". */ +export interface v_tournament_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} /** aggregate stddev on columns */ -export interface v_team_stage_results_stddev_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +export interface v_tournament_player_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_stddev_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} +/** order by stddev() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} /** aggregate stddev_pop on columns */ -export interface v_team_stage_results_stddev_pop_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +export interface v_tournament_player_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_pop() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_stddev_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} +/** order by stddev_pop() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} /** aggregate stddev_samp on columns */ -export interface v_team_stage_results_stddev_samp_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +export interface v_tournament_player_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev_samp() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_stddev_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} +/** order by stddev_samp() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} -/** Streaming cursor of the table "v_team_stage_results" */ -export interface v_team_stage_results_stream_cursor_input { +/** Streaming cursor of the table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_stream_cursor_input { /** Stream column input with initial value */ -initial_value: v_team_stage_results_stream_cursor_value_input, +initial_value: v_tournament_player_stats_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface v_team_stage_results_stream_cursor_value_input {group_number?: (Scalars['Int'] | null),head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),placement?: (Scalars['Int'] | null),rank?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_stage_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} +export interface v_tournament_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} /** aggregate sum on columns */ -export interface v_team_stage_results_sum_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +export interface v_tournament_player_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by sum() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_sum_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} - -export interface v_team_stage_results_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (v_team_stage_results_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (v_team_stage_results_set_input | null), -/** filter the rows which have to be updated */ -where: v_team_stage_results_bool_exp} +/** order by sum() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} /** aggregate var_pop on columns */ -export interface v_team_stage_results_var_pop_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +export interface v_tournament_player_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_pop() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_var_pop_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} +/** order by var_pop() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} /** aggregate var_samp on columns */ -export interface v_team_stage_results_var_samp_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +export interface v_tournament_player_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by var_samp() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_var_samp_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} +/** order by var_samp() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} /** aggregate variance on columns */ -export interface v_team_stage_results_variance_fieldsGenqlSelection{ - group_number?: boolean | number - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number +export interface v_tournament_player_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number matches_played?: boolean | number - matches_remaining?: boolean | number - placement?: boolean | number - rank?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number + player_steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by variance() on columns of table "v_team_stage_results" */ -export interface v_team_stage_results_variance_order_by {group_number?: (order_by | null),head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),placement?: (order_by | null),rank?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} +/** order by variance() on columns of table "v_tournament_player_stats" */ +export interface v_tournament_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} +export type QueryGenqlSelection = query_rootGenqlSelection +export type MutationGenqlSelection = mutation_rootGenqlSelection +export type SubscriptionGenqlSelection = subscription_rootGenqlSelection -/** columns and relationships of "v_team_tournament_results" */ -export interface v_team_tournament_resultsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - /** An object relationship */ - team?: tournament_teamsGenqlSelection - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + + const ActiveConnection_possibleTypes: string[] = ['ActiveConnection'] + export const isActiveConnection = (obj?: { __typename?: any } | null): obj is ActiveConnection => { + if (!obj?.__typename) throw new Error('__typename is missing in "isActiveConnection"') + return ActiveConnection_possibleTypes.includes(obj.__typename) + } + + + + const ActiveQuery_possibleTypes: string[] = ['ActiveQuery'] + export const isActiveQuery = (obj?: { __typename?: any } | null): obj is ActiveQuery => { + if (!obj?.__typename) throw new Error('__typename is missing in "isActiveQuery"') + return ActiveQuery_possibleTypes.includes(obj.__typename) + } + + + + const ApiKeyResponse_possibleTypes: string[] = ['ApiKeyResponse'] + export const isApiKeyResponse = (obj?: { __typename?: any } | null): obj is ApiKeyResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isApiKeyResponse"') + return ApiKeyResponse_possibleTypes.includes(obj.__typename) + } + + + + const ConnectionByState_possibleTypes: string[] = ['ConnectionByState'] + export const isConnectionByState = (obj?: { __typename?: any } | null): obj is ConnectionByState => { + if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionByState"') + return ConnectionByState_possibleTypes.includes(obj.__typename) + } + + + + const ConnectionStats_possibleTypes: string[] = ['ConnectionStats'] + export const isConnectionStats = (obj?: { __typename?: any } | null): obj is ConnectionStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionStats"') + return ConnectionStats_possibleTypes.includes(obj.__typename) + } + + + + const CpuStat_possibleTypes: string[] = ['CpuStat'] + export const isCpuStat = (obj?: { __typename?: any } | null): obj is CpuStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCpuStat"') + return CpuStat_possibleTypes.includes(obj.__typename) + } + + + + const CreateClipRenderOutput_possibleTypes: string[] = ['CreateClipRenderOutput'] + export const isCreateClipRenderOutput = (obj?: { __typename?: any } | null): obj is CreateClipRenderOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCreateClipRenderOutput"') + return CreateClipRenderOutput_possibleTypes.includes(obj.__typename) + } + + + + const CreateDraftGameOutput_possibleTypes: string[] = ['CreateDraftGameOutput'] + export const isCreateDraftGameOutput = (obj?: { __typename?: any } | null): obj is CreateDraftGameOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCreateDraftGameOutput"') + return CreateDraftGameOutput_possibleTypes.includes(obj.__typename) + } + + + + const CreateScheduledMatchOutput_possibleTypes: string[] = ['CreateScheduledMatchOutput'] + export const isCreateScheduledMatchOutput = (obj?: { __typename?: any } | null): obj is CreateScheduledMatchOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCreateScheduledMatchOutput"') + return CreateScheduledMatchOutput_possibleTypes.includes(obj.__typename) + } + + + + const DatabaseStats_possibleTypes: string[] = ['DatabaseStats'] + export const isDatabaseStats = (obj?: { __typename?: any } | null): obj is DatabaseStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDatabaseStats"') + return DatabaseStats_possibleTypes.includes(obj.__typename) + } + + + + const DbStats_possibleTypes: string[] = ['DbStats'] + export const isDbStats = (obj?: { __typename?: any } | null): obj is DbStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDbStats"') + return DbStats_possibleTypes.includes(obj.__typename) + } + + + + const DedicatedSeverInfo_possibleTypes: string[] = ['DedicatedSeverInfo'] + export const isDedicatedSeverInfo = (obj?: { __typename?: any } | null): obj is DedicatedSeverInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDedicatedSeverInfo"') + return DedicatedSeverInfo_possibleTypes.includes(obj.__typename) + } + + + + const DeleteOrphansOutput_possibleTypes: string[] = ['DeleteOrphansOutput'] + export const isDeleteOrphansOutput = (obj?: { __typename?: any } | null): obj is DeleteOrphansOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteOrphansOutput"') + return DeleteOrphansOutput_possibleTypes.includes(obj.__typename) + } + + + + const DiskStat_possibleTypes: string[] = ['DiskStat'] + export const isDiskStat = (obj?: { __typename?: any } | null): obj is DiskStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStat"') + return DiskStat_possibleTypes.includes(obj.__typename) + } + + + + const DiskStats_possibleTypes: string[] = ['DiskStats'] + export const isDiskStats = (obj?: { __typename?: any } | null): obj is DiskStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStats"') + return DiskStats_possibleTypes.includes(obj.__typename) + } + + + + const DraftGamePreviewOutput_possibleTypes: string[] = ['DraftGamePreviewOutput'] + export const isDraftGamePreviewOutput = (obj?: { __typename?: any } | null): obj is DraftGamePreviewOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewOutput"') + return DraftGamePreviewOutput_possibleTypes.includes(obj.__typename) + } + + + + const DraftGamePreviewPlayer_possibleTypes: string[] = ['DraftGamePreviewPlayer'] + export const isDraftGamePreviewPlayer = (obj?: { __typename?: any } | null): obj is DraftGamePreviewPlayer => { + if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewPlayer"') + return DraftGamePreviewPlayer_possibleTypes.includes(obj.__typename) + } + + + + const FaceitTestOutput_possibleTypes: string[] = ['FaceitTestOutput'] + export const isFaceitTestOutput = (obj?: { __typename?: any } | null): obj is FaceitTestOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestOutput"') + return FaceitTestOutput_possibleTypes.includes(obj.__typename) + } + + + + const FaceitTestResult_possibleTypes: string[] = ['FaceitTestResult'] + export const isFaceitTestResult = (obj?: { __typename?: any } | null): obj is FaceitTestResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestResult"') + return FaceitTestResult_possibleTypes.includes(obj.__typename) + } + + + + const FileContentResponse_possibleTypes: string[] = ['FileContentResponse'] + export const isFileContentResponse = (obj?: { __typename?: any } | null): obj is FileContentResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFileContentResponse"') + return FileContentResponse_possibleTypes.includes(obj.__typename) + } + + + + const FileItem_possibleTypes: string[] = ['FileItem'] + export const isFileItem = (obj?: { __typename?: any } | null): obj is FileItem => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFileItem"') + return FileItem_possibleTypes.includes(obj.__typename) + } + + + + const FileListResponse_possibleTypes: string[] = ['FileListResponse'] + export const isFileListResponse = (obj?: { __typename?: any } | null): obj is FileListResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isFileListResponse"') + return FileListResponse_possibleTypes.includes(obj.__typename) + } + + + + const GetTestUploadResponse_possibleTypes: string[] = ['GetTestUploadResponse'] + export const isGetTestUploadResponse = (obj?: { __typename?: any } | null): obj is GetTestUploadResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isGetTestUploadResponse"') + return GetTestUploadResponse_possibleTypes.includes(obj.__typename) + } + -/** aggregated selection of "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregateGenqlSelection{ - aggregate?: v_team_tournament_results_aggregate_fieldsGenqlSelection - nodes?: v_team_tournament_resultsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} + const GpuDeviceStat_possibleTypes: string[] = ['GpuDeviceStat'] + export const isGpuDeviceStat = (obj?: { __typename?: any } | null): obj is GpuDeviceStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isGpuDeviceStat"') + return GpuDeviceStat_possibleTypes.includes(obj.__typename) + } + -export interface v_team_tournament_results_aggregate_bool_exp {avg?: (v_team_tournament_results_aggregate_bool_exp_avg | null),corr?: (v_team_tournament_results_aggregate_bool_exp_corr | null),count?: (v_team_tournament_results_aggregate_bool_exp_count | null),covar_samp?: (v_team_tournament_results_aggregate_bool_exp_covar_samp | null),max?: (v_team_tournament_results_aggregate_bool_exp_max | null),min?: (v_team_tournament_results_aggregate_bool_exp_min | null),stddev_samp?: (v_team_tournament_results_aggregate_bool_exp_stddev_samp | null),sum?: (v_team_tournament_results_aggregate_bool_exp_sum | null),var_samp?: (v_team_tournament_results_aggregate_bool_exp_var_samp | null)} -export interface v_team_tournament_results_aggregate_bool_exp_avg {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + const GpuStats_possibleTypes: string[] = ['GpuStats'] + export const isGpuStats = (obj?: { __typename?: any } | null): obj is GpuStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isGpuStats"') + return GpuStats_possibleTypes.includes(obj.__typename) + } + -export interface v_team_tournament_results_aggregate_bool_exp_corr {arguments: v_team_tournament_results_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} -export interface v_team_tournament_results_aggregate_bool_exp_corr_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_corr_arguments_columns} + const HighlightPresetAvailability_possibleTypes: string[] = ['HighlightPresetAvailability'] + export const isHighlightPresetAvailability = (obj?: { __typename?: any } | null): obj is HighlightPresetAvailability => { + if (!obj?.__typename) throw new Error('__typename is missing in "isHighlightPresetAvailability"') + return HighlightPresetAvailability_possibleTypes.includes(obj.__typename) + } + -export interface v_team_tournament_results_aggregate_bool_exp_count {arguments?: (v_team_tournament_results_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: Int_comparison_exp} -export interface v_team_tournament_results_aggregate_bool_exp_covar_samp {arguments: v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + const HypertableInfo_possibleTypes: string[] = ['HypertableInfo'] + export const isHypertableInfo = (obj?: { __typename?: any } | null): obj is HypertableInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isHypertableInfo"') + return HypertableInfo_possibleTypes.includes(obj.__typename) + } + -export interface v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments {X: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments_columns} -export interface v_team_tournament_results_aggregate_bool_exp_max {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + const IndexIOStat_possibleTypes: string[] = ['IndexIOStat'] + export const isIndexIOStat = (obj?: { __typename?: any } | null): obj is IndexIOStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isIndexIOStat"') + return IndexIOStat_possibleTypes.includes(obj.__typename) + } + -export interface v_team_tournament_results_aggregate_bool_exp_min {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} -export interface v_team_tournament_results_aggregate_bool_exp_stddev_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + const IndexStat_possibleTypes: string[] = ['IndexStat'] + export const isIndexStat = (obj?: { __typename?: any } | null): obj is IndexStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isIndexStat"') + return IndexStat_possibleTypes.includes(obj.__typename) + } + -export interface v_team_tournament_results_aggregate_bool_exp_sum {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} -export interface v_team_tournament_results_aggregate_bool_exp_var_samp {arguments: v_team_tournament_results_select_column_v_team_tournament_results_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_team_tournament_results_bool_exp | null),predicate: float8_comparison_exp} + const KickResult_possibleTypes: string[] = ['KickResult'] + export const isKickResult = (obj?: { __typename?: any } | null): obj is KickResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isKickResult"') + return KickResult_possibleTypes.includes(obj.__typename) + } + -/** aggregate fields of "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregate_fieldsGenqlSelection{ - avg?: v_team_tournament_results_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_team_tournament_results_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_team_tournament_results_max_fieldsGenqlSelection - min?: v_team_tournament_results_min_fieldsGenqlSelection - stddev?: v_team_tournament_results_stddev_fieldsGenqlSelection - stddev_pop?: v_team_tournament_results_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_team_tournament_results_stddev_samp_fieldsGenqlSelection - sum?: v_team_tournament_results_sum_fieldsGenqlSelection - var_pop?: v_team_tournament_results_var_pop_fieldsGenqlSelection - var_samp?: v_team_tournament_results_var_samp_fieldsGenqlSelection - variance?: v_team_tournament_results_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} + const LiveSpecGsi_possibleTypes: string[] = ['LiveSpecGsi'] + export const isLiveSpecGsi = (obj?: { __typename?: any } | null): obj is LiveSpecGsi => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecGsi"') + return LiveSpecGsi_possibleTypes.includes(obj.__typename) + } + -/** order by aggregate values of table "v_team_tournament_results" */ -export interface v_team_tournament_results_aggregate_order_by {avg?: (v_team_tournament_results_avg_order_by | null),count?: (order_by | null),max?: (v_team_tournament_results_max_order_by | null),min?: (v_team_tournament_results_min_order_by | null),stddev?: (v_team_tournament_results_stddev_order_by | null),stddev_pop?: (v_team_tournament_results_stddev_pop_order_by | null),stddev_samp?: (v_team_tournament_results_stddev_samp_order_by | null),sum?: (v_team_tournament_results_sum_order_by | null),var_pop?: (v_team_tournament_results_var_pop_order_by | null),var_samp?: (v_team_tournament_results_var_samp_order_by | null),variance?: (v_team_tournament_results_variance_order_by | null)} + const LiveSpecSlot_possibleTypes: string[] = ['LiveSpecSlot'] + export const isLiveSpecSlot = (obj?: { __typename?: any } | null): obj is LiveSpecSlot => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecSlot"') + return LiveSpecSlot_possibleTypes.includes(obj.__typename) + } + -/** input type for inserting array relation for remote table "v_team_tournament_results" */ -export interface v_team_tournament_results_arr_rel_insert_input {data: v_team_tournament_results_insert_input[]} + const LiveStreamSpecState_possibleTypes: string[] = ['LiveStreamSpecState'] + export const isLiveStreamSpecState = (obj?: { __typename?: any } | null): obj is LiveStreamSpecState => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLiveStreamSpecState"') + return LiveStreamSpecState_possibleTypes.includes(obj.__typename) + } + -/** aggregate avg on columns */ -export interface v_team_tournament_results_avg_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const LockInfo_possibleTypes: string[] = ['LockInfo'] + export const isLockInfo = (obj?: { __typename?: any } | null): obj is LockInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isLockInfo"') + return LockInfo_possibleTypes.includes(obj.__typename) + } + -/** order by avg() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_avg_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const MeResponse_possibleTypes: string[] = ['MeResponse'] + export const isMeResponse = (obj?: { __typename?: any } | null): obj is MeResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isMeResponse"') + return MeResponse_possibleTypes.includes(obj.__typename) + } + -/** Boolean expression to filter rows from the table "v_team_tournament_results". All fields are combined with a logical 'AND'. */ -export interface v_team_tournament_results_bool_exp {_and?: (v_team_tournament_results_bool_exp[] | null),_not?: (v_team_tournament_results_bool_exp | null),_or?: (v_team_tournament_results_bool_exp[] | null),head_to_head_match_wins?: (Int_comparison_exp | null),head_to_head_rounds_won?: (Int_comparison_exp | null),losses?: (Int_comparison_exp | null),maps_lost?: (Int_comparison_exp | null),maps_won?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),matches_remaining?: (Int_comparison_exp | null),rounds_lost?: (Int_comparison_exp | null),rounds_won?: (Int_comparison_exp | null),team?: (tournament_teams_bool_exp | null),team_kdr?: (float8_comparison_exp | null),total_deaths?: (Int_comparison_exp | null),total_kills?: (Int_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),tournament_team_id?: (uuid_comparison_exp | null),wins?: (Int_comparison_exp | null)} + const MemoryStat_possibleTypes: string[] = ['MemoryStat'] + export const isMemoryStat = (obj?: { __typename?: any } | null): obj is MemoryStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isMemoryStat"') + return MemoryStat_possibleTypes.includes(obj.__typename) + } + -/** input type for inserting data into table "v_team_tournament_results" */ -export interface v_team_tournament_results_insert_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team?: (tournament_teams_obj_rel_insert_input | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + const NetworkStats_possibleTypes: string[] = ['NetworkStats'] + export const isNetworkStats = (obj?: { __typename?: any } | null): obj is NetworkStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNetworkStats"') + return NetworkStats_possibleTypes.includes(obj.__typename) + } + -/** aggregate max on columns */ -export interface v_team_tournament_results_max_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const NewsPost_possibleTypes: string[] = ['NewsPost'] + export const isNewsPost = (obj?: { __typename?: any } | null): obj is NewsPost => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNewsPost"') + return NewsPost_possibleTypes.includes(obj.__typename) + } + -/** order by max() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_max_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + const NicStat_possibleTypes: string[] = ['NicStat'] + export const isNicStat = (obj?: { __typename?: any } | null): obj is NicStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNicStat"') + return NicStat_possibleTypes.includes(obj.__typename) + } + -/** aggregate min on columns */ -export interface v_team_tournament_results_min_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - tournament_id?: boolean | number - tournament_team_id?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const NodeStats_possibleTypes: string[] = ['NodeStats'] + export const isNodeStats = (obj?: { __typename?: any } | null): obj is NodeStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isNodeStats"') + return NodeStats_possibleTypes.includes(obj.__typename) + } + -/** order by min() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_min_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + const OrphanObject_possibleTypes: string[] = ['OrphanObject'] + export const isOrphanObject = (obj?: { __typename?: any } | null): obj is OrphanObject => { + if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanObject"') + return OrphanObject_possibleTypes.includes(obj.__typename) + } + -/** Ordering options when selecting data from "v_team_tournament_results". */ -export interface v_team_tournament_results_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team?: (tournament_teams_order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),tournament_team_id?: (order_by | null),wins?: (order_by | null)} + const OrphanScanResultOutput_possibleTypes: string[] = ['OrphanScanResultOutput'] + export const isOrphanScanResultOutput = (obj?: { __typename?: any } | null): obj is OrphanScanResultOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanScanResultOutput"') + return OrphanScanResultOutput_possibleTypes.includes(obj.__typename) + } + -/** aggregate stddev on columns */ -export interface v_team_tournament_results_stddev_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const PendingMatchImportActionOutput_possibleTypes: string[] = ['PendingMatchImportActionOutput'] + export const isPendingMatchImportActionOutput = (obj?: { __typename?: any } | null): obj is PendingMatchImportActionOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isPendingMatchImportActionOutput"') + return PendingMatchImportActionOutput_possibleTypes.includes(obj.__typename) + } + -/** order by stddev() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_stddev_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const PodStats_possibleTypes: string[] = ['PodStats'] + export const isPodStats = (obj?: { __typename?: any } | null): obj is PodStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isPodStats"') + return PodStats_possibleTypes.includes(obj.__typename) + } + -/** aggregate stddev_pop on columns */ -export interface v_team_tournament_results_stddev_pop_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const PreviewTournamentMatchResetOutput_possibleTypes: string[] = ['PreviewTournamentMatchResetOutput'] + export const isPreviewTournamentMatchResetOutput = (obj?: { __typename?: any } | null): obj is PreviewTournamentMatchResetOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isPreviewTournamentMatchResetOutput"') + return PreviewTournamentMatchResetOutput_possibleTypes.includes(obj.__typename) + } + -/** order by stddev_pop() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_stddev_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const QueryDetail_possibleTypes: string[] = ['QueryDetail'] + export const isQueryDetail = (obj?: { __typename?: any } | null): obj is QueryDetail => { + if (!obj?.__typename) throw new Error('__typename is missing in "isQueryDetail"') + return QueryDetail_possibleTypes.includes(obj.__typename) + } + -/** aggregate stddev_samp on columns */ -export interface v_team_tournament_results_stddev_samp_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const QueryStat_possibleTypes: string[] = ['QueryStat'] + export const isQueryStat = (obj?: { __typename?: any } | null): obj is QueryStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isQueryStat"') + return QueryStat_possibleTypes.includes(obj.__typename) + } + -/** order by stddev_samp() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_stddev_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const RecomputeEloStartedOutput_possibleTypes: string[] = ['RecomputeEloStartedOutput'] + export const isRecomputeEloStartedOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStartedOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStartedOutput"') + return RecomputeEloStartedOutput_possibleTypes.includes(obj.__typename) + } + -/** Streaming cursor of the table "v_team_tournament_results" */ -export interface v_team_tournament_results_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_team_tournament_results_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} + const RecomputeEloStatusOutput_possibleTypes: string[] = ['RecomputeEloStatusOutput'] + export const isRecomputeEloStatusOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStatusOutput"') + return RecomputeEloStatusOutput_possibleTypes.includes(obj.__typename) + } + -/** Initial value of the column from where the streaming should start */ -export interface v_team_tournament_results_stream_cursor_value_input {head_to_head_match_wins?: (Scalars['Int'] | null),head_to_head_rounds_won?: (Scalars['Int'] | null),losses?: (Scalars['Int'] | null),maps_lost?: (Scalars['Int'] | null),maps_won?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),matches_remaining?: (Scalars['Int'] | null),rounds_lost?: (Scalars['Int'] | null),rounds_won?: (Scalars['Int'] | null),team_kdr?: (Scalars['float8'] | null),total_deaths?: (Scalars['Int'] | null),total_kills?: (Scalars['Int'] | null),tournament_id?: (Scalars['uuid'] | null),tournament_team_id?: (Scalars['uuid'] | null),wins?: (Scalars['Int'] | null)} + const ReindexStartedOutput_possibleTypes: string[] = ['ReindexStartedOutput'] + export const isReindexStartedOutput = (obj?: { __typename?: any } | null): obj is ReindexStartedOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReindexStartedOutput"') + return ReindexStartedOutput_possibleTypes.includes(obj.__typename) + } + -/** aggregate sum on columns */ -export interface v_team_tournament_results_sum_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const ReindexStatusOutput_possibleTypes: string[] = ['ReindexStatusOutput'] + export const isReindexStatusOutput = (obj?: { __typename?: any } | null): obj is ReindexStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReindexStatusOutput"') + return ReindexStatusOutput_possibleTypes.includes(obj.__typename) + } + -/** order by sum() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_sum_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const ReparseAllStartedOutput_possibleTypes: string[] = ['ReparseAllStartedOutput'] + export const isReparseAllStartedOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStartedOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStartedOutput"') + return ReparseAllStartedOutput_possibleTypes.includes(obj.__typename) + } + -/** aggregate var_pop on columns */ -export interface v_team_tournament_results_var_pop_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const ReparseAllStatusOutput_possibleTypes: string[] = ['ReparseAllStatusOutput'] + export const isReparseAllStatusOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStatusOutput"') + return ReparseAllStatusOutput_possibleTypes.includes(obj.__typename) + } + -/** order by var_pop() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_var_pop_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const SanctionResult_possibleTypes: string[] = ['SanctionResult'] + export const isSanctionResult = (obj?: { __typename?: any } | null): obj is SanctionResult => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSanctionResult"') + return SanctionResult_possibleTypes.includes(obj.__typename) + } + -/** aggregate var_samp on columns */ -export interface v_team_tournament_results_var_samp_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const ScanStartedOutput_possibleTypes: string[] = ['ScanStartedOutput'] + export const isScanStartedOutput = (obj?: { __typename?: any } | null): obj is ScanStartedOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isScanStartedOutput"') + return ScanStartedOutput_possibleTypes.includes(obj.__typename) + } + -/** order by var_samp() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_var_samp_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const SeasonBackfillStatusOutput_possibleTypes: string[] = ['SeasonBackfillStatusOutput'] + export const isSeasonBackfillStatusOutput = (obj?: { __typename?: any } | null): obj is SeasonBackfillStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSeasonBackfillStatusOutput"') + return SeasonBackfillStatusOutput_possibleTypes.includes(obj.__typename) + } + -/** aggregate variance on columns */ -export interface v_team_tournament_results_variance_fieldsGenqlSelection{ - head_to_head_match_wins?: boolean | number - head_to_head_rounds_won?: boolean | number - losses?: boolean | number - maps_lost?: boolean | number - maps_won?: boolean | number - matches_played?: boolean | number - matches_remaining?: boolean | number - rounds_lost?: boolean | number - rounds_won?: boolean | number - team_kdr?: boolean | number - total_deaths?: boolean | number - total_kills?: boolean | number - wins?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const ServerPlayer_possibleTypes: string[] = ['ServerPlayer'] + export const isServerPlayer = (obj?: { __typename?: any } | null): obj is ServerPlayer => { + if (!obj?.__typename) throw new Error('__typename is missing in "isServerPlayer"') + return ServerPlayer_possibleTypes.includes(obj.__typename) + } + -/** order by variance() on columns of table "v_team_tournament_results" */ -export interface v_team_tournament_results_variance_order_by {head_to_head_match_wins?: (order_by | null),head_to_head_rounds_won?: (order_by | null),losses?: (order_by | null),maps_lost?: (order_by | null),maps_won?: (order_by | null),matches_played?: (order_by | null),matches_remaining?: (order_by | null),rounds_lost?: (order_by | null),rounds_won?: (order_by | null),team_kdr?: (order_by | null),total_deaths?: (order_by | null),total_kills?: (order_by | null),wins?: (order_by | null)} + const SetupGameServeOutput_possibleTypes: string[] = ['SetupGameServeOutput'] + export const isSetupGameServeOutput = (obj?: { __typename?: any } | null): obj is SetupGameServeOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSetupGameServeOutput"') + return SetupGameServeOutput_possibleTypes.includes(obj.__typename) + } + -/** columns and relationships of "v_tournament_player_stats" */ -export interface v_tournament_player_statsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - /** An object relationship */ - player?: playersGenqlSelection - player_steam_id?: boolean | number - /** An object relationship */ - tournament?: tournamentsGenqlSelection - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const SteamMatchHistoryLinkOutput_possibleTypes: string[] = ['SteamMatchHistoryLinkOutput'] + export const isSteamMatchHistoryLinkOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryLinkOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryLinkOutput"') + return SteamMatchHistoryLinkOutput_possibleTypes.includes(obj.__typename) + } + + + + const SteamMatchHistoryPollOutput_possibleTypes: string[] = ['SteamMatchHistoryPollOutput'] + export const isSteamMatchHistoryPollOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryPollOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryPollOutput"') + return SteamMatchHistoryPollOutput_possibleTypes.includes(obj.__typename) + } + + + + const SteamPresenceAdminStatusOutput_possibleTypes: string[] = ['SteamPresenceAdminStatusOutput'] + export const isSteamPresenceAdminStatusOutput = (obj?: { __typename?: any } | null): obj is SteamPresenceAdminStatusOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceAdminStatusOutput"') + return SteamPresenceAdminStatusOutput_possibleTypes.includes(obj.__typename) + } + -/** aggregated selection of "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregateGenqlSelection{ - aggregate?: v_tournament_player_stats_aggregate_fieldsGenqlSelection - nodes?: v_tournament_player_statsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} + const SteamPresenceBot_possibleTypes: string[] = ['SteamPresenceBot'] + export const isSteamPresenceBot = (obj?: { __typename?: any } | null): obj is SteamPresenceBot => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBot"') + return SteamPresenceBot_possibleTypes.includes(obj.__typename) + } + -export interface v_tournament_player_stats_aggregate_bool_exp {avg?: (v_tournament_player_stats_aggregate_bool_exp_avg | null),corr?: (v_tournament_player_stats_aggregate_bool_exp_corr | null),count?: (v_tournament_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_tournament_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_tournament_player_stats_aggregate_bool_exp_max | null),min?: (v_tournament_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_tournament_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_tournament_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_tournament_player_stats_aggregate_bool_exp_var_samp | null)} -export interface v_tournament_player_stats_aggregate_bool_exp_avg {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + const SteamPresenceBotAssignment_possibleTypes: string[] = ['SteamPresenceBotAssignment'] + export const isSteamPresenceBotAssignment = (obj?: { __typename?: any } | null): obj is SteamPresenceBotAssignment => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBotAssignment"') + return SteamPresenceBotAssignment_possibleTypes.includes(obj.__typename) + } + -export interface v_tournament_player_stats_aggregate_bool_exp_corr {arguments: v_tournament_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} -export interface v_tournament_player_stats_aggregate_bool_exp_corr_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_corr_arguments_columns} + const SteamPresencePool_possibleTypes: string[] = ['SteamPresencePool'] + export const isSteamPresencePool = (obj?: { __typename?: any } | null): obj is SteamPresencePool => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresencePool"') + return SteamPresencePool_possibleTypes.includes(obj.__typename) + } + -export interface v_tournament_player_stats_aggregate_bool_exp_count {arguments?: (v_tournament_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: Int_comparison_exp} -export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp {arguments: v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + const StorageStats_possibleTypes: string[] = ['StorageStats'] + export const isStorageStats = (obj?: { __typename?: any } | null): obj is StorageStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isStorageStats"') + return StorageStats_possibleTypes.includes(obj.__typename) + } + -export interface v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} -export interface v_tournament_player_stats_aggregate_bool_exp_max {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + const StorageSummary_possibleTypes: string[] = ['StorageSummary'] + export const isStorageSummary = (obj?: { __typename?: any } | null): obj is StorageSummary => { + if (!obj?.__typename) throw new Error('__typename is missing in "isStorageSummary"') + return StorageSummary_possibleTypes.includes(obj.__typename) + } + -export interface v_tournament_player_stats_aggregate_bool_exp_min {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} -export interface v_tournament_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + const SuccessOutput_possibleTypes: string[] = ['SuccessOutput'] + export const isSuccessOutput = (obj?: { __typename?: any } | null): obj is SuccessOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isSuccessOutput"') + return SuccessOutput_possibleTypes.includes(obj.__typename) + } + -export interface v_tournament_player_stats_aggregate_bool_exp_sum {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} -export interface v_tournament_player_stats_aggregate_bool_exp_var_samp {arguments: v_tournament_player_stats_select_column_v_tournament_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_tournament_player_stats_bool_exp | null),predicate: float8_comparison_exp} + const TableIOStat_possibleTypes: string[] = ['TableIOStat'] + export const isTableIOStat = (obj?: { __typename?: any } | null): obj is TableIOStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTableIOStat"') + return TableIOStat_possibleTypes.includes(obj.__typename) + } + -/** aggregate fields of "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregate_fieldsGenqlSelection{ - avg?: v_tournament_player_stats_avg_fieldsGenqlSelection - count?: { __args: {columns?: (v_tournament_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_tournament_player_stats_max_fieldsGenqlSelection - min?: v_tournament_player_stats_min_fieldsGenqlSelection - stddev?: v_tournament_player_stats_stddev_fieldsGenqlSelection - stddev_pop?: v_tournament_player_stats_stddev_pop_fieldsGenqlSelection - stddev_samp?: v_tournament_player_stats_stddev_samp_fieldsGenqlSelection - sum?: v_tournament_player_stats_sum_fieldsGenqlSelection - var_pop?: v_tournament_player_stats_var_pop_fieldsGenqlSelection - var_samp?: v_tournament_player_stats_var_samp_fieldsGenqlSelection - variance?: v_tournament_player_stats_variance_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} + const TableSizeInfo_possibleTypes: string[] = ['TableSizeInfo'] + export const isTableSizeInfo = (obj?: { __typename?: any } | null): obj is TableSizeInfo => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTableSizeInfo"') + return TableSizeInfo_possibleTypes.includes(obj.__typename) + } + -/** order by aggregate values of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_aggregate_order_by {avg?: (v_tournament_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_tournament_player_stats_max_order_by | null),min?: (v_tournament_player_stats_min_order_by | null),stddev?: (v_tournament_player_stats_stddev_order_by | null),stddev_pop?: (v_tournament_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_tournament_player_stats_stddev_samp_order_by | null),sum?: (v_tournament_player_stats_sum_order_by | null),var_pop?: (v_tournament_player_stats_var_pop_order_by | null),var_samp?: (v_tournament_player_stats_var_samp_order_by | null),variance?: (v_tournament_player_stats_variance_order_by | null)} + const TableStat_possibleTypes: string[] = ['TableStat'] + export const isTableStat = (obj?: { __typename?: any } | null): obj is TableStat => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTableStat"') + return TableStat_possibleTypes.includes(obj.__typename) + } + -/** input type for inserting array relation for remote table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_arr_rel_insert_input {data: v_tournament_player_stats_insert_input[]} + const TeamCalendarOutput_possibleTypes: string[] = ['TeamCalendarOutput'] + export const isTeamCalendarOutput = (obj?: { __typename?: any } | null): obj is TeamCalendarOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTeamCalendarOutput"') + return TeamCalendarOutput_possibleTypes.includes(obj.__typename) + } + -/** aggregate avg on columns */ -export interface v_tournament_player_stats_avg_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const TelemetryStats_possibleTypes: string[] = ['TelemetryStats'] + export const isTelemetryStats = (obj?: { __typename?: any } | null): obj is TelemetryStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryStats"') + return TelemetryStats_possibleTypes.includes(obj.__typename) + } + -/** order by avg() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const TestUploadResponse_possibleTypes: string[] = ['TestUploadResponse'] + export const isTestUploadResponse = (obj?: { __typename?: any } | null): obj is TestUploadResponse => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTestUploadResponse"') + return TestUploadResponse_possibleTypes.includes(obj.__typename) + } + -/** Boolean expression to filter rows from the table "v_tournament_player_stats". All fields are combined with a logical 'AND'. */ -export interface v_tournament_player_stats_bool_exp {_and?: (v_tournament_player_stats_bool_exp[] | null),_not?: (v_tournament_player_stats_bool_exp | null),_or?: (v_tournament_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + const TimescaleJob_possibleTypes: string[] = ['TimescaleJob'] + export const isTimescaleJob = (obj?: { __typename?: any } | null): obj is TimescaleJob => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleJob"') + return TimescaleJob_possibleTypes.includes(obj.__typename) + } + -/** input type for inserting data into table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + const TimescaleStats_possibleTypes: string[] = ['TimescaleStats'] + export const isTimescaleStats = (obj?: { __typename?: any } | null): obj is TimescaleStats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleStats"') + return TimescaleStats_possibleTypes.includes(obj.__typename) + } + -/** aggregate max on columns */ -export interface v_tournament_player_stats_max_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const TournamentMatchResetImpact_possibleTypes: string[] = ['TournamentMatchResetImpact'] + export const isTournamentMatchResetImpact = (obj?: { __typename?: any } | null): obj is TournamentMatchResetImpact => { + if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentMatchResetImpact"') + return TournamentMatchResetImpact_possibleTypes.includes(obj.__typename) + } + -/** order by max() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} + const WatchDemoOutput_possibleTypes: string[] = ['WatchDemoOutput'] + export const isWatchDemoOutput = (obj?: { __typename?: any } | null): obj is WatchDemoOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isWatchDemoOutput"') + return WatchDemoOutput_possibleTypes.includes(obj.__typename) + } + -/** aggregate min on columns */ -export interface v_tournament_player_stats_min_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - tournament_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const _map_pool_possibleTypes: string[] = ['_map_pool'] + export const is_map_pool = (obj?: { __typename?: any } | null): obj is _map_pool => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool"') + return _map_pool_possibleTypes.includes(obj.__typename) + } + -/** order by min() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null),tournament_id?: (order_by | null)} + const _map_pool_aggregate_possibleTypes: string[] = ['_map_pool_aggregate'] + export const is_map_pool_aggregate = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate"') + return _map_pool_aggregate_possibleTypes.includes(obj.__typename) + } + -/** Ordering options when selecting data from "v_tournament_player_stats". */ -export interface v_tournament_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + const _map_pool_aggregate_fields_possibleTypes: string[] = ['_map_pool_aggregate_fields'] + export const is_map_pool_aggregate_fields = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate_fields"') + return _map_pool_aggregate_fields_possibleTypes.includes(obj.__typename) + } + -/** aggregate stddev on columns */ -export interface v_tournament_player_stats_stddev_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const _map_pool_max_fields_possibleTypes: string[] = ['_map_pool_max_fields'] + export const is_map_pool_max_fields = (obj?: { __typename?: any } | null): obj is _map_pool_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_max_fields"') + return _map_pool_max_fields_possibleTypes.includes(obj.__typename) + } + -/** order by stddev() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const _map_pool_min_fields_possibleTypes: string[] = ['_map_pool_min_fields'] + export const is_map_pool_min_fields = (obj?: { __typename?: any } | null): obj is _map_pool_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_min_fields"') + return _map_pool_min_fields_possibleTypes.includes(obj.__typename) + } + -/** aggregate stddev_pop on columns */ -export interface v_tournament_player_stats_stddev_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const _map_pool_mutation_response_possibleTypes: string[] = ['_map_pool_mutation_response'] + export const is_map_pool_mutation_response = (obj?: { __typename?: any } | null): obj is _map_pool_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_mutation_response"') + return _map_pool_mutation_response_possibleTypes.includes(obj.__typename) + } + -/** order by stddev_pop() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const abandoned_matches_possibleTypes: string[] = ['abandoned_matches'] + export const isabandoned_matches = (obj?: { __typename?: any } | null): obj is abandoned_matches => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches"') + return abandoned_matches_possibleTypes.includes(obj.__typename) + } + -/** aggregate stddev_samp on columns */ -export interface v_tournament_player_stats_stddev_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const abandoned_matches_aggregate_possibleTypes: string[] = ['abandoned_matches_aggregate'] + export const isabandoned_matches_aggregate = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate"') + return abandoned_matches_aggregate_possibleTypes.includes(obj.__typename) + } + -/** order by stddev_samp() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const abandoned_matches_aggregate_fields_possibleTypes: string[] = ['abandoned_matches_aggregate_fields'] + export const isabandoned_matches_aggregate_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate_fields"') + return abandoned_matches_aggregate_fields_possibleTypes.includes(obj.__typename) + } + -/** Streaming cursor of the table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_tournament_player_stats_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} + const abandoned_matches_avg_fields_possibleTypes: string[] = ['abandoned_matches_avg_fields'] + export const isabandoned_matches_avg_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_avg_fields"') + return abandoned_matches_avg_fields_possibleTypes.includes(obj.__typename) + } + -/** Initial value of the column from where the streaming should start */ -export interface v_tournament_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} + const abandoned_matches_max_fields_possibleTypes: string[] = ['abandoned_matches_max_fields'] + export const isabandoned_matches_max_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_max_fields"') + return abandoned_matches_max_fields_possibleTypes.includes(obj.__typename) + } + -/** aggregate sum on columns */ -export interface v_tournament_player_stats_sum_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const abandoned_matches_min_fields_possibleTypes: string[] = ['abandoned_matches_min_fields'] + export const isabandoned_matches_min_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_min_fields"') + return abandoned_matches_min_fields_possibleTypes.includes(obj.__typename) + } + -/** order by sum() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const abandoned_matches_mutation_response_possibleTypes: string[] = ['abandoned_matches_mutation_response'] + export const isabandoned_matches_mutation_response = (obj?: { __typename?: any } | null): obj is abandoned_matches_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_mutation_response"') + return abandoned_matches_mutation_response_possibleTypes.includes(obj.__typename) + } + -/** aggregate var_pop on columns */ -export interface v_tournament_player_stats_var_pop_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const abandoned_matches_stddev_fields_possibleTypes: string[] = ['abandoned_matches_stddev_fields'] + export const isabandoned_matches_stddev_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_fields"') + return abandoned_matches_stddev_fields_possibleTypes.includes(obj.__typename) + } + -/** order by var_pop() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const abandoned_matches_stddev_pop_fields_possibleTypes: string[] = ['abandoned_matches_stddev_pop_fields'] + export const isabandoned_matches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_pop_fields"') + return abandoned_matches_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + -/** aggregate var_samp on columns */ -export interface v_tournament_player_stats_var_samp_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const abandoned_matches_stddev_samp_fields_possibleTypes: string[] = ['abandoned_matches_stddev_samp_fields'] + export const isabandoned_matches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_samp_fields"') + return abandoned_matches_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + -/** order by var_samp() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const abandoned_matches_sum_fields_possibleTypes: string[] = ['abandoned_matches_sum_fields'] + export const isabandoned_matches_sum_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_sum_fields"') + return abandoned_matches_sum_fields_possibleTypes.includes(obj.__typename) + } + -/** aggregate variance on columns */ -export interface v_tournament_player_stats_variance_fieldsGenqlSelection{ - assists?: boolean | number - deaths?: boolean | number - headshot_percentage?: boolean | number - headshots?: boolean | number - kdr?: boolean | number - kills?: boolean | number - matches_played?: boolean | number - player_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} + const abandoned_matches_var_pop_fields_possibleTypes: string[] = ['abandoned_matches_var_pop_fields'] + export const isabandoned_matches_var_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_pop_fields"') + return abandoned_matches_var_pop_fields_possibleTypes.includes(obj.__typename) + } + -/** order by variance() on columns of table "v_tournament_player_stats" */ -export interface v_tournament_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + const abandoned_matches_var_samp_fields_possibleTypes: string[] = ['abandoned_matches_var_samp_fields'] + export const isabandoned_matches_var_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_samp_fields"') + return abandoned_matches_var_samp_fields_possibleTypes.includes(obj.__typename) + } + -export type QueryGenqlSelection = query_rootGenqlSelection -export type MutationGenqlSelection = mutation_rootGenqlSelection -export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + + const abandoned_matches_variance_fields_possibleTypes: string[] = ['abandoned_matches_variance_fields'] + export const isabandoned_matches_variance_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_variance_fields"') + return abandoned_matches_variance_fields_possibleTypes.includes(obj.__typename) + } + - const ActiveConnection_possibleTypes: string[] = ['ActiveConnection'] - export const isActiveConnection = (obj?: { __typename?: any } | null): obj is ActiveConnection => { - if (!obj?.__typename) throw new Error('__typename is missing in "isActiveConnection"') - return ActiveConnection_possibleTypes.includes(obj.__typename) + const api_keys_possibleTypes: string[] = ['api_keys'] + export const isapi_keys = (obj?: { __typename?: any } | null): obj is api_keys => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys"') + return api_keys_possibleTypes.includes(obj.__typename) } - const ActiveQuery_possibleTypes: string[] = ['ActiveQuery'] - export const isActiveQuery = (obj?: { __typename?: any } | null): obj is ActiveQuery => { - if (!obj?.__typename) throw new Error('__typename is missing in "isActiveQuery"') - return ActiveQuery_possibleTypes.includes(obj.__typename) + const api_keys_aggregate_possibleTypes: string[] = ['api_keys_aggregate'] + export const isapi_keys_aggregate = (obj?: { __typename?: any } | null): obj is api_keys_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate"') + return api_keys_aggregate_possibleTypes.includes(obj.__typename) } - const ApiKeyResponse_possibleTypes: string[] = ['ApiKeyResponse'] - export const isApiKeyResponse = (obj?: { __typename?: any } | null): obj is ApiKeyResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isApiKeyResponse"') - return ApiKeyResponse_possibleTypes.includes(obj.__typename) + const api_keys_aggregate_fields_possibleTypes: string[] = ['api_keys_aggregate_fields'] + export const isapi_keys_aggregate_fields = (obj?: { __typename?: any } | null): obj is api_keys_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate_fields"') + return api_keys_aggregate_fields_possibleTypes.includes(obj.__typename) } - const ConnectionByState_possibleTypes: string[] = ['ConnectionByState'] - export const isConnectionByState = (obj?: { __typename?: any } | null): obj is ConnectionByState => { - if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionByState"') - return ConnectionByState_possibleTypes.includes(obj.__typename) + const api_keys_avg_fields_possibleTypes: string[] = ['api_keys_avg_fields'] + export const isapi_keys_avg_fields = (obj?: { __typename?: any } | null): obj is api_keys_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_avg_fields"') + return api_keys_avg_fields_possibleTypes.includes(obj.__typename) } - const ConnectionStats_possibleTypes: string[] = ['ConnectionStats'] - export const isConnectionStats = (obj?: { __typename?: any } | null): obj is ConnectionStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isConnectionStats"') - return ConnectionStats_possibleTypes.includes(obj.__typename) + const api_keys_max_fields_possibleTypes: string[] = ['api_keys_max_fields'] + export const isapi_keys_max_fields = (obj?: { __typename?: any } | null): obj is api_keys_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_max_fields"') + return api_keys_max_fields_possibleTypes.includes(obj.__typename) } - const CpuStat_possibleTypes: string[] = ['CpuStat'] - export const isCpuStat = (obj?: { __typename?: any } | null): obj is CpuStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCpuStat"') - return CpuStat_possibleTypes.includes(obj.__typename) + const api_keys_min_fields_possibleTypes: string[] = ['api_keys_min_fields'] + export const isapi_keys_min_fields = (obj?: { __typename?: any } | null): obj is api_keys_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_min_fields"') + return api_keys_min_fields_possibleTypes.includes(obj.__typename) } - const CreateClipRenderOutput_possibleTypes: string[] = ['CreateClipRenderOutput'] - export const isCreateClipRenderOutput = (obj?: { __typename?: any } | null): obj is CreateClipRenderOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCreateClipRenderOutput"') - return CreateClipRenderOutput_possibleTypes.includes(obj.__typename) + const api_keys_mutation_response_possibleTypes: string[] = ['api_keys_mutation_response'] + export const isapi_keys_mutation_response = (obj?: { __typename?: any } | null): obj is api_keys_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_mutation_response"') + return api_keys_mutation_response_possibleTypes.includes(obj.__typename) } - const CreateDraftGameOutput_possibleTypes: string[] = ['CreateDraftGameOutput'] - export const isCreateDraftGameOutput = (obj?: { __typename?: any } | null): obj is CreateDraftGameOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCreateDraftGameOutput"') - return CreateDraftGameOutput_possibleTypes.includes(obj.__typename) + const api_keys_stddev_fields_possibleTypes: string[] = ['api_keys_stddev_fields'] + export const isapi_keys_stddev_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_fields"') + return api_keys_stddev_fields_possibleTypes.includes(obj.__typename) } - const CreateScheduledMatchOutput_possibleTypes: string[] = ['CreateScheduledMatchOutput'] - export const isCreateScheduledMatchOutput = (obj?: { __typename?: any } | null): obj is CreateScheduledMatchOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isCreateScheduledMatchOutput"') - return CreateScheduledMatchOutput_possibleTypes.includes(obj.__typename) + const api_keys_stddev_pop_fields_possibleTypes: string[] = ['api_keys_stddev_pop_fields'] + export const isapi_keys_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_pop_fields"') + return api_keys_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_stddev_samp_fields_possibleTypes: string[] = ['api_keys_stddev_samp_fields'] + export const isapi_keys_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_samp_fields"') + return api_keys_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const api_keys_sum_fields_possibleTypes: string[] = ['api_keys_sum_fields'] + export const isapi_keys_sum_fields = (obj?: { __typename?: any } | null): obj is api_keys_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_sum_fields"') + return api_keys_sum_fields_possibleTypes.includes(obj.__typename) } - const DatabaseStats_possibleTypes: string[] = ['DatabaseStats'] - export const isDatabaseStats = (obj?: { __typename?: any } | null): obj is DatabaseStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDatabaseStats"') - return DatabaseStats_possibleTypes.includes(obj.__typename) + const api_keys_var_pop_fields_possibleTypes: string[] = ['api_keys_var_pop_fields'] + export const isapi_keys_var_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_pop_fields"') + return api_keys_var_pop_fields_possibleTypes.includes(obj.__typename) } - const DbStats_possibleTypes: string[] = ['DbStats'] - export const isDbStats = (obj?: { __typename?: any } | null): obj is DbStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDbStats"') - return DbStats_possibleTypes.includes(obj.__typename) + const api_keys_var_samp_fields_possibleTypes: string[] = ['api_keys_var_samp_fields'] + export const isapi_keys_var_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_samp_fields"') + return api_keys_var_samp_fields_possibleTypes.includes(obj.__typename) } - const DedicatedSeverInfo_possibleTypes: string[] = ['DedicatedSeverInfo'] - export const isDedicatedSeverInfo = (obj?: { __typename?: any } | null): obj is DedicatedSeverInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDedicatedSeverInfo"') - return DedicatedSeverInfo_possibleTypes.includes(obj.__typename) + const api_keys_variance_fields_possibleTypes: string[] = ['api_keys_variance_fields'] + export const isapi_keys_variance_fields = (obj?: { __typename?: any } | null): obj is api_keys_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_variance_fields"') + return api_keys_variance_fields_possibleTypes.includes(obj.__typename) } - const DeleteOrphansOutput_possibleTypes: string[] = ['DeleteOrphansOutput'] - export const isDeleteOrphansOutput = (obj?: { __typename?: any } | null): obj is DeleteOrphansOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteOrphansOutput"') - return DeleteOrphansOutput_possibleTypes.includes(obj.__typename) + const clip_render_jobs_possibleTypes: string[] = ['clip_render_jobs'] + export const isclip_render_jobs = (obj?: { __typename?: any } | null): obj is clip_render_jobs => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs"') + return clip_render_jobs_possibleTypes.includes(obj.__typename) } - const DiskStat_possibleTypes: string[] = ['DiskStat'] - export const isDiskStat = (obj?: { __typename?: any } | null): obj is DiskStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStat"') - return DiskStat_possibleTypes.includes(obj.__typename) + const clip_render_jobs_aggregate_possibleTypes: string[] = ['clip_render_jobs_aggregate'] + export const isclip_render_jobs_aggregate = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate"') + return clip_render_jobs_aggregate_possibleTypes.includes(obj.__typename) } - const DiskStats_possibleTypes: string[] = ['DiskStats'] - export const isDiskStats = (obj?: { __typename?: any } | null): obj is DiskStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDiskStats"') - return DiskStats_possibleTypes.includes(obj.__typename) + const clip_render_jobs_aggregate_fields_possibleTypes: string[] = ['clip_render_jobs_aggregate_fields'] + export const isclip_render_jobs_aggregate_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate_fields"') + return clip_render_jobs_aggregate_fields_possibleTypes.includes(obj.__typename) } - const DraftGamePreviewOutput_possibleTypes: string[] = ['DraftGamePreviewOutput'] - export const isDraftGamePreviewOutput = (obj?: { __typename?: any } | null): obj is DraftGamePreviewOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewOutput"') - return DraftGamePreviewOutput_possibleTypes.includes(obj.__typename) + const clip_render_jobs_avg_fields_possibleTypes: string[] = ['clip_render_jobs_avg_fields'] + export const isclip_render_jobs_avg_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_avg_fields"') + return clip_render_jobs_avg_fields_possibleTypes.includes(obj.__typename) } - const DraftGamePreviewPlayer_possibleTypes: string[] = ['DraftGamePreviewPlayer'] - export const isDraftGamePreviewPlayer = (obj?: { __typename?: any } | null): obj is DraftGamePreviewPlayer => { - if (!obj?.__typename) throw new Error('__typename is missing in "isDraftGamePreviewPlayer"') - return DraftGamePreviewPlayer_possibleTypes.includes(obj.__typename) + const clip_render_jobs_max_fields_possibleTypes: string[] = ['clip_render_jobs_max_fields'] + export const isclip_render_jobs_max_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_max_fields"') + return clip_render_jobs_max_fields_possibleTypes.includes(obj.__typename) } - const FaceitTestOutput_possibleTypes: string[] = ['FaceitTestOutput'] - export const isFaceitTestOutput = (obj?: { __typename?: any } | null): obj is FaceitTestOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestOutput"') - return FaceitTestOutput_possibleTypes.includes(obj.__typename) + const clip_render_jobs_min_fields_possibleTypes: string[] = ['clip_render_jobs_min_fields'] + export const isclip_render_jobs_min_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_min_fields"') + return clip_render_jobs_min_fields_possibleTypes.includes(obj.__typename) } - const FaceitTestResult_possibleTypes: string[] = ['FaceitTestResult'] - export const isFaceitTestResult = (obj?: { __typename?: any } | null): obj is FaceitTestResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFaceitTestResult"') - return FaceitTestResult_possibleTypes.includes(obj.__typename) + const clip_render_jobs_mutation_response_possibleTypes: string[] = ['clip_render_jobs_mutation_response'] + export const isclip_render_jobs_mutation_response = (obj?: { __typename?: any } | null): obj is clip_render_jobs_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_mutation_response"') + return clip_render_jobs_mutation_response_possibleTypes.includes(obj.__typename) } - const FileContentResponse_possibleTypes: string[] = ['FileContentResponse'] - export const isFileContentResponse = (obj?: { __typename?: any } | null): obj is FileContentResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFileContentResponse"') - return FileContentResponse_possibleTypes.includes(obj.__typename) + const clip_render_jobs_stddev_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_fields'] + export const isclip_render_jobs_stddev_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_fields"') + return clip_render_jobs_stddev_fields_possibleTypes.includes(obj.__typename) } - const FileItem_possibleTypes: string[] = ['FileItem'] - export const isFileItem = (obj?: { __typename?: any } | null): obj is FileItem => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFileItem"') - return FileItem_possibleTypes.includes(obj.__typename) + const clip_render_jobs_stddev_pop_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_pop_fields'] + export const isclip_render_jobs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_pop_fields"') + return clip_render_jobs_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const FileListResponse_possibleTypes: string[] = ['FileListResponse'] - export const isFileListResponse = (obj?: { __typename?: any } | null): obj is FileListResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isFileListResponse"') - return FileListResponse_possibleTypes.includes(obj.__typename) + const clip_render_jobs_stddev_samp_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_samp_fields'] + export const isclip_render_jobs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_samp_fields"') + return clip_render_jobs_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const GetTestUploadResponse_possibleTypes: string[] = ['GetTestUploadResponse'] - export const isGetTestUploadResponse = (obj?: { __typename?: any } | null): obj is GetTestUploadResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isGetTestUploadResponse"') - return GetTestUploadResponse_possibleTypes.includes(obj.__typename) + const clip_render_jobs_sum_fields_possibleTypes: string[] = ['clip_render_jobs_sum_fields'] + export const isclip_render_jobs_sum_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_sum_fields"') + return clip_render_jobs_sum_fields_possibleTypes.includes(obj.__typename) } - const GpuDeviceStat_possibleTypes: string[] = ['GpuDeviceStat'] - export const isGpuDeviceStat = (obj?: { __typename?: any } | null): obj is GpuDeviceStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isGpuDeviceStat"') - return GpuDeviceStat_possibleTypes.includes(obj.__typename) + const clip_render_jobs_var_pop_fields_possibleTypes: string[] = ['clip_render_jobs_var_pop_fields'] + export const isclip_render_jobs_var_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_pop_fields"') + return clip_render_jobs_var_pop_fields_possibleTypes.includes(obj.__typename) } - const GpuStats_possibleTypes: string[] = ['GpuStats'] - export const isGpuStats = (obj?: { __typename?: any } | null): obj is GpuStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isGpuStats"') - return GpuStats_possibleTypes.includes(obj.__typename) + const clip_render_jobs_var_samp_fields_possibleTypes: string[] = ['clip_render_jobs_var_samp_fields'] + export const isclip_render_jobs_var_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_samp_fields"') + return clip_render_jobs_var_samp_fields_possibleTypes.includes(obj.__typename) } - const HighlightPresetAvailability_possibleTypes: string[] = ['HighlightPresetAvailability'] - export const isHighlightPresetAvailability = (obj?: { __typename?: any } | null): obj is HighlightPresetAvailability => { - if (!obj?.__typename) throw new Error('__typename is missing in "isHighlightPresetAvailability"') - return HighlightPresetAvailability_possibleTypes.includes(obj.__typename) + const clip_render_jobs_variance_fields_possibleTypes: string[] = ['clip_render_jobs_variance_fields'] + export const isclip_render_jobs_variance_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_variance_fields"') + return clip_render_jobs_variance_fields_possibleTypes.includes(obj.__typename) } - const HypertableInfo_possibleTypes: string[] = ['HypertableInfo'] - export const isHypertableInfo = (obj?: { __typename?: any } | null): obj is HypertableInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isHypertableInfo"') - return HypertableInfo_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"') + return db_backups_possibleTypes.includes(obj.__typename) } - const IndexIOStat_possibleTypes: string[] = ['IndexIOStat'] - export const isIndexIOStat = (obj?: { __typename?: any } | null): obj is IndexIOStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isIndexIOStat"') - return IndexIOStat_possibleTypes.includes(obj.__typename) + const db_backups_aggregate_possibleTypes: string[] = ['db_backups_aggregate'] + export const isdb_backups_aggregate = (obj?: { __typename?: any } | null): obj is db_backups_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate"') + return db_backups_aggregate_possibleTypes.includes(obj.__typename) } - const IndexStat_possibleTypes: string[] = ['IndexStat'] - export const isIndexStat = (obj?: { __typename?: any } | null): obj is IndexStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isIndexStat"') - return IndexStat_possibleTypes.includes(obj.__typename) + const db_backups_aggregate_fields_possibleTypes: string[] = ['db_backups_aggregate_fields'] + export const isdb_backups_aggregate_fields = (obj?: { __typename?: any } | null): obj is db_backups_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate_fields"') + return db_backups_aggregate_fields_possibleTypes.includes(obj.__typename) } - const KickResult_possibleTypes: string[] = ['KickResult'] - export const isKickResult = (obj?: { __typename?: any } | null): obj is KickResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isKickResult"') - return KickResult_possibleTypes.includes(obj.__typename) + const db_backups_avg_fields_possibleTypes: string[] = ['db_backups_avg_fields'] + export const isdb_backups_avg_fields = (obj?: { __typename?: any } | null): obj is db_backups_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_avg_fields"') + return db_backups_avg_fields_possibleTypes.includes(obj.__typename) } - const LiveSpecGsi_possibleTypes: string[] = ['LiveSpecGsi'] - export const isLiveSpecGsi = (obj?: { __typename?: any } | null): obj is LiveSpecGsi => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecGsi"') - return LiveSpecGsi_possibleTypes.includes(obj.__typename) + const db_backups_max_fields_possibleTypes: string[] = ['db_backups_max_fields'] + export const isdb_backups_max_fields = (obj?: { __typename?: any } | null): obj is db_backups_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_max_fields"') + return db_backups_max_fields_possibleTypes.includes(obj.__typename) } - const LiveSpecSlot_possibleTypes: string[] = ['LiveSpecSlot'] - export const isLiveSpecSlot = (obj?: { __typename?: any } | null): obj is LiveSpecSlot => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLiveSpecSlot"') - return LiveSpecSlot_possibleTypes.includes(obj.__typename) + const db_backups_min_fields_possibleTypes: string[] = ['db_backups_min_fields'] + export const isdb_backups_min_fields = (obj?: { __typename?: any } | null): obj is db_backups_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_min_fields"') + return db_backups_min_fields_possibleTypes.includes(obj.__typename) } - const LiveStreamSpecState_possibleTypes: string[] = ['LiveStreamSpecState'] - export const isLiveStreamSpecState = (obj?: { __typename?: any } | null): obj is LiveStreamSpecState => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLiveStreamSpecState"') - return LiveStreamSpecState_possibleTypes.includes(obj.__typename) + const db_backups_mutation_response_possibleTypes: string[] = ['db_backups_mutation_response'] + export const isdb_backups_mutation_response = (obj?: { __typename?: any } | null): obj is db_backups_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_mutation_response"') + return db_backups_mutation_response_possibleTypes.includes(obj.__typename) } - const LockInfo_possibleTypes: string[] = ['LockInfo'] - export const isLockInfo = (obj?: { __typename?: any } | null): obj is LockInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isLockInfo"') - return LockInfo_possibleTypes.includes(obj.__typename) + const db_backups_stddev_fields_possibleTypes: string[] = ['db_backups_stddev_fields'] + export const isdb_backups_stddev_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_fields"') + return db_backups_stddev_fields_possibleTypes.includes(obj.__typename) } - const MeResponse_possibleTypes: string[] = ['MeResponse'] - export const isMeResponse = (obj?: { __typename?: any } | null): obj is MeResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isMeResponse"') - return MeResponse_possibleTypes.includes(obj.__typename) + const db_backups_stddev_pop_fields_possibleTypes: string[] = ['db_backups_stddev_pop_fields'] + export const isdb_backups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_pop_fields"') + return db_backups_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const MemoryStat_possibleTypes: string[] = ['MemoryStat'] - export const isMemoryStat = (obj?: { __typename?: any } | null): obj is MemoryStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isMemoryStat"') - return MemoryStat_possibleTypes.includes(obj.__typename) + const db_backups_stddev_samp_fields_possibleTypes: string[] = ['db_backups_stddev_samp_fields'] + export const isdb_backups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_samp_fields"') + return db_backups_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const NetworkStats_possibleTypes: string[] = ['NetworkStats'] - export const isNetworkStats = (obj?: { __typename?: any } | null): obj is NetworkStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNetworkStats"') - return NetworkStats_possibleTypes.includes(obj.__typename) + const db_backups_sum_fields_possibleTypes: string[] = ['db_backups_sum_fields'] + export const isdb_backups_sum_fields = (obj?: { __typename?: any } | null): obj is db_backups_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_sum_fields"') + return db_backups_sum_fields_possibleTypes.includes(obj.__typename) } - const NewsPost_possibleTypes: string[] = ['NewsPost'] - export const isNewsPost = (obj?: { __typename?: any } | null): obj is NewsPost => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNewsPost"') - return NewsPost_possibleTypes.includes(obj.__typename) + const db_backups_var_pop_fields_possibleTypes: string[] = ['db_backups_var_pop_fields'] + export const isdb_backups_var_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_pop_fields"') + return db_backups_var_pop_fields_possibleTypes.includes(obj.__typename) } - const NicStat_possibleTypes: string[] = ['NicStat'] - export const isNicStat = (obj?: { __typename?: any } | null): obj is NicStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNicStat"') - return NicStat_possibleTypes.includes(obj.__typename) + const db_backups_var_samp_fields_possibleTypes: string[] = ['db_backups_var_samp_fields'] + export const isdb_backups_var_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_samp_fields"') + return db_backups_var_samp_fields_possibleTypes.includes(obj.__typename) } - const NodeStats_possibleTypes: string[] = ['NodeStats'] - export const isNodeStats = (obj?: { __typename?: any } | null): obj is NodeStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isNodeStats"') - return NodeStats_possibleTypes.includes(obj.__typename) + const db_backups_variance_fields_possibleTypes: string[] = ['db_backups_variance_fields'] + export const isdb_backups_variance_fields = (obj?: { __typename?: any } | null): obj is db_backups_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_variance_fields"') + return db_backups_variance_fields_possibleTypes.includes(obj.__typename) } - const OrphanObject_possibleTypes: string[] = ['OrphanObject'] - export const isOrphanObject = (obj?: { __typename?: any } | null): obj is OrphanObject => { - if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanObject"') - return OrphanObject_possibleTypes.includes(obj.__typename) + const draft_game_picks_possibleTypes: string[] = ['draft_game_picks'] + export const isdraft_game_picks = (obj?: { __typename?: any } | null): obj is draft_game_picks => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks"') + return draft_game_picks_possibleTypes.includes(obj.__typename) } - const OrphanScanResultOutput_possibleTypes: string[] = ['OrphanScanResultOutput'] - export const isOrphanScanResultOutput = (obj?: { __typename?: any } | null): obj is OrphanScanResultOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isOrphanScanResultOutput"') - return OrphanScanResultOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_aggregate_possibleTypes: string[] = ['draft_game_picks_aggregate'] + export const isdraft_game_picks_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate"') + return draft_game_picks_aggregate_possibleTypes.includes(obj.__typename) } - const PendingMatchImportActionOutput_possibleTypes: string[] = ['PendingMatchImportActionOutput'] - export const isPendingMatchImportActionOutput = (obj?: { __typename?: any } | null): obj is PendingMatchImportActionOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isPendingMatchImportActionOutput"') - return PendingMatchImportActionOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_aggregate_fields_possibleTypes: string[] = ['draft_game_picks_aggregate_fields'] + export const isdraft_game_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate_fields"') + return draft_game_picks_aggregate_fields_possibleTypes.includes(obj.__typename) } - const PodStats_possibleTypes: string[] = ['PodStats'] - export const isPodStats = (obj?: { __typename?: any } | null): obj is PodStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isPodStats"') - return PodStats_possibleTypes.includes(obj.__typename) + const draft_game_picks_avg_fields_possibleTypes: string[] = ['draft_game_picks_avg_fields'] + export const isdraft_game_picks_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_avg_fields"') + return draft_game_picks_avg_fields_possibleTypes.includes(obj.__typename) } - const PreviewTournamentMatchResetOutput_possibleTypes: string[] = ['PreviewTournamentMatchResetOutput'] - export const isPreviewTournamentMatchResetOutput = (obj?: { __typename?: any } | null): obj is PreviewTournamentMatchResetOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isPreviewTournamentMatchResetOutput"') - return PreviewTournamentMatchResetOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_max_fields_possibleTypes: string[] = ['draft_game_picks_max_fields'] + export const isdraft_game_picks_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_max_fields"') + return draft_game_picks_max_fields_possibleTypes.includes(obj.__typename) } - const QueryDetail_possibleTypes: string[] = ['QueryDetail'] - export const isQueryDetail = (obj?: { __typename?: any } | null): obj is QueryDetail => { - if (!obj?.__typename) throw new Error('__typename is missing in "isQueryDetail"') - return QueryDetail_possibleTypes.includes(obj.__typename) + const draft_game_picks_min_fields_possibleTypes: string[] = ['draft_game_picks_min_fields'] + export const isdraft_game_picks_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_min_fields"') + return draft_game_picks_min_fields_possibleTypes.includes(obj.__typename) } - const QueryStat_possibleTypes: string[] = ['QueryStat'] - export const isQueryStat = (obj?: { __typename?: any } | null): obj is QueryStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isQueryStat"') - return QueryStat_possibleTypes.includes(obj.__typename) + const draft_game_picks_mutation_response_possibleTypes: string[] = ['draft_game_picks_mutation_response'] + export const isdraft_game_picks_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_picks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_mutation_response"') + return draft_game_picks_mutation_response_possibleTypes.includes(obj.__typename) } - const RecomputeEloStartedOutput_possibleTypes: string[] = ['RecomputeEloStartedOutput'] - export const isRecomputeEloStartedOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStartedOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStartedOutput"') - return RecomputeEloStartedOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_stddev_fields_possibleTypes: string[] = ['draft_game_picks_stddev_fields'] + export const isdraft_game_picks_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_fields"') + return draft_game_picks_stddev_fields_possibleTypes.includes(obj.__typename) } - const RecomputeEloStatusOutput_possibleTypes: string[] = ['RecomputeEloStatusOutput'] - export const isRecomputeEloStatusOutput = (obj?: { __typename?: any } | null): obj is RecomputeEloStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isRecomputeEloStatusOutput"') - return RecomputeEloStatusOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_stddev_pop_fields_possibleTypes: string[] = ['draft_game_picks_stddev_pop_fields'] + export const isdraft_game_picks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_pop_fields"') + return draft_game_picks_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const ReindexStartedOutput_possibleTypes: string[] = ['ReindexStartedOutput'] - export const isReindexStartedOutput = (obj?: { __typename?: any } | null): obj is ReindexStartedOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isReindexStartedOutput"') - return ReindexStartedOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_stddev_samp_fields_possibleTypes: string[] = ['draft_game_picks_stddev_samp_fields'] + export const isdraft_game_picks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_samp_fields"') + return draft_game_picks_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const ReindexStatusOutput_possibleTypes: string[] = ['ReindexStatusOutput'] - export const isReindexStatusOutput = (obj?: { __typename?: any } | null): obj is ReindexStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isReindexStatusOutput"') - return ReindexStatusOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_sum_fields_possibleTypes: string[] = ['draft_game_picks_sum_fields'] + export const isdraft_game_picks_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_sum_fields"') + return draft_game_picks_sum_fields_possibleTypes.includes(obj.__typename) } - const ReparseAllStartedOutput_possibleTypes: string[] = ['ReparseAllStartedOutput'] - export const isReparseAllStartedOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStartedOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStartedOutput"') - return ReparseAllStartedOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_var_pop_fields_possibleTypes: string[] = ['draft_game_picks_var_pop_fields'] + export const isdraft_game_picks_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_pop_fields"') + return draft_game_picks_var_pop_fields_possibleTypes.includes(obj.__typename) } - const ReparseAllStatusOutput_possibleTypes: string[] = ['ReparseAllStatusOutput'] - export const isReparseAllStatusOutput = (obj?: { __typename?: any } | null): obj is ReparseAllStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isReparseAllStatusOutput"') - return ReparseAllStatusOutput_possibleTypes.includes(obj.__typename) + const draft_game_picks_var_samp_fields_possibleTypes: string[] = ['draft_game_picks_var_samp_fields'] + export const isdraft_game_picks_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_samp_fields"') + return draft_game_picks_var_samp_fields_possibleTypes.includes(obj.__typename) } - const SanctionResult_possibleTypes: string[] = ['SanctionResult'] - export const isSanctionResult = (obj?: { __typename?: any } | null): obj is SanctionResult => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSanctionResult"') - return SanctionResult_possibleTypes.includes(obj.__typename) + const draft_game_picks_variance_fields_possibleTypes: string[] = ['draft_game_picks_variance_fields'] + export const isdraft_game_picks_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_variance_fields"') + return draft_game_picks_variance_fields_possibleTypes.includes(obj.__typename) } - const ScanStartedOutput_possibleTypes: string[] = ['ScanStartedOutput'] - export const isScanStartedOutput = (obj?: { __typename?: any } | null): obj is ScanStartedOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isScanStartedOutput"') - return ScanStartedOutput_possibleTypes.includes(obj.__typename) + const draft_game_players_possibleTypes: string[] = ['draft_game_players'] + export const isdraft_game_players = (obj?: { __typename?: any } | null): obj is draft_game_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players"') + return draft_game_players_possibleTypes.includes(obj.__typename) } - const SeasonBackfillStatusOutput_possibleTypes: string[] = ['SeasonBackfillStatusOutput'] - export const isSeasonBackfillStatusOutput = (obj?: { __typename?: any } | null): obj is SeasonBackfillStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSeasonBackfillStatusOutput"') - return SeasonBackfillStatusOutput_possibleTypes.includes(obj.__typename) + const draft_game_players_aggregate_possibleTypes: string[] = ['draft_game_players_aggregate'] + export const isdraft_game_players_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate"') + return draft_game_players_aggregate_possibleTypes.includes(obj.__typename) } - const ServerPlayer_possibleTypes: string[] = ['ServerPlayer'] - export const isServerPlayer = (obj?: { __typename?: any } | null): obj is ServerPlayer => { - if (!obj?.__typename) throw new Error('__typename is missing in "isServerPlayer"') - return ServerPlayer_possibleTypes.includes(obj.__typename) + const draft_game_players_aggregate_fields_possibleTypes: string[] = ['draft_game_players_aggregate_fields'] + export const isdraft_game_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate_fields"') + return draft_game_players_aggregate_fields_possibleTypes.includes(obj.__typename) } - const SetupGameServeOutput_possibleTypes: string[] = ['SetupGameServeOutput'] - export const isSetupGameServeOutput = (obj?: { __typename?: any } | null): obj is SetupGameServeOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSetupGameServeOutput"') - return SetupGameServeOutput_possibleTypes.includes(obj.__typename) + const draft_game_players_avg_fields_possibleTypes: string[] = ['draft_game_players_avg_fields'] + export const isdraft_game_players_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_avg_fields"') + return draft_game_players_avg_fields_possibleTypes.includes(obj.__typename) } - const SteamMatchHistoryLinkOutput_possibleTypes: string[] = ['SteamMatchHistoryLinkOutput'] - export const isSteamMatchHistoryLinkOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryLinkOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryLinkOutput"') - return SteamMatchHistoryLinkOutput_possibleTypes.includes(obj.__typename) + const draft_game_players_max_fields_possibleTypes: string[] = ['draft_game_players_max_fields'] + export const isdraft_game_players_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_max_fields"') + return draft_game_players_max_fields_possibleTypes.includes(obj.__typename) } - const SteamMatchHistoryPollOutput_possibleTypes: string[] = ['SteamMatchHistoryPollOutput'] - export const isSteamMatchHistoryPollOutput = (obj?: { __typename?: any } | null): obj is SteamMatchHistoryPollOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamMatchHistoryPollOutput"') - return SteamMatchHistoryPollOutput_possibleTypes.includes(obj.__typename) + const draft_game_players_min_fields_possibleTypes: string[] = ['draft_game_players_min_fields'] + export const isdraft_game_players_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_min_fields"') + return draft_game_players_min_fields_possibleTypes.includes(obj.__typename) } - const SteamPresenceAdminStatusOutput_possibleTypes: string[] = ['SteamPresenceAdminStatusOutput'] - export const isSteamPresenceAdminStatusOutput = (obj?: { __typename?: any } | null): obj is SteamPresenceAdminStatusOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceAdminStatusOutput"') - return SteamPresenceAdminStatusOutput_possibleTypes.includes(obj.__typename) + const draft_game_players_mutation_response_possibleTypes: string[] = ['draft_game_players_mutation_response'] + export const isdraft_game_players_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_mutation_response"') + return draft_game_players_mutation_response_possibleTypes.includes(obj.__typename) } - const SteamPresenceBot_possibleTypes: string[] = ['SteamPresenceBot'] - export const isSteamPresenceBot = (obj?: { __typename?: any } | null): obj is SteamPresenceBot => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBot"') - return SteamPresenceBot_possibleTypes.includes(obj.__typename) + const draft_game_players_stddev_fields_possibleTypes: string[] = ['draft_game_players_stddev_fields'] + export const isdraft_game_players_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_fields"') + return draft_game_players_stddev_fields_possibleTypes.includes(obj.__typename) } - const SteamPresenceBotAssignment_possibleTypes: string[] = ['SteamPresenceBotAssignment'] - export const isSteamPresenceBotAssignment = (obj?: { __typename?: any } | null): obj is SteamPresenceBotAssignment => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresenceBotAssignment"') - return SteamPresenceBotAssignment_possibleTypes.includes(obj.__typename) + const draft_game_players_stddev_pop_fields_possibleTypes: string[] = ['draft_game_players_stddev_pop_fields'] + export const isdraft_game_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_pop_fields"') + return draft_game_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const SteamPresencePool_possibleTypes: string[] = ['SteamPresencePool'] - export const isSteamPresencePool = (obj?: { __typename?: any } | null): obj is SteamPresencePool => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSteamPresencePool"') - return SteamPresencePool_possibleTypes.includes(obj.__typename) + const draft_game_players_stddev_samp_fields_possibleTypes: string[] = ['draft_game_players_stddev_samp_fields'] + export const isdraft_game_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_samp_fields"') + return draft_game_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const StorageStats_possibleTypes: string[] = ['StorageStats'] - export const isStorageStats = (obj?: { __typename?: any } | null): obj is StorageStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isStorageStats"') - return StorageStats_possibleTypes.includes(obj.__typename) + const draft_game_players_sum_fields_possibleTypes: string[] = ['draft_game_players_sum_fields'] + export const isdraft_game_players_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_sum_fields"') + return draft_game_players_sum_fields_possibleTypes.includes(obj.__typename) } - const StorageSummary_possibleTypes: string[] = ['StorageSummary'] - export const isStorageSummary = (obj?: { __typename?: any } | null): obj is StorageSummary => { - if (!obj?.__typename) throw new Error('__typename is missing in "isStorageSummary"') - return StorageSummary_possibleTypes.includes(obj.__typename) + const draft_game_players_var_pop_fields_possibleTypes: string[] = ['draft_game_players_var_pop_fields'] + export const isdraft_game_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_pop_fields"') + return draft_game_players_var_pop_fields_possibleTypes.includes(obj.__typename) } - const SuccessOutput_possibleTypes: string[] = ['SuccessOutput'] - export const isSuccessOutput = (obj?: { __typename?: any } | null): obj is SuccessOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isSuccessOutput"') - return SuccessOutput_possibleTypes.includes(obj.__typename) + const draft_game_players_var_samp_fields_possibleTypes: string[] = ['draft_game_players_var_samp_fields'] + export const isdraft_game_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_samp_fields"') + return draft_game_players_var_samp_fields_possibleTypes.includes(obj.__typename) } - const TableIOStat_possibleTypes: string[] = ['TableIOStat'] - export const isTableIOStat = (obj?: { __typename?: any } | null): obj is TableIOStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTableIOStat"') - return TableIOStat_possibleTypes.includes(obj.__typename) + const draft_game_players_variance_fields_possibleTypes: string[] = ['draft_game_players_variance_fields'] + export const isdraft_game_players_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_variance_fields"') + return draft_game_players_variance_fields_possibleTypes.includes(obj.__typename) } - const TableSizeInfo_possibleTypes: string[] = ['TableSizeInfo'] - export const isTableSizeInfo = (obj?: { __typename?: any } | null): obj is TableSizeInfo => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTableSizeInfo"') - return TableSizeInfo_possibleTypes.includes(obj.__typename) + const draft_games_possibleTypes: string[] = ['draft_games'] + export const isdraft_games = (obj?: { __typename?: any } | null): obj is draft_games => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games"') + return draft_games_possibleTypes.includes(obj.__typename) } - const TableStat_possibleTypes: string[] = ['TableStat'] - export const isTableStat = (obj?: { __typename?: any } | null): obj is TableStat => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTableStat"') - return TableStat_possibleTypes.includes(obj.__typename) + const draft_games_aggregate_possibleTypes: string[] = ['draft_games_aggregate'] + export const isdraft_games_aggregate = (obj?: { __typename?: any } | null): obj is draft_games_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate"') + return draft_games_aggregate_possibleTypes.includes(obj.__typename) } - const TeamCalendarOutput_possibleTypes: string[] = ['TeamCalendarOutput'] - export const isTeamCalendarOutput = (obj?: { __typename?: any } | null): obj is TeamCalendarOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTeamCalendarOutput"') - return TeamCalendarOutput_possibleTypes.includes(obj.__typename) + const draft_games_aggregate_fields_possibleTypes: string[] = ['draft_games_aggregate_fields'] + export const isdraft_games_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_games_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate_fields"') + return draft_games_aggregate_fields_possibleTypes.includes(obj.__typename) } - const TelemetryStats_possibleTypes: string[] = ['TelemetryStats'] - export const isTelemetryStats = (obj?: { __typename?: any } | null): obj is TelemetryStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryStats"') - return TelemetryStats_possibleTypes.includes(obj.__typename) + const draft_games_avg_fields_possibleTypes: string[] = ['draft_games_avg_fields'] + export const isdraft_games_avg_fields = (obj?: { __typename?: any } | null): obj is draft_games_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_avg_fields"') + return draft_games_avg_fields_possibleTypes.includes(obj.__typename) } - const TestUploadResponse_possibleTypes: string[] = ['TestUploadResponse'] - export const isTestUploadResponse = (obj?: { __typename?: any } | null): obj is TestUploadResponse => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTestUploadResponse"') - return TestUploadResponse_possibleTypes.includes(obj.__typename) + const draft_games_max_fields_possibleTypes: string[] = ['draft_games_max_fields'] + export const isdraft_games_max_fields = (obj?: { __typename?: any } | null): obj is draft_games_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_max_fields"') + return draft_games_max_fields_possibleTypes.includes(obj.__typename) } - const TimescaleJob_possibleTypes: string[] = ['TimescaleJob'] - export const isTimescaleJob = (obj?: { __typename?: any } | null): obj is TimescaleJob => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleJob"') - return TimescaleJob_possibleTypes.includes(obj.__typename) + const draft_games_min_fields_possibleTypes: string[] = ['draft_games_min_fields'] + export const isdraft_games_min_fields = (obj?: { __typename?: any } | null): obj is draft_games_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_min_fields"') + return draft_games_min_fields_possibleTypes.includes(obj.__typename) } - const TimescaleStats_possibleTypes: string[] = ['TimescaleStats'] - export const isTimescaleStats = (obj?: { __typename?: any } | null): obj is TimescaleStats => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTimescaleStats"') - return TimescaleStats_possibleTypes.includes(obj.__typename) + const draft_games_mutation_response_possibleTypes: string[] = ['draft_games_mutation_response'] + export const isdraft_games_mutation_response = (obj?: { __typename?: any } | null): obj is draft_games_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_mutation_response"') + return draft_games_mutation_response_possibleTypes.includes(obj.__typename) } - const TournamentMatchResetImpact_possibleTypes: string[] = ['TournamentMatchResetImpact'] - export const isTournamentMatchResetImpact = (obj?: { __typename?: any } | null): obj is TournamentMatchResetImpact => { - if (!obj?.__typename) throw new Error('__typename is missing in "isTournamentMatchResetImpact"') - return TournamentMatchResetImpact_possibleTypes.includes(obj.__typename) + const draft_games_stddev_fields_possibleTypes: string[] = ['draft_games_stddev_fields'] + export const isdraft_games_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_fields"') + return draft_games_stddev_fields_possibleTypes.includes(obj.__typename) } - const WatchDemoOutput_possibleTypes: string[] = ['WatchDemoOutput'] - export const isWatchDemoOutput = (obj?: { __typename?: any } | null): obj is WatchDemoOutput => { - if (!obj?.__typename) throw new Error('__typename is missing in "isWatchDemoOutput"') - return WatchDemoOutput_possibleTypes.includes(obj.__typename) + const draft_games_stddev_pop_fields_possibleTypes: string[] = ['draft_games_stddev_pop_fields'] + export const isdraft_games_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_pop_fields"') + return draft_games_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const _map_pool_possibleTypes: string[] = ['_map_pool'] - export const is_map_pool = (obj?: { __typename?: any } | null): obj is _map_pool => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool"') - return _map_pool_possibleTypes.includes(obj.__typename) + const draft_games_stddev_samp_fields_possibleTypes: string[] = ['draft_games_stddev_samp_fields'] + export const isdraft_games_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_samp_fields"') + return draft_games_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const _map_pool_aggregate_possibleTypes: string[] = ['_map_pool_aggregate'] - export const is_map_pool_aggregate = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate"') - return _map_pool_aggregate_possibleTypes.includes(obj.__typename) + const draft_games_sum_fields_possibleTypes: string[] = ['draft_games_sum_fields'] + export const isdraft_games_sum_fields = (obj?: { __typename?: any } | null): obj is draft_games_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_sum_fields"') + return draft_games_sum_fields_possibleTypes.includes(obj.__typename) } - const _map_pool_aggregate_fields_possibleTypes: string[] = ['_map_pool_aggregate_fields'] - export const is_map_pool_aggregate_fields = (obj?: { __typename?: any } | null): obj is _map_pool_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_aggregate_fields"') - return _map_pool_aggregate_fields_possibleTypes.includes(obj.__typename) + const draft_games_var_pop_fields_possibleTypes: string[] = ['draft_games_var_pop_fields'] + export const isdraft_games_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_pop_fields"') + return draft_games_var_pop_fields_possibleTypes.includes(obj.__typename) } - const _map_pool_max_fields_possibleTypes: string[] = ['_map_pool_max_fields'] - export const is_map_pool_max_fields = (obj?: { __typename?: any } | null): obj is _map_pool_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_max_fields"') - return _map_pool_max_fields_possibleTypes.includes(obj.__typename) + const draft_games_var_samp_fields_possibleTypes: string[] = ['draft_games_var_samp_fields'] + export const isdraft_games_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_samp_fields"') + return draft_games_var_samp_fields_possibleTypes.includes(obj.__typename) } - const _map_pool_min_fields_possibleTypes: string[] = ['_map_pool_min_fields'] - export const is_map_pool_min_fields = (obj?: { __typename?: any } | null): obj is _map_pool_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_min_fields"') - return _map_pool_min_fields_possibleTypes.includes(obj.__typename) + const draft_games_variance_fields_possibleTypes: string[] = ['draft_games_variance_fields'] + export const isdraft_games_variance_fields = (obj?: { __typename?: any } | null): obj is draft_games_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_variance_fields"') + return draft_games_variance_fields_possibleTypes.includes(obj.__typename) } - const _map_pool_mutation_response_possibleTypes: string[] = ['_map_pool_mutation_response'] - export const is_map_pool_mutation_response = (obj?: { __typename?: any } | null): obj is _map_pool_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "is_map_pool_mutation_response"') - return _map_pool_mutation_response_possibleTypes.includes(obj.__typename) + const e_check_in_settings_possibleTypes: string[] = ['e_check_in_settings'] + export const ise_check_in_settings = (obj?: { __typename?: any } | null): obj is e_check_in_settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings"') + return e_check_in_settings_possibleTypes.includes(obj.__typename) } - const abandoned_matches_possibleTypes: string[] = ['abandoned_matches'] - export const isabandoned_matches = (obj?: { __typename?: any } | null): obj is abandoned_matches => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches"') - return abandoned_matches_possibleTypes.includes(obj.__typename) + const e_check_in_settings_aggregate_possibleTypes: string[] = ['e_check_in_settings_aggregate'] + export const ise_check_in_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate"') + return e_check_in_settings_aggregate_possibleTypes.includes(obj.__typename) } - const abandoned_matches_aggregate_possibleTypes: string[] = ['abandoned_matches_aggregate'] - export const isabandoned_matches_aggregate = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate"') - return abandoned_matches_aggregate_possibleTypes.includes(obj.__typename) + const e_check_in_settings_aggregate_fields_possibleTypes: string[] = ['e_check_in_settings_aggregate_fields'] + export const ise_check_in_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate_fields"') + return e_check_in_settings_aggregate_fields_possibleTypes.includes(obj.__typename) } - const abandoned_matches_aggregate_fields_possibleTypes: string[] = ['abandoned_matches_aggregate_fields'] - export const isabandoned_matches_aggregate_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_aggregate_fields"') - return abandoned_matches_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_check_in_settings_max_fields_possibleTypes: string[] = ['e_check_in_settings_max_fields'] + export const ise_check_in_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_max_fields"') + return e_check_in_settings_max_fields_possibleTypes.includes(obj.__typename) } - const abandoned_matches_avg_fields_possibleTypes: string[] = ['abandoned_matches_avg_fields'] - export const isabandoned_matches_avg_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_avg_fields"') - return abandoned_matches_avg_fields_possibleTypes.includes(obj.__typename) + const e_check_in_settings_min_fields_possibleTypes: string[] = ['e_check_in_settings_min_fields'] + export const ise_check_in_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_min_fields"') + return e_check_in_settings_min_fields_possibleTypes.includes(obj.__typename) } - const abandoned_matches_max_fields_possibleTypes: string[] = ['abandoned_matches_max_fields'] - export const isabandoned_matches_max_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_max_fields"') - return abandoned_matches_max_fields_possibleTypes.includes(obj.__typename) + const e_check_in_settings_mutation_response_possibleTypes: string[] = ['e_check_in_settings_mutation_response'] + export const ise_check_in_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_check_in_settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_mutation_response"') + return e_check_in_settings_mutation_response_possibleTypes.includes(obj.__typename) } - const abandoned_matches_min_fields_possibleTypes: string[] = ['abandoned_matches_min_fields'] - export const isabandoned_matches_min_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_min_fields"') - return abandoned_matches_min_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_captain_selection_possibleTypes: string[] = ['e_draft_game_captain_selection'] + export const ise_draft_game_captain_selection = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection"') + return e_draft_game_captain_selection_possibleTypes.includes(obj.__typename) } - const abandoned_matches_mutation_response_possibleTypes: string[] = ['abandoned_matches_mutation_response'] - export const isabandoned_matches_mutation_response = (obj?: { __typename?: any } | null): obj is abandoned_matches_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_mutation_response"') - return abandoned_matches_mutation_response_possibleTypes.includes(obj.__typename) + const e_draft_game_captain_selection_aggregate_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate'] + export const ise_draft_game_captain_selection_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate"') + return e_draft_game_captain_selection_aggregate_possibleTypes.includes(obj.__typename) } - const abandoned_matches_stddev_fields_possibleTypes: string[] = ['abandoned_matches_stddev_fields'] - export const isabandoned_matches_stddev_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_fields"') - return abandoned_matches_stddev_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_captain_selection_aggregate_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate_fields'] + export const ise_draft_game_captain_selection_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate_fields"') + return e_draft_game_captain_selection_aggregate_fields_possibleTypes.includes(obj.__typename) } - const abandoned_matches_stddev_pop_fields_possibleTypes: string[] = ['abandoned_matches_stddev_pop_fields'] - export const isabandoned_matches_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_pop_fields"') - return abandoned_matches_stddev_pop_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_captain_selection_max_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_max_fields'] + export const ise_draft_game_captain_selection_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_max_fields"') + return e_draft_game_captain_selection_max_fields_possibleTypes.includes(obj.__typename) } - const abandoned_matches_stddev_samp_fields_possibleTypes: string[] = ['abandoned_matches_stddev_samp_fields'] - export const isabandoned_matches_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_stddev_samp_fields"') - return abandoned_matches_stddev_samp_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_captain_selection_min_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_min_fields'] + export const ise_draft_game_captain_selection_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_min_fields"') + return e_draft_game_captain_selection_min_fields_possibleTypes.includes(obj.__typename) } - const abandoned_matches_sum_fields_possibleTypes: string[] = ['abandoned_matches_sum_fields'] - export const isabandoned_matches_sum_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_sum_fields"') - return abandoned_matches_sum_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_captain_selection_mutation_response_possibleTypes: string[] = ['e_draft_game_captain_selection_mutation_response'] + export const ise_draft_game_captain_selection_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_mutation_response"') + return e_draft_game_captain_selection_mutation_response_possibleTypes.includes(obj.__typename) } - const abandoned_matches_var_pop_fields_possibleTypes: string[] = ['abandoned_matches_var_pop_fields'] - export const isabandoned_matches_var_pop_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_pop_fields"') - return abandoned_matches_var_pop_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_draft_order_possibleTypes: string[] = ['e_draft_game_draft_order'] + export const ise_draft_game_draft_order = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order"') + return e_draft_game_draft_order_possibleTypes.includes(obj.__typename) } - const abandoned_matches_var_samp_fields_possibleTypes: string[] = ['abandoned_matches_var_samp_fields'] - export const isabandoned_matches_var_samp_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_var_samp_fields"') - return abandoned_matches_var_samp_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_draft_order_aggregate_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate'] + export const ise_draft_game_draft_order_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate"') + return e_draft_game_draft_order_aggregate_possibleTypes.includes(obj.__typename) } - const abandoned_matches_variance_fields_possibleTypes: string[] = ['abandoned_matches_variance_fields'] - export const isabandoned_matches_variance_fields = (obj?: { __typename?: any } | null): obj is abandoned_matches_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isabandoned_matches_variance_fields"') - return abandoned_matches_variance_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_draft_order_aggregate_fields_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate_fields'] + export const ise_draft_game_draft_order_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate_fields"') + return e_draft_game_draft_order_aggregate_fields_possibleTypes.includes(obj.__typename) } - const api_keys_possibleTypes: string[] = ['api_keys'] - export const isapi_keys = (obj?: { __typename?: any } | null): obj is api_keys => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys"') - return api_keys_possibleTypes.includes(obj.__typename) + const e_draft_game_draft_order_max_fields_possibleTypes: string[] = ['e_draft_game_draft_order_max_fields'] + export const ise_draft_game_draft_order_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_max_fields"') + return e_draft_game_draft_order_max_fields_possibleTypes.includes(obj.__typename) } - const api_keys_aggregate_possibleTypes: string[] = ['api_keys_aggregate'] - export const isapi_keys_aggregate = (obj?: { __typename?: any } | null): obj is api_keys_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate"') - return api_keys_aggregate_possibleTypes.includes(obj.__typename) + const e_draft_game_draft_order_min_fields_possibleTypes: string[] = ['e_draft_game_draft_order_min_fields'] + export const ise_draft_game_draft_order_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_min_fields"') + return e_draft_game_draft_order_min_fields_possibleTypes.includes(obj.__typename) } - const api_keys_aggregate_fields_possibleTypes: string[] = ['api_keys_aggregate_fields'] - export const isapi_keys_aggregate_fields = (obj?: { __typename?: any } | null): obj is api_keys_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_aggregate_fields"') - return api_keys_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_draft_order_mutation_response_possibleTypes: string[] = ['e_draft_game_draft_order_mutation_response'] + export const ise_draft_game_draft_order_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_mutation_response"') + return e_draft_game_draft_order_mutation_response_possibleTypes.includes(obj.__typename) } - const api_keys_avg_fields_possibleTypes: string[] = ['api_keys_avg_fields'] - export const isapi_keys_avg_fields = (obj?: { __typename?: any } | null): obj is api_keys_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_avg_fields"') - return api_keys_avg_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_mode_possibleTypes: string[] = ['e_draft_game_mode'] + export const ise_draft_game_mode = (obj?: { __typename?: any } | null): obj is e_draft_game_mode => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode"') + return e_draft_game_mode_possibleTypes.includes(obj.__typename) } - const api_keys_max_fields_possibleTypes: string[] = ['api_keys_max_fields'] - export const isapi_keys_max_fields = (obj?: { __typename?: any } | null): obj is api_keys_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_max_fields"') - return api_keys_max_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_mode_aggregate_possibleTypes: string[] = ['e_draft_game_mode_aggregate'] + export const ise_draft_game_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate"') + return e_draft_game_mode_aggregate_possibleTypes.includes(obj.__typename) } - const api_keys_min_fields_possibleTypes: string[] = ['api_keys_min_fields'] - export const isapi_keys_min_fields = (obj?: { __typename?: any } | null): obj is api_keys_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_min_fields"') - return api_keys_min_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_mode_aggregate_fields_possibleTypes: string[] = ['e_draft_game_mode_aggregate_fields'] + export const ise_draft_game_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate_fields"') + return e_draft_game_mode_aggregate_fields_possibleTypes.includes(obj.__typename) } - const api_keys_mutation_response_possibleTypes: string[] = ['api_keys_mutation_response'] - export const isapi_keys_mutation_response = (obj?: { __typename?: any } | null): obj is api_keys_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_mutation_response"') - return api_keys_mutation_response_possibleTypes.includes(obj.__typename) + const e_draft_game_mode_max_fields_possibleTypes: string[] = ['e_draft_game_mode_max_fields'] + export const ise_draft_game_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_max_fields"') + return e_draft_game_mode_max_fields_possibleTypes.includes(obj.__typename) } - const api_keys_stddev_fields_possibleTypes: string[] = ['api_keys_stddev_fields'] - export const isapi_keys_stddev_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_fields"') - return api_keys_stddev_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_mode_min_fields_possibleTypes: string[] = ['e_draft_game_mode_min_fields'] + export const ise_draft_game_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_min_fields"') + return e_draft_game_mode_min_fields_possibleTypes.includes(obj.__typename) } - const api_keys_stddev_pop_fields_possibleTypes: string[] = ['api_keys_stddev_pop_fields'] - export const isapi_keys_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_pop_fields"') - return api_keys_stddev_pop_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_mode_mutation_response_possibleTypes: string[] = ['e_draft_game_mode_mutation_response'] + export const ise_draft_game_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_mutation_response"') + return e_draft_game_mode_mutation_response_possibleTypes.includes(obj.__typename) } - const api_keys_stddev_samp_fields_possibleTypes: string[] = ['api_keys_stddev_samp_fields'] - export const isapi_keys_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_stddev_samp_fields"') - return api_keys_stddev_samp_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_player_status_possibleTypes: string[] = ['e_draft_game_player_status'] + export const ise_draft_game_player_status = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status"') + return e_draft_game_player_status_possibleTypes.includes(obj.__typename) } - const api_keys_sum_fields_possibleTypes: string[] = ['api_keys_sum_fields'] - export const isapi_keys_sum_fields = (obj?: { __typename?: any } | null): obj is api_keys_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_sum_fields"') - return api_keys_sum_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_player_status_aggregate_possibleTypes: string[] = ['e_draft_game_player_status_aggregate'] + export const ise_draft_game_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate"') + return e_draft_game_player_status_aggregate_possibleTypes.includes(obj.__typename) } - const api_keys_var_pop_fields_possibleTypes: string[] = ['api_keys_var_pop_fields'] - export const isapi_keys_var_pop_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_pop_fields"') - return api_keys_var_pop_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_player_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_player_status_aggregate_fields'] + export const ise_draft_game_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate_fields"') + return e_draft_game_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) } - const api_keys_var_samp_fields_possibleTypes: string[] = ['api_keys_var_samp_fields'] - export const isapi_keys_var_samp_fields = (obj?: { __typename?: any } | null): obj is api_keys_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_var_samp_fields"') - return api_keys_var_samp_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_player_status_max_fields_possibleTypes: string[] = ['e_draft_game_player_status_max_fields'] + export const ise_draft_game_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_max_fields"') + return e_draft_game_player_status_max_fields_possibleTypes.includes(obj.__typename) } - const api_keys_variance_fields_possibleTypes: string[] = ['api_keys_variance_fields'] - export const isapi_keys_variance_fields = (obj?: { __typename?: any } | null): obj is api_keys_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isapi_keys_variance_fields"') - return api_keys_variance_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_player_status_min_fields_possibleTypes: string[] = ['e_draft_game_player_status_min_fields'] + export const ise_draft_game_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_min_fields"') + return e_draft_game_player_status_min_fields_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_possibleTypes: string[] = ['clip_render_jobs'] - export const isclip_render_jobs = (obj?: { __typename?: any } | null): obj is clip_render_jobs => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs"') - return clip_render_jobs_possibleTypes.includes(obj.__typename) + const e_draft_game_player_status_mutation_response_possibleTypes: string[] = ['e_draft_game_player_status_mutation_response'] + export const ise_draft_game_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_mutation_response"') + return e_draft_game_player_status_mutation_response_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_aggregate_possibleTypes: string[] = ['clip_render_jobs_aggregate'] - export const isclip_render_jobs_aggregate = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate"') - return clip_render_jobs_aggregate_possibleTypes.includes(obj.__typename) + const e_draft_game_status_possibleTypes: string[] = ['e_draft_game_status'] + export const ise_draft_game_status = (obj?: { __typename?: any } | null): obj is e_draft_game_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status"') + return e_draft_game_status_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_aggregate_fields_possibleTypes: string[] = ['clip_render_jobs_aggregate_fields'] - export const isclip_render_jobs_aggregate_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_aggregate_fields"') - return clip_render_jobs_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_status_aggregate_possibleTypes: string[] = ['e_draft_game_status_aggregate'] + export const ise_draft_game_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate"') + return e_draft_game_status_aggregate_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_avg_fields_possibleTypes: string[] = ['clip_render_jobs_avg_fields'] - export const isclip_render_jobs_avg_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_avg_fields"') - return clip_render_jobs_avg_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_status_aggregate_fields'] + export const ise_draft_game_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate_fields"') + return e_draft_game_status_aggregate_fields_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_max_fields_possibleTypes: string[] = ['clip_render_jobs_max_fields'] - export const isclip_render_jobs_max_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_max_fields"') - return clip_render_jobs_max_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_status_max_fields_possibleTypes: string[] = ['e_draft_game_status_max_fields'] + export const ise_draft_game_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_max_fields"') + return e_draft_game_status_max_fields_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_min_fields_possibleTypes: string[] = ['clip_render_jobs_min_fields'] - export const isclip_render_jobs_min_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_min_fields"') - return clip_render_jobs_min_fields_possibleTypes.includes(obj.__typename) + const e_draft_game_status_min_fields_possibleTypes: string[] = ['e_draft_game_status_min_fields'] + export const ise_draft_game_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_min_fields"') + return e_draft_game_status_min_fields_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_mutation_response_possibleTypes: string[] = ['clip_render_jobs_mutation_response'] - export const isclip_render_jobs_mutation_response = (obj?: { __typename?: any } | null): obj is clip_render_jobs_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_mutation_response"') - return clip_render_jobs_mutation_response_possibleTypes.includes(obj.__typename) + const e_draft_game_status_mutation_response_possibleTypes: string[] = ['e_draft_game_status_mutation_response'] + export const ise_draft_game_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_mutation_response"') + return e_draft_game_status_mutation_response_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_stddev_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_fields'] - export const isclip_render_jobs_stddev_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_fields"') - return clip_render_jobs_stddev_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_possibleTypes: string[] = ['e_event_media_access'] + export const ise_event_media_access = (obj?: { __typename?: any } | null): obj is e_event_media_access => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access"') + return e_event_media_access_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_stddev_pop_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_pop_fields'] - export const isclip_render_jobs_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_pop_fields"') - return clip_render_jobs_stddev_pop_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_aggregate_possibleTypes: string[] = ['e_event_media_access_aggregate'] + export const ise_event_media_access_aggregate = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate"') + return e_event_media_access_aggregate_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_stddev_samp_fields_possibleTypes: string[] = ['clip_render_jobs_stddev_samp_fields'] - export const isclip_render_jobs_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_stddev_samp_fields"') - return clip_render_jobs_stddev_samp_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_aggregate_fields_possibleTypes: string[] = ['e_event_media_access_aggregate_fields'] + export const ise_event_media_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate_fields"') + return e_event_media_access_aggregate_fields_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_sum_fields_possibleTypes: string[] = ['clip_render_jobs_sum_fields'] - export const isclip_render_jobs_sum_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_sum_fields"') - return clip_render_jobs_sum_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_max_fields_possibleTypes: string[] = ['e_event_media_access_max_fields'] + export const ise_event_media_access_max_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_max_fields"') + return e_event_media_access_max_fields_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_var_pop_fields_possibleTypes: string[] = ['clip_render_jobs_var_pop_fields'] - export const isclip_render_jobs_var_pop_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_pop_fields"') - return clip_render_jobs_var_pop_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_min_fields_possibleTypes: string[] = ['e_event_media_access_min_fields'] + export const ise_event_media_access_min_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_min_fields"') + return e_event_media_access_min_fields_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_var_samp_fields_possibleTypes: string[] = ['clip_render_jobs_var_samp_fields'] - export const isclip_render_jobs_var_samp_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_var_samp_fields"') - return clip_render_jobs_var_samp_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_mutation_response_possibleTypes: string[] = ['e_event_media_access_mutation_response'] + export const ise_event_media_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_media_access_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_mutation_response"') + return e_event_media_access_mutation_response_possibleTypes.includes(obj.__typename) } - const clip_render_jobs_variance_fields_possibleTypes: string[] = ['clip_render_jobs_variance_fields'] - export const isclip_render_jobs_variance_fields = (obj?: { __typename?: any } | null): obj is clip_render_jobs_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isclip_render_jobs_variance_fields"') - return clip_render_jobs_variance_fields_possibleTypes.includes(obj.__typename) + const e_event_visibility_possibleTypes: string[] = ['e_event_visibility'] + export const ise_event_visibility = (obj?: { __typename?: any } | null): obj is e_event_visibility => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility"') + return e_event_visibility_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"') - return db_backups_possibleTypes.includes(obj.__typename) + const e_event_visibility_aggregate_possibleTypes: string[] = ['e_event_visibility_aggregate'] + export const ise_event_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate"') + return e_event_visibility_aggregate_possibleTypes.includes(obj.__typename) } - const db_backups_aggregate_possibleTypes: string[] = ['db_backups_aggregate'] - export const isdb_backups_aggregate = (obj?: { __typename?: any } | null): obj is db_backups_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate"') - return db_backups_aggregate_possibleTypes.includes(obj.__typename) + const e_event_visibility_aggregate_fields_possibleTypes: string[] = ['e_event_visibility_aggregate_fields'] + export const ise_event_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate_fields"') + return e_event_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) } - const db_backups_aggregate_fields_possibleTypes: string[] = ['db_backups_aggregate_fields'] - export const isdb_backups_aggregate_fields = (obj?: { __typename?: any } | null): obj is db_backups_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_aggregate_fields"') - return db_backups_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_event_visibility_max_fields_possibleTypes: string[] = ['e_event_visibility_max_fields'] + export const ise_event_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_max_fields"') + return e_event_visibility_max_fields_possibleTypes.includes(obj.__typename) } - const db_backups_avg_fields_possibleTypes: string[] = ['db_backups_avg_fields'] - export const isdb_backups_avg_fields = (obj?: { __typename?: any } | null): obj is db_backups_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_avg_fields"') - return db_backups_avg_fields_possibleTypes.includes(obj.__typename) + const e_event_visibility_min_fields_possibleTypes: string[] = ['e_event_visibility_min_fields'] + export const ise_event_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_min_fields"') + return e_event_visibility_min_fields_possibleTypes.includes(obj.__typename) } - const db_backups_max_fields_possibleTypes: string[] = ['db_backups_max_fields'] - export const isdb_backups_max_fields = (obj?: { __typename?: any } | null): obj is db_backups_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_max_fields"') - return db_backups_max_fields_possibleTypes.includes(obj.__typename) + const e_event_visibility_mutation_response_possibleTypes: string[] = ['e_event_visibility_mutation_response'] + export const ise_event_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_visibility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_mutation_response"') + return e_event_visibility_mutation_response_possibleTypes.includes(obj.__typename) } - const db_backups_min_fields_possibleTypes: string[] = ['db_backups_min_fields'] - export const isdb_backups_min_fields = (obj?: { __typename?: any } | null): obj is db_backups_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_min_fields"') - return db_backups_min_fields_possibleTypes.includes(obj.__typename) + const e_friend_status_possibleTypes: string[] = ['e_friend_status'] + export const ise_friend_status = (obj?: { __typename?: any } | null): obj is e_friend_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status"') + return e_friend_status_possibleTypes.includes(obj.__typename) } - const db_backups_mutation_response_possibleTypes: string[] = ['db_backups_mutation_response'] - export const isdb_backups_mutation_response = (obj?: { __typename?: any } | null): obj is db_backups_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_mutation_response"') - return db_backups_mutation_response_possibleTypes.includes(obj.__typename) + const e_friend_status_aggregate_possibleTypes: string[] = ['e_friend_status_aggregate'] + export const ise_friend_status_aggregate = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate"') + return e_friend_status_aggregate_possibleTypes.includes(obj.__typename) } - const db_backups_stddev_fields_possibleTypes: string[] = ['db_backups_stddev_fields'] - export const isdb_backups_stddev_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_fields"') - return db_backups_stddev_fields_possibleTypes.includes(obj.__typename) + const e_friend_status_aggregate_fields_possibleTypes: string[] = ['e_friend_status_aggregate_fields'] + export const ise_friend_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate_fields"') + return e_friend_status_aggregate_fields_possibleTypes.includes(obj.__typename) } - const db_backups_stddev_pop_fields_possibleTypes: string[] = ['db_backups_stddev_pop_fields'] - export const isdb_backups_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_pop_fields"') - return db_backups_stddev_pop_fields_possibleTypes.includes(obj.__typename) + const e_friend_status_max_fields_possibleTypes: string[] = ['e_friend_status_max_fields'] + export const ise_friend_status_max_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_max_fields"') + return e_friend_status_max_fields_possibleTypes.includes(obj.__typename) } - const db_backups_stddev_samp_fields_possibleTypes: string[] = ['db_backups_stddev_samp_fields'] - export const isdb_backups_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_stddev_samp_fields"') - return db_backups_stddev_samp_fields_possibleTypes.includes(obj.__typename) + const e_friend_status_min_fields_possibleTypes: string[] = ['e_friend_status_min_fields'] + export const ise_friend_status_min_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_min_fields"') + return e_friend_status_min_fields_possibleTypes.includes(obj.__typename) } - const db_backups_sum_fields_possibleTypes: string[] = ['db_backups_sum_fields'] - export const isdb_backups_sum_fields = (obj?: { __typename?: any } | null): obj is db_backups_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_sum_fields"') - return db_backups_sum_fields_possibleTypes.includes(obj.__typename) + const e_friend_status_mutation_response_possibleTypes: string[] = ['e_friend_status_mutation_response'] + export const ise_friend_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_friend_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_mutation_response"') + return e_friend_status_mutation_response_possibleTypes.includes(obj.__typename) } - const db_backups_var_pop_fields_possibleTypes: string[] = ['db_backups_var_pop_fields'] - export const isdb_backups_var_pop_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_pop_fields"') - return db_backups_var_pop_fields_possibleTypes.includes(obj.__typename) + const e_game_cfg_types_possibleTypes: string[] = ['e_game_cfg_types'] + export const ise_game_cfg_types = (obj?: { __typename?: any } | null): obj is e_game_cfg_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types"') + return e_game_cfg_types_possibleTypes.includes(obj.__typename) } - const db_backups_var_samp_fields_possibleTypes: string[] = ['db_backups_var_samp_fields'] - export const isdb_backups_var_samp_fields = (obj?: { __typename?: any } | null): obj is db_backups_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_var_samp_fields"') - return db_backups_var_samp_fields_possibleTypes.includes(obj.__typename) + const e_game_cfg_types_aggregate_possibleTypes: string[] = ['e_game_cfg_types_aggregate'] + export const ise_game_cfg_types_aggregate = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate"') + return e_game_cfg_types_aggregate_possibleTypes.includes(obj.__typename) } - const db_backups_variance_fields_possibleTypes: string[] = ['db_backups_variance_fields'] - export const isdb_backups_variance_fields = (obj?: { __typename?: any } | null): obj is db_backups_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups_variance_fields"') - return db_backups_variance_fields_possibleTypes.includes(obj.__typename) + const e_game_cfg_types_aggregate_fields_possibleTypes: string[] = ['e_game_cfg_types_aggregate_fields'] + export const ise_game_cfg_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate_fields"') + return e_game_cfg_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_possibleTypes: string[] = ['draft_game_picks'] - export const isdraft_game_picks = (obj?: { __typename?: any } | null): obj is draft_game_picks => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks"') - return draft_game_picks_possibleTypes.includes(obj.__typename) + const e_game_cfg_types_max_fields_possibleTypes: string[] = ['e_game_cfg_types_max_fields'] + export const ise_game_cfg_types_max_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_max_fields"') + return e_game_cfg_types_max_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_aggregate_possibleTypes: string[] = ['draft_game_picks_aggregate'] - export const isdraft_game_picks_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate"') - return draft_game_picks_aggregate_possibleTypes.includes(obj.__typename) + const e_game_cfg_types_min_fields_possibleTypes: string[] = ['e_game_cfg_types_min_fields'] + export const ise_game_cfg_types_min_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_min_fields"') + return e_game_cfg_types_min_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_aggregate_fields_possibleTypes: string[] = ['draft_game_picks_aggregate_fields'] - export const isdraft_game_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate_fields"') - return draft_game_picks_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_game_cfg_types_mutation_response_possibleTypes: string[] = ['e_game_cfg_types_mutation_response'] + export const ise_game_cfg_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_mutation_response"') + return e_game_cfg_types_mutation_response_possibleTypes.includes(obj.__typename) } - const draft_game_picks_avg_fields_possibleTypes: string[] = ['draft_game_picks_avg_fields'] - export const isdraft_game_picks_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_avg_fields"') - return draft_game_picks_avg_fields_possibleTypes.includes(obj.__typename) + const e_game_server_node_statuses_possibleTypes: string[] = ['e_game_server_node_statuses'] + export const ise_game_server_node_statuses = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses"') + return e_game_server_node_statuses_possibleTypes.includes(obj.__typename) } - const draft_game_picks_max_fields_possibleTypes: string[] = ['draft_game_picks_max_fields'] - export const isdraft_game_picks_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_max_fields"') - return draft_game_picks_max_fields_possibleTypes.includes(obj.__typename) + const e_game_server_node_statuses_aggregate_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate'] + export const ise_game_server_node_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate"') + return e_game_server_node_statuses_aggregate_possibleTypes.includes(obj.__typename) } - const draft_game_picks_min_fields_possibleTypes: string[] = ['draft_game_picks_min_fields'] - export const isdraft_game_picks_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_min_fields"') - return draft_game_picks_min_fields_possibleTypes.includes(obj.__typename) + const e_game_server_node_statuses_aggregate_fields_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate_fields'] + export const ise_game_server_node_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate_fields"') + return e_game_server_node_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_mutation_response_possibleTypes: string[] = ['draft_game_picks_mutation_response'] - export const isdraft_game_picks_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_picks_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_mutation_response"') - return draft_game_picks_mutation_response_possibleTypes.includes(obj.__typename) + const e_game_server_node_statuses_max_fields_possibleTypes: string[] = ['e_game_server_node_statuses_max_fields'] + export const ise_game_server_node_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_max_fields"') + return e_game_server_node_statuses_max_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_stddev_fields_possibleTypes: string[] = ['draft_game_picks_stddev_fields'] - export const isdraft_game_picks_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_fields"') - return draft_game_picks_stddev_fields_possibleTypes.includes(obj.__typename) + const e_game_server_node_statuses_min_fields_possibleTypes: string[] = ['e_game_server_node_statuses_min_fields'] + export const ise_game_server_node_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_min_fields"') + return e_game_server_node_statuses_min_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_stddev_pop_fields_possibleTypes: string[] = ['draft_game_picks_stddev_pop_fields'] - export const isdraft_game_picks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_pop_fields"') - return draft_game_picks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + const e_game_server_node_statuses_mutation_response_possibleTypes: string[] = ['e_game_server_node_statuses_mutation_response'] + export const ise_game_server_node_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_mutation_response"') + return e_game_server_node_statuses_mutation_response_possibleTypes.includes(obj.__typename) } - const draft_game_picks_stddev_samp_fields_possibleTypes: string[] = ['draft_game_picks_stddev_samp_fields'] - export const isdraft_game_picks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_samp_fields"') - return draft_game_picks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + const e_league_movement_types_possibleTypes: string[] = ['e_league_movement_types'] + export const ise_league_movement_types = (obj?: { __typename?: any } | null): obj is e_league_movement_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types"') + return e_league_movement_types_possibleTypes.includes(obj.__typename) } - const draft_game_picks_sum_fields_possibleTypes: string[] = ['draft_game_picks_sum_fields'] - export const isdraft_game_picks_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_sum_fields"') - return draft_game_picks_sum_fields_possibleTypes.includes(obj.__typename) + const e_league_movement_types_aggregate_possibleTypes: string[] = ['e_league_movement_types_aggregate'] + export const ise_league_movement_types_aggregate = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate"') + return e_league_movement_types_aggregate_possibleTypes.includes(obj.__typename) } - const draft_game_picks_var_pop_fields_possibleTypes: string[] = ['draft_game_picks_var_pop_fields'] - export const isdraft_game_picks_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_pop_fields"') - return draft_game_picks_var_pop_fields_possibleTypes.includes(obj.__typename) + const e_league_movement_types_aggregate_fields_possibleTypes: string[] = ['e_league_movement_types_aggregate_fields'] + export const ise_league_movement_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate_fields"') + return e_league_movement_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_var_samp_fields_possibleTypes: string[] = ['draft_game_picks_var_samp_fields'] - export const isdraft_game_picks_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_samp_fields"') - return draft_game_picks_var_samp_fields_possibleTypes.includes(obj.__typename) + const e_league_movement_types_max_fields_possibleTypes: string[] = ['e_league_movement_types_max_fields'] + export const ise_league_movement_types_max_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_max_fields"') + return e_league_movement_types_max_fields_possibleTypes.includes(obj.__typename) } - const draft_game_picks_variance_fields_possibleTypes: string[] = ['draft_game_picks_variance_fields'] - export const isdraft_game_picks_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_variance_fields"') - return draft_game_picks_variance_fields_possibleTypes.includes(obj.__typename) + const e_league_movement_types_min_fields_possibleTypes: string[] = ['e_league_movement_types_min_fields'] + export const ise_league_movement_types_min_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_min_fields"') + return e_league_movement_types_min_fields_possibleTypes.includes(obj.__typename) } - const draft_game_players_possibleTypes: string[] = ['draft_game_players'] - export const isdraft_game_players = (obj?: { __typename?: any } | null): obj is draft_game_players => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players"') - return draft_game_players_possibleTypes.includes(obj.__typename) + const e_league_movement_types_mutation_response_possibleTypes: string[] = ['e_league_movement_types_mutation_response'] + export const ise_league_movement_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_movement_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_mutation_response"') + return e_league_movement_types_mutation_response_possibleTypes.includes(obj.__typename) } - const draft_game_players_aggregate_possibleTypes: string[] = ['draft_game_players_aggregate'] - export const isdraft_game_players_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate"') - return draft_game_players_aggregate_possibleTypes.includes(obj.__typename) + const e_league_proposal_statuses_possibleTypes: string[] = ['e_league_proposal_statuses'] + export const ise_league_proposal_statuses = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses"') + return e_league_proposal_statuses_possibleTypes.includes(obj.__typename) } - const draft_game_players_aggregate_fields_possibleTypes: string[] = ['draft_game_players_aggregate_fields'] - export const isdraft_game_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate_fields"') - return draft_game_players_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_league_proposal_statuses_aggregate_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate'] + export const ise_league_proposal_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate"') + return e_league_proposal_statuses_aggregate_possibleTypes.includes(obj.__typename) } - const draft_game_players_avg_fields_possibleTypes: string[] = ['draft_game_players_avg_fields'] - export const isdraft_game_players_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_avg_fields"') - return draft_game_players_avg_fields_possibleTypes.includes(obj.__typename) + const e_league_proposal_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate_fields'] + export const ise_league_proposal_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate_fields"') + return e_league_proposal_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) } - const draft_game_players_max_fields_possibleTypes: string[] = ['draft_game_players_max_fields'] - export const isdraft_game_players_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_max_fields"') - return draft_game_players_max_fields_possibleTypes.includes(obj.__typename) + const e_league_proposal_statuses_max_fields_possibleTypes: string[] = ['e_league_proposal_statuses_max_fields'] + export const ise_league_proposal_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_max_fields"') + return e_league_proposal_statuses_max_fields_possibleTypes.includes(obj.__typename) } - const draft_game_players_min_fields_possibleTypes: string[] = ['draft_game_players_min_fields'] - export const isdraft_game_players_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_min_fields"') - return draft_game_players_min_fields_possibleTypes.includes(obj.__typename) + const e_league_proposal_statuses_min_fields_possibleTypes: string[] = ['e_league_proposal_statuses_min_fields'] + export const ise_league_proposal_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_min_fields"') + return e_league_proposal_statuses_min_fields_possibleTypes.includes(obj.__typename) } - const draft_game_players_mutation_response_possibleTypes: string[] = ['draft_game_players_mutation_response'] - export const isdraft_game_players_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_players_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_mutation_response"') - return draft_game_players_mutation_response_possibleTypes.includes(obj.__typename) + const e_league_proposal_statuses_mutation_response_possibleTypes: string[] = ['e_league_proposal_statuses_mutation_response'] + export const ise_league_proposal_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_mutation_response"') + return e_league_proposal_statuses_mutation_response_possibleTypes.includes(obj.__typename) } - const draft_game_players_stddev_fields_possibleTypes: string[] = ['draft_game_players_stddev_fields'] - export const isdraft_game_players_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_fields"') - return draft_game_players_stddev_fields_possibleTypes.includes(obj.__typename) + const e_league_registration_statuses_possibleTypes: string[] = ['e_league_registration_statuses'] + export const ise_league_registration_statuses = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses"') + return e_league_registration_statuses_possibleTypes.includes(obj.__typename) } - const draft_game_players_stddev_pop_fields_possibleTypes: string[] = ['draft_game_players_stddev_pop_fields'] - export const isdraft_game_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_pop_fields"') - return draft_game_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + const e_league_registration_statuses_aggregate_possibleTypes: string[] = ['e_league_registration_statuses_aggregate'] + export const ise_league_registration_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate"') + return e_league_registration_statuses_aggregate_possibleTypes.includes(obj.__typename) } - const draft_game_players_stddev_samp_fields_possibleTypes: string[] = ['draft_game_players_stddev_samp_fields'] - export const isdraft_game_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_samp_fields"') - return draft_game_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + const e_league_registration_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_registration_statuses_aggregate_fields'] + export const ise_league_registration_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate_fields"') + return e_league_registration_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) } - const draft_game_players_sum_fields_possibleTypes: string[] = ['draft_game_players_sum_fields'] - export const isdraft_game_players_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_sum_fields"') - return draft_game_players_sum_fields_possibleTypes.includes(obj.__typename) + const e_league_registration_statuses_max_fields_possibleTypes: string[] = ['e_league_registration_statuses_max_fields'] + export const ise_league_registration_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_max_fields"') + return e_league_registration_statuses_max_fields_possibleTypes.includes(obj.__typename) } - const draft_game_players_var_pop_fields_possibleTypes: string[] = ['draft_game_players_var_pop_fields'] - export const isdraft_game_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_pop_fields"') - return draft_game_players_var_pop_fields_possibleTypes.includes(obj.__typename) + const e_league_registration_statuses_min_fields_possibleTypes: string[] = ['e_league_registration_statuses_min_fields'] + export const ise_league_registration_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_min_fields"') + return e_league_registration_statuses_min_fields_possibleTypes.includes(obj.__typename) } - const draft_game_players_var_samp_fields_possibleTypes: string[] = ['draft_game_players_var_samp_fields'] - export const isdraft_game_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_samp_fields"') - return draft_game_players_var_samp_fields_possibleTypes.includes(obj.__typename) + const e_league_registration_statuses_mutation_response_possibleTypes: string[] = ['e_league_registration_statuses_mutation_response'] + export const ise_league_registration_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_mutation_response"') + return e_league_registration_statuses_mutation_response_possibleTypes.includes(obj.__typename) } - const draft_game_players_variance_fields_possibleTypes: string[] = ['draft_game_players_variance_fields'] - export const isdraft_game_players_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_variance_fields"') - return draft_game_players_variance_fields_possibleTypes.includes(obj.__typename) + const e_league_season_statuses_possibleTypes: string[] = ['e_league_season_statuses'] + export const ise_league_season_statuses = (obj?: { __typename?: any } | null): obj is e_league_season_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses"') + return e_league_season_statuses_possibleTypes.includes(obj.__typename) } - const draft_games_possibleTypes: string[] = ['draft_games'] - export const isdraft_games = (obj?: { __typename?: any } | null): obj is draft_games => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games"') - return draft_games_possibleTypes.includes(obj.__typename) + const e_league_season_statuses_aggregate_possibleTypes: string[] = ['e_league_season_statuses_aggregate'] + export const ise_league_season_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate"') + return e_league_season_statuses_aggregate_possibleTypes.includes(obj.__typename) } - const draft_games_aggregate_possibleTypes: string[] = ['draft_games_aggregate'] - export const isdraft_games_aggregate = (obj?: { __typename?: any } | null): obj is draft_games_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate"') - return draft_games_aggregate_possibleTypes.includes(obj.__typename) + const e_league_season_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_season_statuses_aggregate_fields'] + export const ise_league_season_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate_fields"') + return e_league_season_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) } - const draft_games_aggregate_fields_possibleTypes: string[] = ['draft_games_aggregate_fields'] - export const isdraft_games_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_games_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate_fields"') - return draft_games_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_league_season_statuses_max_fields_possibleTypes: string[] = ['e_league_season_statuses_max_fields'] + export const ise_league_season_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_max_fields"') + return e_league_season_statuses_max_fields_possibleTypes.includes(obj.__typename) } - const draft_games_avg_fields_possibleTypes: string[] = ['draft_games_avg_fields'] - export const isdraft_games_avg_fields = (obj?: { __typename?: any } | null): obj is draft_games_avg_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_avg_fields"') - return draft_games_avg_fields_possibleTypes.includes(obj.__typename) + const e_league_season_statuses_min_fields_possibleTypes: string[] = ['e_league_season_statuses_min_fields'] + export const ise_league_season_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_min_fields"') + return e_league_season_statuses_min_fields_possibleTypes.includes(obj.__typename) } - const draft_games_max_fields_possibleTypes: string[] = ['draft_games_max_fields'] - export const isdraft_games_max_fields = (obj?: { __typename?: any } | null): obj is draft_games_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_max_fields"') - return draft_games_max_fields_possibleTypes.includes(obj.__typename) + const e_league_season_statuses_mutation_response_possibleTypes: string[] = ['e_league_season_statuses_mutation_response'] + export const ise_league_season_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_mutation_response"') + return e_league_season_statuses_mutation_response_possibleTypes.includes(obj.__typename) } - const draft_games_min_fields_possibleTypes: string[] = ['draft_games_min_fields'] - export const isdraft_games_min_fields = (obj?: { __typename?: any } | null): obj is draft_games_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_min_fields"') - return draft_games_min_fields_possibleTypes.includes(obj.__typename) + const e_lobby_access_possibleTypes: string[] = ['e_lobby_access'] + export const ise_lobby_access = (obj?: { __typename?: any } | null): obj is e_lobby_access => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access"') + return e_lobby_access_possibleTypes.includes(obj.__typename) } - const draft_games_mutation_response_possibleTypes: string[] = ['draft_games_mutation_response'] - export const isdraft_games_mutation_response = (obj?: { __typename?: any } | null): obj is draft_games_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_mutation_response"') - return draft_games_mutation_response_possibleTypes.includes(obj.__typename) + const e_lobby_access_aggregate_possibleTypes: string[] = ['e_lobby_access_aggregate'] + export const ise_lobby_access_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate"') + return e_lobby_access_aggregate_possibleTypes.includes(obj.__typename) } - const draft_games_stddev_fields_possibleTypes: string[] = ['draft_games_stddev_fields'] - export const isdraft_games_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_fields"') - return draft_games_stddev_fields_possibleTypes.includes(obj.__typename) + const e_lobby_access_aggregate_fields_possibleTypes: string[] = ['e_lobby_access_aggregate_fields'] + export const ise_lobby_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate_fields"') + return e_lobby_access_aggregate_fields_possibleTypes.includes(obj.__typename) } - const draft_games_stddev_pop_fields_possibleTypes: string[] = ['draft_games_stddev_pop_fields'] - export const isdraft_games_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_pop_fields"') - return draft_games_stddev_pop_fields_possibleTypes.includes(obj.__typename) + const e_lobby_access_max_fields_possibleTypes: string[] = ['e_lobby_access_max_fields'] + export const ise_lobby_access_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_max_fields"') + return e_lobby_access_max_fields_possibleTypes.includes(obj.__typename) } - const draft_games_stddev_samp_fields_possibleTypes: string[] = ['draft_games_stddev_samp_fields'] - export const isdraft_games_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_samp_fields"') - return draft_games_stddev_samp_fields_possibleTypes.includes(obj.__typename) + const e_lobby_access_min_fields_possibleTypes: string[] = ['e_lobby_access_min_fields'] + export const ise_lobby_access_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_min_fields"') + return e_lobby_access_min_fields_possibleTypes.includes(obj.__typename) } - const draft_games_sum_fields_possibleTypes: string[] = ['draft_games_sum_fields'] - export const isdraft_games_sum_fields = (obj?: { __typename?: any } | null): obj is draft_games_sum_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_sum_fields"') - return draft_games_sum_fields_possibleTypes.includes(obj.__typename) + const e_lobby_access_mutation_response_possibleTypes: string[] = ['e_lobby_access_mutation_response'] + export const ise_lobby_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_access_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_mutation_response"') + return e_lobby_access_mutation_response_possibleTypes.includes(obj.__typename) } - const draft_games_var_pop_fields_possibleTypes: string[] = ['draft_games_var_pop_fields'] - export const isdraft_games_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_pop_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_pop_fields"') - return draft_games_var_pop_fields_possibleTypes.includes(obj.__typename) + const e_lobby_player_status_possibleTypes: string[] = ['e_lobby_player_status'] + export const ise_lobby_player_status = (obj?: { __typename?: any } | null): obj is e_lobby_player_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status"') + return e_lobby_player_status_possibleTypes.includes(obj.__typename) } - const draft_games_var_samp_fields_possibleTypes: string[] = ['draft_games_var_samp_fields'] - export const isdraft_games_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_samp_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_samp_fields"') - return draft_games_var_samp_fields_possibleTypes.includes(obj.__typename) + const e_lobby_player_status_aggregate_possibleTypes: string[] = ['e_lobby_player_status_aggregate'] + export const ise_lobby_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate"') + return e_lobby_player_status_aggregate_possibleTypes.includes(obj.__typename) } - const draft_games_variance_fields_possibleTypes: string[] = ['draft_games_variance_fields'] - export const isdraft_games_variance_fields = (obj?: { __typename?: any } | null): obj is draft_games_variance_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_variance_fields"') - return draft_games_variance_fields_possibleTypes.includes(obj.__typename) + const e_lobby_player_status_aggregate_fields_possibleTypes: string[] = ['e_lobby_player_status_aggregate_fields'] + export const ise_lobby_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate_fields"') + return e_lobby_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_check_in_settings_possibleTypes: string[] = ['e_check_in_settings'] - export const ise_check_in_settings = (obj?: { __typename?: any } | null): obj is e_check_in_settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings"') - return e_check_in_settings_possibleTypes.includes(obj.__typename) + const e_lobby_player_status_max_fields_possibleTypes: string[] = ['e_lobby_player_status_max_fields'] + export const ise_lobby_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_max_fields"') + return e_lobby_player_status_max_fields_possibleTypes.includes(obj.__typename) } - const e_check_in_settings_aggregate_possibleTypes: string[] = ['e_check_in_settings_aggregate'] - export const ise_check_in_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate"') - return e_check_in_settings_aggregate_possibleTypes.includes(obj.__typename) + const e_lobby_player_status_min_fields_possibleTypes: string[] = ['e_lobby_player_status_min_fields'] + export const ise_lobby_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_min_fields"') + return e_lobby_player_status_min_fields_possibleTypes.includes(obj.__typename) } - const e_check_in_settings_aggregate_fields_possibleTypes: string[] = ['e_check_in_settings_aggregate_fields'] - export const ise_check_in_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_aggregate_fields"') - return e_check_in_settings_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_lobby_player_status_mutation_response_possibleTypes: string[] = ['e_lobby_player_status_mutation_response'] + export const ise_lobby_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_mutation_response"') + return e_lobby_player_status_mutation_response_possibleTypes.includes(obj.__typename) } - const e_check_in_settings_max_fields_possibleTypes: string[] = ['e_check_in_settings_max_fields'] - export const ise_check_in_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_max_fields"') - return e_check_in_settings_max_fields_possibleTypes.includes(obj.__typename) + const e_map_pool_types_possibleTypes: string[] = ['e_map_pool_types'] + export const ise_map_pool_types = (obj?: { __typename?: any } | null): obj is e_map_pool_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types"') + return e_map_pool_types_possibleTypes.includes(obj.__typename) } - const e_check_in_settings_min_fields_possibleTypes: string[] = ['e_check_in_settings_min_fields'] - export const ise_check_in_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_check_in_settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_min_fields"') - return e_check_in_settings_min_fields_possibleTypes.includes(obj.__typename) + const e_map_pool_types_aggregate_possibleTypes: string[] = ['e_map_pool_types_aggregate'] + export const ise_map_pool_types_aggregate = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate"') + return e_map_pool_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_check_in_settings_mutation_response_possibleTypes: string[] = ['e_check_in_settings_mutation_response'] - export const ise_check_in_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_check_in_settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_check_in_settings_mutation_response"') - return e_check_in_settings_mutation_response_possibleTypes.includes(obj.__typename) + const e_map_pool_types_aggregate_fields_possibleTypes: string[] = ['e_map_pool_types_aggregate_fields'] + export const ise_map_pool_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate_fields"') + return e_map_pool_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_captain_selection_possibleTypes: string[] = ['e_draft_game_captain_selection'] - export const ise_draft_game_captain_selection = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection"') - return e_draft_game_captain_selection_possibleTypes.includes(obj.__typename) + const e_map_pool_types_max_fields_possibleTypes: string[] = ['e_map_pool_types_max_fields'] + export const ise_map_pool_types_max_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_max_fields"') + return e_map_pool_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_captain_selection_aggregate_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate'] - export const ise_draft_game_captain_selection_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate"') - return e_draft_game_captain_selection_aggregate_possibleTypes.includes(obj.__typename) + const e_map_pool_types_min_fields_possibleTypes: string[] = ['e_map_pool_types_min_fields'] + export const ise_map_pool_types_min_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_min_fields"') + return e_map_pool_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_captain_selection_aggregate_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate_fields'] - export const ise_draft_game_captain_selection_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate_fields"') - return e_draft_game_captain_selection_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_map_pool_types_mutation_response_possibleTypes: string[] = ['e_map_pool_types_mutation_response'] + export const ise_map_pool_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_map_pool_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_mutation_response"') + return e_map_pool_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_draft_game_captain_selection_max_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_max_fields'] - export const ise_draft_game_captain_selection_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_max_fields"') - return e_draft_game_captain_selection_max_fields_possibleTypes.includes(obj.__typename) + const e_match_clip_visibility_possibleTypes: string[] = ['e_match_clip_visibility'] + export const ise_match_clip_visibility = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility"') + return e_match_clip_visibility_possibleTypes.includes(obj.__typename) } - const e_draft_game_captain_selection_min_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_min_fields'] - export const ise_draft_game_captain_selection_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_min_fields"') - return e_draft_game_captain_selection_min_fields_possibleTypes.includes(obj.__typename) + const e_match_clip_visibility_aggregate_possibleTypes: string[] = ['e_match_clip_visibility_aggregate'] + export const ise_match_clip_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate"') + return e_match_clip_visibility_aggregate_possibleTypes.includes(obj.__typename) } - const e_draft_game_captain_selection_mutation_response_possibleTypes: string[] = ['e_draft_game_captain_selection_mutation_response'] - export const ise_draft_game_captain_selection_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_mutation_response"') - return e_draft_game_captain_selection_mutation_response_possibleTypes.includes(obj.__typename) + const e_match_clip_visibility_aggregate_fields_possibleTypes: string[] = ['e_match_clip_visibility_aggregate_fields'] + export const ise_match_clip_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate_fields"') + return e_match_clip_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_draft_order_possibleTypes: string[] = ['e_draft_game_draft_order'] - export const ise_draft_game_draft_order = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order"') - return e_draft_game_draft_order_possibleTypes.includes(obj.__typename) + const e_match_clip_visibility_max_fields_possibleTypes: string[] = ['e_match_clip_visibility_max_fields'] + export const ise_match_clip_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_max_fields"') + return e_match_clip_visibility_max_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_draft_order_aggregate_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate'] - export const ise_draft_game_draft_order_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate"') - return e_draft_game_draft_order_aggregate_possibleTypes.includes(obj.__typename) + const e_match_clip_visibility_min_fields_possibleTypes: string[] = ['e_match_clip_visibility_min_fields'] + export const ise_match_clip_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_min_fields"') + return e_match_clip_visibility_min_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_draft_order_aggregate_fields_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate_fields'] - export const ise_draft_game_draft_order_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate_fields"') - return e_draft_game_draft_order_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_match_clip_visibility_mutation_response_possibleTypes: string[] = ['e_match_clip_visibility_mutation_response'] + export const ise_match_clip_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_mutation_response"') + return e_match_clip_visibility_mutation_response_possibleTypes.includes(obj.__typename) } - const e_draft_game_draft_order_max_fields_possibleTypes: string[] = ['e_draft_game_draft_order_max_fields'] - export const ise_draft_game_draft_order_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_max_fields"') - return e_draft_game_draft_order_max_fields_possibleTypes.includes(obj.__typename) + const e_match_map_status_possibleTypes: string[] = ['e_match_map_status'] + export const ise_match_map_status = (obj?: { __typename?: any } | null): obj is e_match_map_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status"') + return e_match_map_status_possibleTypes.includes(obj.__typename) } - const e_draft_game_draft_order_min_fields_possibleTypes: string[] = ['e_draft_game_draft_order_min_fields'] - export const ise_draft_game_draft_order_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_min_fields"') - return e_draft_game_draft_order_min_fields_possibleTypes.includes(obj.__typename) + const e_match_map_status_aggregate_possibleTypes: string[] = ['e_match_map_status_aggregate'] + export const ise_match_map_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate"') + return e_match_map_status_aggregate_possibleTypes.includes(obj.__typename) } - const e_draft_game_draft_order_mutation_response_possibleTypes: string[] = ['e_draft_game_draft_order_mutation_response'] - export const ise_draft_game_draft_order_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_mutation_response"') - return e_draft_game_draft_order_mutation_response_possibleTypes.includes(obj.__typename) + const e_match_map_status_aggregate_fields_possibleTypes: string[] = ['e_match_map_status_aggregate_fields'] + export const ise_match_map_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate_fields"') + return e_match_map_status_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_mode_possibleTypes: string[] = ['e_draft_game_mode'] - export const ise_draft_game_mode = (obj?: { __typename?: any } | null): obj is e_draft_game_mode => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode"') - return e_draft_game_mode_possibleTypes.includes(obj.__typename) + const e_match_map_status_max_fields_possibleTypes: string[] = ['e_match_map_status_max_fields'] + export const ise_match_map_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_max_fields"') + return e_match_map_status_max_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_mode_aggregate_possibleTypes: string[] = ['e_draft_game_mode_aggregate'] - export const ise_draft_game_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate"') - return e_draft_game_mode_aggregate_possibleTypes.includes(obj.__typename) + const e_match_map_status_min_fields_possibleTypes: string[] = ['e_match_map_status_min_fields'] + export const ise_match_map_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_min_fields"') + return e_match_map_status_min_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_mode_aggregate_fields_possibleTypes: string[] = ['e_draft_game_mode_aggregate_fields'] - export const ise_draft_game_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate_fields"') - return e_draft_game_mode_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_match_map_status_mutation_response_possibleTypes: string[] = ['e_match_map_status_mutation_response'] + export const ise_match_map_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_map_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_mutation_response"') + return e_match_map_status_mutation_response_possibleTypes.includes(obj.__typename) } - const e_draft_game_mode_max_fields_possibleTypes: string[] = ['e_draft_game_mode_max_fields'] - export const ise_draft_game_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_max_fields"') - return e_draft_game_mode_max_fields_possibleTypes.includes(obj.__typename) + const e_match_mode_possibleTypes: string[] = ['e_match_mode'] + export const ise_match_mode = (obj?: { __typename?: any } | null): obj is e_match_mode => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode"') + return e_match_mode_possibleTypes.includes(obj.__typename) } - const e_draft_game_mode_min_fields_possibleTypes: string[] = ['e_draft_game_mode_min_fields'] - export const ise_draft_game_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_min_fields"') - return e_draft_game_mode_min_fields_possibleTypes.includes(obj.__typename) + const e_match_mode_aggregate_possibleTypes: string[] = ['e_match_mode_aggregate'] + export const ise_match_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate"') + return e_match_mode_aggregate_possibleTypes.includes(obj.__typename) } - const e_draft_game_mode_mutation_response_possibleTypes: string[] = ['e_draft_game_mode_mutation_response'] - export const ise_draft_game_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_mutation_response"') - return e_draft_game_mode_mutation_response_possibleTypes.includes(obj.__typename) + const e_match_mode_aggregate_fields_possibleTypes: string[] = ['e_match_mode_aggregate_fields'] + export const ise_match_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate_fields"') + return e_match_mode_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_player_status_possibleTypes: string[] = ['e_draft_game_player_status'] - export const ise_draft_game_player_status = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status"') - return e_draft_game_player_status_possibleTypes.includes(obj.__typename) + const e_match_mode_max_fields_possibleTypes: string[] = ['e_match_mode_max_fields'] + export const ise_match_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_max_fields"') + return e_match_mode_max_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_player_status_aggregate_possibleTypes: string[] = ['e_draft_game_player_status_aggregate'] - export const ise_draft_game_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate"') - return e_draft_game_player_status_aggregate_possibleTypes.includes(obj.__typename) + const e_match_mode_min_fields_possibleTypes: string[] = ['e_match_mode_min_fields'] + export const ise_match_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_min_fields"') + return e_match_mode_min_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_player_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_player_status_aggregate_fields'] - export const ise_draft_game_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate_fields"') - return e_draft_game_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_match_mode_mutation_response_possibleTypes: string[] = ['e_match_mode_mutation_response'] + export const ise_match_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_mode_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_mutation_response"') + return e_match_mode_mutation_response_possibleTypes.includes(obj.__typename) } - const e_draft_game_player_status_max_fields_possibleTypes: string[] = ['e_draft_game_player_status_max_fields'] - export const ise_draft_game_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_max_fields"') - return e_draft_game_player_status_max_fields_possibleTypes.includes(obj.__typename) + const e_match_status_possibleTypes: string[] = ['e_match_status'] + export const ise_match_status = (obj?: { __typename?: any } | null): obj is e_match_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status"') + return e_match_status_possibleTypes.includes(obj.__typename) } - const e_draft_game_player_status_min_fields_possibleTypes: string[] = ['e_draft_game_player_status_min_fields'] - export const ise_draft_game_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_min_fields"') - return e_draft_game_player_status_min_fields_possibleTypes.includes(obj.__typename) + const e_match_status_aggregate_possibleTypes: string[] = ['e_match_status_aggregate'] + export const ise_match_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate"') + return e_match_status_aggregate_possibleTypes.includes(obj.__typename) } - const e_draft_game_player_status_mutation_response_possibleTypes: string[] = ['e_draft_game_player_status_mutation_response'] - export const ise_draft_game_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_mutation_response"') - return e_draft_game_player_status_mutation_response_possibleTypes.includes(obj.__typename) + const e_match_status_aggregate_fields_possibleTypes: string[] = ['e_match_status_aggregate_fields'] + export const ise_match_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate_fields"') + return e_match_status_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_status_possibleTypes: string[] = ['e_draft_game_status'] - export const ise_draft_game_status = (obj?: { __typename?: any } | null): obj is e_draft_game_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status"') - return e_draft_game_status_possibleTypes.includes(obj.__typename) + const e_match_status_max_fields_possibleTypes: string[] = ['e_match_status_max_fields'] + export const ise_match_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_max_fields"') + return e_match_status_max_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_status_aggregate_possibleTypes: string[] = ['e_draft_game_status_aggregate'] - export const ise_draft_game_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate"') - return e_draft_game_status_aggregate_possibleTypes.includes(obj.__typename) + const e_match_status_min_fields_possibleTypes: string[] = ['e_match_status_min_fields'] + export const ise_match_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_min_fields"') + return e_match_status_min_fields_possibleTypes.includes(obj.__typename) } - const e_draft_game_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_status_aggregate_fields'] - export const ise_draft_game_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate_fields"') - return e_draft_game_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_match_status_mutation_response_possibleTypes: string[] = ['e_match_status_mutation_response'] + export const ise_match_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_mutation_response"') + return e_match_status_mutation_response_possibleTypes.includes(obj.__typename) } - const e_draft_game_status_max_fields_possibleTypes: string[] = ['e_draft_game_status_max_fields'] - export const ise_draft_game_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_max_fields"') - return e_draft_game_status_max_fields_possibleTypes.includes(obj.__typename) + const e_match_types_possibleTypes: string[] = ['e_match_types'] + export const ise_match_types = (obj?: { __typename?: any } | null): obj is e_match_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types"') + return e_match_types_possibleTypes.includes(obj.__typename) } - const e_draft_game_status_min_fields_possibleTypes: string[] = ['e_draft_game_status_min_fields'] - export const ise_draft_game_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_min_fields"') - return e_draft_game_status_min_fields_possibleTypes.includes(obj.__typename) + const e_match_types_aggregate_possibleTypes: string[] = ['e_match_types_aggregate'] + export const ise_match_types_aggregate = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate"') + return e_match_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_draft_game_status_mutation_response_possibleTypes: string[] = ['e_draft_game_status_mutation_response'] - export const ise_draft_game_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_mutation_response"') - return e_draft_game_status_mutation_response_possibleTypes.includes(obj.__typename) + const e_match_types_aggregate_fields_possibleTypes: string[] = ['e_match_types_aggregate_fields'] + export const ise_match_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate_fields"') + return e_match_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_friend_status_possibleTypes: string[] = ['e_friend_status'] - export const ise_friend_status = (obj?: { __typename?: any } | null): obj is e_friend_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status"') - return e_friend_status_possibleTypes.includes(obj.__typename) + const e_match_types_max_fields_possibleTypes: string[] = ['e_match_types_max_fields'] + export const ise_match_types_max_fields = (obj?: { __typename?: any } | null): obj is e_match_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_max_fields"') + return e_match_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_friend_status_aggregate_possibleTypes: string[] = ['e_friend_status_aggregate'] - export const ise_friend_status_aggregate = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate"') - return e_friend_status_aggregate_possibleTypes.includes(obj.__typename) + const e_match_types_min_fields_possibleTypes: string[] = ['e_match_types_min_fields'] + export const ise_match_types_min_fields = (obj?: { __typename?: any } | null): obj is e_match_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_min_fields"') + return e_match_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_friend_status_aggregate_fields_possibleTypes: string[] = ['e_friend_status_aggregate_fields'] - export const ise_friend_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_aggregate_fields"') - return e_friend_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_match_types_mutation_response_possibleTypes: string[] = ['e_match_types_mutation_response'] + export const ise_match_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_mutation_response"') + return e_match_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_friend_status_max_fields_possibleTypes: string[] = ['e_friend_status_max_fields'] - export const ise_friend_status_max_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_max_fields"') - return e_friend_status_max_fields_possibleTypes.includes(obj.__typename) + const e_notification_types_possibleTypes: string[] = ['e_notification_types'] + export const ise_notification_types = (obj?: { __typename?: any } | null): obj is e_notification_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types"') + return e_notification_types_possibleTypes.includes(obj.__typename) } - const e_friend_status_min_fields_possibleTypes: string[] = ['e_friend_status_min_fields'] - export const ise_friend_status_min_fields = (obj?: { __typename?: any } | null): obj is e_friend_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_min_fields"') - return e_friend_status_min_fields_possibleTypes.includes(obj.__typename) + const e_notification_types_aggregate_possibleTypes: string[] = ['e_notification_types_aggregate'] + export const ise_notification_types_aggregate = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate"') + return e_notification_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_friend_status_mutation_response_possibleTypes: string[] = ['e_friend_status_mutation_response'] - export const ise_friend_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_friend_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status_mutation_response"') - return e_friend_status_mutation_response_possibleTypes.includes(obj.__typename) + const e_notification_types_aggregate_fields_possibleTypes: string[] = ['e_notification_types_aggregate_fields'] + export const ise_notification_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate_fields"') + return e_notification_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_game_cfg_types_possibleTypes: string[] = ['e_game_cfg_types'] - export const ise_game_cfg_types = (obj?: { __typename?: any } | null): obj is e_game_cfg_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types"') - return e_game_cfg_types_possibleTypes.includes(obj.__typename) + const e_notification_types_max_fields_possibleTypes: string[] = ['e_notification_types_max_fields'] + export const ise_notification_types_max_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_max_fields"') + return e_notification_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_game_cfg_types_aggregate_possibleTypes: string[] = ['e_game_cfg_types_aggregate'] - export const ise_game_cfg_types_aggregate = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate"') - return e_game_cfg_types_aggregate_possibleTypes.includes(obj.__typename) + const e_notification_types_min_fields_possibleTypes: string[] = ['e_notification_types_min_fields'] + export const ise_notification_types_min_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_min_fields"') + return e_notification_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_game_cfg_types_aggregate_fields_possibleTypes: string[] = ['e_game_cfg_types_aggregate_fields'] - export const ise_game_cfg_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_aggregate_fields"') - return e_game_cfg_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_notification_types_mutation_response_possibleTypes: string[] = ['e_notification_types_mutation_response'] + export const ise_notification_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_notification_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_mutation_response"') + return e_notification_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_game_cfg_types_max_fields_possibleTypes: string[] = ['e_game_cfg_types_max_fields'] - export const ise_game_cfg_types_max_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_max_fields"') - return e_game_cfg_types_max_fields_possibleTypes.includes(obj.__typename) + const e_objective_types_possibleTypes: string[] = ['e_objective_types'] + export const ise_objective_types = (obj?: { __typename?: any } | null): obj is e_objective_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types"') + return e_objective_types_possibleTypes.includes(obj.__typename) } - const e_game_cfg_types_min_fields_possibleTypes: string[] = ['e_game_cfg_types_min_fields'] - export const ise_game_cfg_types_min_fields = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_min_fields"') - return e_game_cfg_types_min_fields_possibleTypes.includes(obj.__typename) + const e_objective_types_aggregate_possibleTypes: string[] = ['e_objective_types_aggregate'] + export const ise_objective_types_aggregate = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate"') + return e_objective_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_game_cfg_types_mutation_response_possibleTypes: string[] = ['e_game_cfg_types_mutation_response'] - export const ise_game_cfg_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_cfg_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_cfg_types_mutation_response"') - return e_game_cfg_types_mutation_response_possibleTypes.includes(obj.__typename) + const e_objective_types_aggregate_fields_possibleTypes: string[] = ['e_objective_types_aggregate_fields'] + export const ise_objective_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate_fields"') + return e_objective_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_game_server_node_statuses_possibleTypes: string[] = ['e_game_server_node_statuses'] - export const ise_game_server_node_statuses = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses"') - return e_game_server_node_statuses_possibleTypes.includes(obj.__typename) + const e_objective_types_max_fields_possibleTypes: string[] = ['e_objective_types_max_fields'] + export const ise_objective_types_max_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_max_fields"') + return e_objective_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_game_server_node_statuses_aggregate_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate'] - export const ise_game_server_node_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate"') - return e_game_server_node_statuses_aggregate_possibleTypes.includes(obj.__typename) + const e_objective_types_min_fields_possibleTypes: string[] = ['e_objective_types_min_fields'] + export const ise_objective_types_min_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_min_fields"') + return e_objective_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_game_server_node_statuses_aggregate_fields_possibleTypes: string[] = ['e_game_server_node_statuses_aggregate_fields'] - export const ise_game_server_node_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_aggregate_fields"') - return e_game_server_node_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_objective_types_mutation_response_possibleTypes: string[] = ['e_objective_types_mutation_response'] + export const ise_objective_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_objective_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_mutation_response"') + return e_objective_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_game_server_node_statuses_max_fields_possibleTypes: string[] = ['e_game_server_node_statuses_max_fields'] - export const ise_game_server_node_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_max_fields"') - return e_game_server_node_statuses_max_fields_possibleTypes.includes(obj.__typename) + const e_player_roles_possibleTypes: string[] = ['e_player_roles'] + export const ise_player_roles = (obj?: { __typename?: any } | null): obj is e_player_roles => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles"') + return e_player_roles_possibleTypes.includes(obj.__typename) } - const e_game_server_node_statuses_min_fields_possibleTypes: string[] = ['e_game_server_node_statuses_min_fields'] - export const ise_game_server_node_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_min_fields"') - return e_game_server_node_statuses_min_fields_possibleTypes.includes(obj.__typename) + const e_player_roles_aggregate_possibleTypes: string[] = ['e_player_roles_aggregate'] + export const ise_player_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate"') + return e_player_roles_aggregate_possibleTypes.includes(obj.__typename) } - const e_game_server_node_statuses_mutation_response_possibleTypes: string[] = ['e_game_server_node_statuses_mutation_response'] - export const ise_game_server_node_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_game_server_node_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_game_server_node_statuses_mutation_response"') - return e_game_server_node_statuses_mutation_response_possibleTypes.includes(obj.__typename) + const e_player_roles_aggregate_fields_possibleTypes: string[] = ['e_player_roles_aggregate_fields'] + export const ise_player_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate_fields"') + return e_player_roles_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_league_movement_types_possibleTypes: string[] = ['e_league_movement_types'] - export const ise_league_movement_types = (obj?: { __typename?: any } | null): obj is e_league_movement_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types"') - return e_league_movement_types_possibleTypes.includes(obj.__typename) + const e_player_roles_max_fields_possibleTypes: string[] = ['e_player_roles_max_fields'] + export const ise_player_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_max_fields"') + return e_player_roles_max_fields_possibleTypes.includes(obj.__typename) } - const e_league_movement_types_aggregate_possibleTypes: string[] = ['e_league_movement_types_aggregate'] - export const ise_league_movement_types_aggregate = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate"') - return e_league_movement_types_aggregate_possibleTypes.includes(obj.__typename) + const e_player_roles_min_fields_possibleTypes: string[] = ['e_player_roles_min_fields'] + export const ise_player_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_min_fields"') + return e_player_roles_min_fields_possibleTypes.includes(obj.__typename) } - const e_league_movement_types_aggregate_fields_possibleTypes: string[] = ['e_league_movement_types_aggregate_fields'] - export const ise_league_movement_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_aggregate_fields"') - return e_league_movement_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_player_roles_mutation_response_possibleTypes: string[] = ['e_player_roles_mutation_response'] + export const ise_player_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_player_roles_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_mutation_response"') + return e_player_roles_mutation_response_possibleTypes.includes(obj.__typename) } - const e_league_movement_types_max_fields_possibleTypes: string[] = ['e_league_movement_types_max_fields'] - export const ise_league_movement_types_max_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_max_fields"') - return e_league_movement_types_max_fields_possibleTypes.includes(obj.__typename) + const e_plugin_runtimes_possibleTypes: string[] = ['e_plugin_runtimes'] + export const ise_plugin_runtimes = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes"') + return e_plugin_runtimes_possibleTypes.includes(obj.__typename) } - const e_league_movement_types_min_fields_possibleTypes: string[] = ['e_league_movement_types_min_fields'] - export const ise_league_movement_types_min_fields = (obj?: { __typename?: any } | null): obj is e_league_movement_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_min_fields"') - return e_league_movement_types_min_fields_possibleTypes.includes(obj.__typename) + const e_plugin_runtimes_aggregate_possibleTypes: string[] = ['e_plugin_runtimes_aggregate'] + export const ise_plugin_runtimes_aggregate = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate"') + return e_plugin_runtimes_aggregate_possibleTypes.includes(obj.__typename) } - const e_league_movement_types_mutation_response_possibleTypes: string[] = ['e_league_movement_types_mutation_response'] - export const ise_league_movement_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_movement_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_movement_types_mutation_response"') - return e_league_movement_types_mutation_response_possibleTypes.includes(obj.__typename) + const e_plugin_runtimes_aggregate_fields_possibleTypes: string[] = ['e_plugin_runtimes_aggregate_fields'] + export const ise_plugin_runtimes_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate_fields"') + return e_plugin_runtimes_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_league_proposal_statuses_possibleTypes: string[] = ['e_league_proposal_statuses'] - export const ise_league_proposal_statuses = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses"') - return e_league_proposal_statuses_possibleTypes.includes(obj.__typename) + const e_plugin_runtimes_max_fields_possibleTypes: string[] = ['e_plugin_runtimes_max_fields'] + export const ise_plugin_runtimes_max_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_max_fields"') + return e_plugin_runtimes_max_fields_possibleTypes.includes(obj.__typename) } - const e_league_proposal_statuses_aggregate_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate'] - export const ise_league_proposal_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate"') - return e_league_proposal_statuses_aggregate_possibleTypes.includes(obj.__typename) + const e_plugin_runtimes_min_fields_possibleTypes: string[] = ['e_plugin_runtimes_min_fields'] + export const ise_plugin_runtimes_min_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_min_fields"') + return e_plugin_runtimes_min_fields_possibleTypes.includes(obj.__typename) } - const e_league_proposal_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_proposal_statuses_aggregate_fields'] - export const ise_league_proposal_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_aggregate_fields"') - return e_league_proposal_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_plugin_runtimes_mutation_response_possibleTypes: string[] = ['e_plugin_runtimes_mutation_response'] + export const ise_plugin_runtimes_mutation_response = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_mutation_response"') + return e_plugin_runtimes_mutation_response_possibleTypes.includes(obj.__typename) } - const e_league_proposal_statuses_max_fields_possibleTypes: string[] = ['e_league_proposal_statuses_max_fields'] - export const ise_league_proposal_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_max_fields"') - return e_league_proposal_statuses_max_fields_possibleTypes.includes(obj.__typename) + const e_ready_settings_possibleTypes: string[] = ['e_ready_settings'] + export const ise_ready_settings = (obj?: { __typename?: any } | null): obj is e_ready_settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings"') + return e_ready_settings_possibleTypes.includes(obj.__typename) } - const e_league_proposal_statuses_min_fields_possibleTypes: string[] = ['e_league_proposal_statuses_min_fields'] - export const ise_league_proposal_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_min_fields"') - return e_league_proposal_statuses_min_fields_possibleTypes.includes(obj.__typename) + const e_ready_settings_aggregate_possibleTypes: string[] = ['e_ready_settings_aggregate'] + export const ise_ready_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate"') + return e_ready_settings_aggregate_possibleTypes.includes(obj.__typename) } - const e_league_proposal_statuses_mutation_response_possibleTypes: string[] = ['e_league_proposal_statuses_mutation_response'] - export const ise_league_proposal_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_proposal_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_proposal_statuses_mutation_response"') - return e_league_proposal_statuses_mutation_response_possibleTypes.includes(obj.__typename) + const e_ready_settings_aggregate_fields_possibleTypes: string[] = ['e_ready_settings_aggregate_fields'] + export const ise_ready_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate_fields"') + return e_ready_settings_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_league_registration_statuses_possibleTypes: string[] = ['e_league_registration_statuses'] - export const ise_league_registration_statuses = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses"') - return e_league_registration_statuses_possibleTypes.includes(obj.__typename) + const e_ready_settings_max_fields_possibleTypes: string[] = ['e_ready_settings_max_fields'] + export const ise_ready_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_max_fields"') + return e_ready_settings_max_fields_possibleTypes.includes(obj.__typename) } - const e_league_registration_statuses_aggregate_possibleTypes: string[] = ['e_league_registration_statuses_aggregate'] - export const ise_league_registration_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate"') - return e_league_registration_statuses_aggregate_possibleTypes.includes(obj.__typename) + const e_ready_settings_min_fields_possibleTypes: string[] = ['e_ready_settings_min_fields'] + export const ise_ready_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_min_fields"') + return e_ready_settings_min_fields_possibleTypes.includes(obj.__typename) } - const e_league_registration_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_registration_statuses_aggregate_fields'] - export const ise_league_registration_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_aggregate_fields"') - return e_league_registration_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_ready_settings_mutation_response_possibleTypes: string[] = ['e_ready_settings_mutation_response'] + export const ise_ready_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_ready_settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_mutation_response"') + return e_ready_settings_mutation_response_possibleTypes.includes(obj.__typename) } - const e_league_registration_statuses_max_fields_possibleTypes: string[] = ['e_league_registration_statuses_max_fields'] - export const ise_league_registration_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_max_fields"') - return e_league_registration_statuses_max_fields_possibleTypes.includes(obj.__typename) + const e_sanction_types_possibleTypes: string[] = ['e_sanction_types'] + export const ise_sanction_types = (obj?: { __typename?: any } | null): obj is e_sanction_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types"') + return e_sanction_types_possibleTypes.includes(obj.__typename) } - const e_league_registration_statuses_min_fields_possibleTypes: string[] = ['e_league_registration_statuses_min_fields'] - export const ise_league_registration_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_min_fields"') - return e_league_registration_statuses_min_fields_possibleTypes.includes(obj.__typename) + const e_sanction_types_aggregate_possibleTypes: string[] = ['e_sanction_types_aggregate'] + export const ise_sanction_types_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate"') + return e_sanction_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_league_registration_statuses_mutation_response_possibleTypes: string[] = ['e_league_registration_statuses_mutation_response'] - export const ise_league_registration_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_registration_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_registration_statuses_mutation_response"') - return e_league_registration_statuses_mutation_response_possibleTypes.includes(obj.__typename) + const e_sanction_types_aggregate_fields_possibleTypes: string[] = ['e_sanction_types_aggregate_fields'] + export const ise_sanction_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate_fields"') + return e_sanction_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_league_season_statuses_possibleTypes: string[] = ['e_league_season_statuses'] - export const ise_league_season_statuses = (obj?: { __typename?: any } | null): obj is e_league_season_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses"') - return e_league_season_statuses_possibleTypes.includes(obj.__typename) + const e_sanction_types_max_fields_possibleTypes: string[] = ['e_sanction_types_max_fields'] + export const ise_sanction_types_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_max_fields"') + return e_sanction_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_league_season_statuses_aggregate_possibleTypes: string[] = ['e_league_season_statuses_aggregate'] - export const ise_league_season_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate"') - return e_league_season_statuses_aggregate_possibleTypes.includes(obj.__typename) + const e_sanction_types_min_fields_possibleTypes: string[] = ['e_sanction_types_min_fields'] + export const ise_sanction_types_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_min_fields"') + return e_sanction_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_league_season_statuses_aggregate_fields_possibleTypes: string[] = ['e_league_season_statuses_aggregate_fields'] - export const ise_league_season_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_aggregate_fields"') - return e_league_season_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_sanction_types_mutation_response_possibleTypes: string[] = ['e_sanction_types_mutation_response'] + export const ise_sanction_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_mutation_response"') + return e_sanction_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_league_season_statuses_max_fields_possibleTypes: string[] = ['e_league_season_statuses_max_fields'] - export const ise_league_season_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_max_fields"') - return e_league_season_statuses_max_fields_possibleTypes.includes(obj.__typename) + const e_scrim_request_statuses_possibleTypes: string[] = ['e_scrim_request_statuses'] + export const ise_scrim_request_statuses = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses"') + return e_scrim_request_statuses_possibleTypes.includes(obj.__typename) } - const e_league_season_statuses_min_fields_possibleTypes: string[] = ['e_league_season_statuses_min_fields'] - export const ise_league_season_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_min_fields"') - return e_league_season_statuses_min_fields_possibleTypes.includes(obj.__typename) + const e_scrim_request_statuses_aggregate_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate'] + export const ise_scrim_request_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate"') + return e_scrim_request_statuses_aggregate_possibleTypes.includes(obj.__typename) } - const e_league_season_statuses_mutation_response_possibleTypes: string[] = ['e_league_season_statuses_mutation_response'] - export const ise_league_season_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_league_season_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_league_season_statuses_mutation_response"') - return e_league_season_statuses_mutation_response_possibleTypes.includes(obj.__typename) + const e_scrim_request_statuses_aggregate_fields_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate_fields'] + export const ise_scrim_request_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate_fields"') + return e_scrim_request_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_lobby_access_possibleTypes: string[] = ['e_lobby_access'] - export const ise_lobby_access = (obj?: { __typename?: any } | null): obj is e_lobby_access => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access"') - return e_lobby_access_possibleTypes.includes(obj.__typename) + const e_scrim_request_statuses_max_fields_possibleTypes: string[] = ['e_scrim_request_statuses_max_fields'] + export const ise_scrim_request_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_max_fields"') + return e_scrim_request_statuses_max_fields_possibleTypes.includes(obj.__typename) } - const e_lobby_access_aggregate_possibleTypes: string[] = ['e_lobby_access_aggregate'] - export const ise_lobby_access_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate"') - return e_lobby_access_aggregate_possibleTypes.includes(obj.__typename) + const e_scrim_request_statuses_min_fields_possibleTypes: string[] = ['e_scrim_request_statuses_min_fields'] + export const ise_scrim_request_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_min_fields"') + return e_scrim_request_statuses_min_fields_possibleTypes.includes(obj.__typename) } - const e_lobby_access_aggregate_fields_possibleTypes: string[] = ['e_lobby_access_aggregate_fields'] - export const ise_lobby_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_aggregate_fields"') - return e_lobby_access_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_scrim_request_statuses_mutation_response_possibleTypes: string[] = ['e_scrim_request_statuses_mutation_response'] + export const ise_scrim_request_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_mutation_response"') + return e_scrim_request_statuses_mutation_response_possibleTypes.includes(obj.__typename) } - const e_lobby_access_max_fields_possibleTypes: string[] = ['e_lobby_access_max_fields'] - export const ise_lobby_access_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_max_fields"') - return e_lobby_access_max_fields_possibleTypes.includes(obj.__typename) + const e_server_types_possibleTypes: string[] = ['e_server_types'] + export const ise_server_types = (obj?: { __typename?: any } | null): obj is e_server_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types"') + return e_server_types_possibleTypes.includes(obj.__typename) } - const e_lobby_access_min_fields_possibleTypes: string[] = ['e_lobby_access_min_fields'] - export const ise_lobby_access_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_access_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_min_fields"') - return e_lobby_access_min_fields_possibleTypes.includes(obj.__typename) + const e_server_types_aggregate_possibleTypes: string[] = ['e_server_types_aggregate'] + export const ise_server_types_aggregate = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate"') + return e_server_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_lobby_access_mutation_response_possibleTypes: string[] = ['e_lobby_access_mutation_response'] - export const ise_lobby_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_access_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_access_mutation_response"') - return e_lobby_access_mutation_response_possibleTypes.includes(obj.__typename) + const e_server_types_aggregate_fields_possibleTypes: string[] = ['e_server_types_aggregate_fields'] + export const ise_server_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate_fields"') + return e_server_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_lobby_player_status_possibleTypes: string[] = ['e_lobby_player_status'] - export const ise_lobby_player_status = (obj?: { __typename?: any } | null): obj is e_lobby_player_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status"') - return e_lobby_player_status_possibleTypes.includes(obj.__typename) + const e_server_types_max_fields_possibleTypes: string[] = ['e_server_types_max_fields'] + export const ise_server_types_max_fields = (obj?: { __typename?: any } | null): obj is e_server_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_max_fields"') + return e_server_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_lobby_player_status_aggregate_possibleTypes: string[] = ['e_lobby_player_status_aggregate'] - export const ise_lobby_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate"') - return e_lobby_player_status_aggregate_possibleTypes.includes(obj.__typename) + const e_server_types_min_fields_possibleTypes: string[] = ['e_server_types_min_fields'] + export const ise_server_types_min_fields = (obj?: { __typename?: any } | null): obj is e_server_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_min_fields"') + return e_server_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_lobby_player_status_aggregate_fields_possibleTypes: string[] = ['e_lobby_player_status_aggregate_fields'] - export const ise_lobby_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_aggregate_fields"') - return e_lobby_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_server_types_mutation_response_possibleTypes: string[] = ['e_server_types_mutation_response'] + export const ise_server_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_server_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_mutation_response"') + return e_server_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_lobby_player_status_max_fields_possibleTypes: string[] = ['e_lobby_player_status_max_fields'] - export const ise_lobby_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_max_fields"') - return e_lobby_player_status_max_fields_possibleTypes.includes(obj.__typename) + const e_sides_possibleTypes: string[] = ['e_sides'] + export const ise_sides = (obj?: { __typename?: any } | null): obj is e_sides => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides"') + return e_sides_possibleTypes.includes(obj.__typename) } - const e_lobby_player_status_min_fields_possibleTypes: string[] = ['e_lobby_player_status_min_fields'] - export const ise_lobby_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_min_fields"') - return e_lobby_player_status_min_fields_possibleTypes.includes(obj.__typename) + const e_sides_aggregate_possibleTypes: string[] = ['e_sides_aggregate'] + export const ise_sides_aggregate = (obj?: { __typename?: any } | null): obj is e_sides_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate"') + return e_sides_aggregate_possibleTypes.includes(obj.__typename) } - const e_lobby_player_status_mutation_response_possibleTypes: string[] = ['e_lobby_player_status_mutation_response'] - export const ise_lobby_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_lobby_player_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_lobby_player_status_mutation_response"') - return e_lobby_player_status_mutation_response_possibleTypes.includes(obj.__typename) + const e_sides_aggregate_fields_possibleTypes: string[] = ['e_sides_aggregate_fields'] + export const ise_sides_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sides_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate_fields"') + return e_sides_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_map_pool_types_possibleTypes: string[] = ['e_map_pool_types'] - export const ise_map_pool_types = (obj?: { __typename?: any } | null): obj is e_map_pool_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types"') - return e_map_pool_types_possibleTypes.includes(obj.__typename) + const e_sides_max_fields_possibleTypes: string[] = ['e_sides_max_fields'] + export const ise_sides_max_fields = (obj?: { __typename?: any } | null): obj is e_sides_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_max_fields"') + return e_sides_max_fields_possibleTypes.includes(obj.__typename) } - const e_map_pool_types_aggregate_possibleTypes: string[] = ['e_map_pool_types_aggregate'] - export const ise_map_pool_types_aggregate = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate"') - return e_map_pool_types_aggregate_possibleTypes.includes(obj.__typename) + const e_sides_min_fields_possibleTypes: string[] = ['e_sides_min_fields'] + export const ise_sides_min_fields = (obj?: { __typename?: any } | null): obj is e_sides_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_min_fields"') + return e_sides_min_fields_possibleTypes.includes(obj.__typename) } - const e_map_pool_types_aggregate_fields_possibleTypes: string[] = ['e_map_pool_types_aggregate_fields'] - export const ise_map_pool_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_aggregate_fields"') - return e_map_pool_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_sides_mutation_response_possibleTypes: string[] = ['e_sides_mutation_response'] + export const ise_sides_mutation_response = (obj?: { __typename?: any } | null): obj is e_sides_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_mutation_response"') + return e_sides_mutation_response_possibleTypes.includes(obj.__typename) } - const e_map_pool_types_max_fields_possibleTypes: string[] = ['e_map_pool_types_max_fields'] - export const ise_map_pool_types_max_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_max_fields"') - return e_map_pool_types_max_fields_possibleTypes.includes(obj.__typename) + const e_system_alert_types_possibleTypes: string[] = ['e_system_alert_types'] + export const ise_system_alert_types = (obj?: { __typename?: any } | null): obj is e_system_alert_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types"') + return e_system_alert_types_possibleTypes.includes(obj.__typename) } - const e_map_pool_types_min_fields_possibleTypes: string[] = ['e_map_pool_types_min_fields'] - export const ise_map_pool_types_min_fields = (obj?: { __typename?: any } | null): obj is e_map_pool_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_min_fields"') - return e_map_pool_types_min_fields_possibleTypes.includes(obj.__typename) + const e_system_alert_types_aggregate_possibleTypes: string[] = ['e_system_alert_types_aggregate'] + export const ise_system_alert_types_aggregate = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate"') + return e_system_alert_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_map_pool_types_mutation_response_possibleTypes: string[] = ['e_map_pool_types_mutation_response'] - export const ise_map_pool_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_map_pool_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_map_pool_types_mutation_response"') - return e_map_pool_types_mutation_response_possibleTypes.includes(obj.__typename) + const e_system_alert_types_aggregate_fields_possibleTypes: string[] = ['e_system_alert_types_aggregate_fields'] + export const ise_system_alert_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate_fields"') + return e_system_alert_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_match_clip_visibility_possibleTypes: string[] = ['e_match_clip_visibility'] - export const ise_match_clip_visibility = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility"') - return e_match_clip_visibility_possibleTypes.includes(obj.__typename) + const e_system_alert_types_max_fields_possibleTypes: string[] = ['e_system_alert_types_max_fields'] + export const ise_system_alert_types_max_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_max_fields"') + return e_system_alert_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_match_clip_visibility_aggregate_possibleTypes: string[] = ['e_match_clip_visibility_aggregate'] - export const ise_match_clip_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate"') - return e_match_clip_visibility_aggregate_possibleTypes.includes(obj.__typename) + const e_system_alert_types_min_fields_possibleTypes: string[] = ['e_system_alert_types_min_fields'] + export const ise_system_alert_types_min_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_min_fields"') + return e_system_alert_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_match_clip_visibility_aggregate_fields_possibleTypes: string[] = ['e_match_clip_visibility_aggregate_fields'] - export const ise_match_clip_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_aggregate_fields"') - return e_match_clip_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_system_alert_types_mutation_response_possibleTypes: string[] = ['e_system_alert_types_mutation_response'] + export const ise_system_alert_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_system_alert_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_mutation_response"') + return e_system_alert_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_match_clip_visibility_max_fields_possibleTypes: string[] = ['e_match_clip_visibility_max_fields'] - export const ise_match_clip_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_max_fields"') - return e_match_clip_visibility_max_fields_possibleTypes.includes(obj.__typename) + const e_team_roles_possibleTypes: string[] = ['e_team_roles'] + export const ise_team_roles = (obj?: { __typename?: any } | null): obj is e_team_roles => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles"') + return e_team_roles_possibleTypes.includes(obj.__typename) } - const e_match_clip_visibility_min_fields_possibleTypes: string[] = ['e_match_clip_visibility_min_fields'] - export const ise_match_clip_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_min_fields"') - return e_match_clip_visibility_min_fields_possibleTypes.includes(obj.__typename) + const e_team_roles_aggregate_possibleTypes: string[] = ['e_team_roles_aggregate'] + export const ise_team_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate"') + return e_team_roles_aggregate_possibleTypes.includes(obj.__typename) } - const e_match_clip_visibility_mutation_response_possibleTypes: string[] = ['e_match_clip_visibility_mutation_response'] - export const ise_match_clip_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_clip_visibility_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_clip_visibility_mutation_response"') - return e_match_clip_visibility_mutation_response_possibleTypes.includes(obj.__typename) + const e_team_roles_aggregate_fields_possibleTypes: string[] = ['e_team_roles_aggregate_fields'] + export const ise_team_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate_fields"') + return e_team_roles_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_match_map_status_possibleTypes: string[] = ['e_match_map_status'] - export const ise_match_map_status = (obj?: { __typename?: any } | null): obj is e_match_map_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status"') - return e_match_map_status_possibleTypes.includes(obj.__typename) + const e_team_roles_max_fields_possibleTypes: string[] = ['e_team_roles_max_fields'] + export const ise_team_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_max_fields"') + return e_team_roles_max_fields_possibleTypes.includes(obj.__typename) } - const e_match_map_status_aggregate_possibleTypes: string[] = ['e_match_map_status_aggregate'] - export const ise_match_map_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate"') - return e_match_map_status_aggregate_possibleTypes.includes(obj.__typename) + const e_team_roles_min_fields_possibleTypes: string[] = ['e_team_roles_min_fields'] + export const ise_team_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_min_fields"') + return e_team_roles_min_fields_possibleTypes.includes(obj.__typename) } - const e_match_map_status_aggregate_fields_possibleTypes: string[] = ['e_match_map_status_aggregate_fields'] - export const ise_match_map_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_aggregate_fields"') - return e_match_map_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_team_roles_mutation_response_possibleTypes: string[] = ['e_team_roles_mutation_response'] + export const ise_team_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roles_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_mutation_response"') + return e_team_roles_mutation_response_possibleTypes.includes(obj.__typename) } - const e_match_map_status_max_fields_possibleTypes: string[] = ['e_match_map_status_max_fields'] - export const ise_match_map_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_max_fields"') - return e_match_map_status_max_fields_possibleTypes.includes(obj.__typename) + const e_team_roster_statuses_possibleTypes: string[] = ['e_team_roster_statuses'] + export const ise_team_roster_statuses = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses"') + return e_team_roster_statuses_possibleTypes.includes(obj.__typename) } - const e_match_map_status_min_fields_possibleTypes: string[] = ['e_match_map_status_min_fields'] - export const ise_match_map_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_map_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_min_fields"') - return e_match_map_status_min_fields_possibleTypes.includes(obj.__typename) + const e_team_roster_statuses_aggregate_possibleTypes: string[] = ['e_team_roster_statuses_aggregate'] + export const ise_team_roster_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate"') + return e_team_roster_statuses_aggregate_possibleTypes.includes(obj.__typename) } - const e_match_map_status_mutation_response_possibleTypes: string[] = ['e_match_map_status_mutation_response'] - export const ise_match_map_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_map_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_map_status_mutation_response"') - return e_match_map_status_mutation_response_possibleTypes.includes(obj.__typename) + const e_team_roster_statuses_aggregate_fields_possibleTypes: string[] = ['e_team_roster_statuses_aggregate_fields'] + export const ise_team_roster_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate_fields"') + return e_team_roster_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_match_mode_possibleTypes: string[] = ['e_match_mode'] - export const ise_match_mode = (obj?: { __typename?: any } | null): obj is e_match_mode => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode"') - return e_match_mode_possibleTypes.includes(obj.__typename) + const e_team_roster_statuses_max_fields_possibleTypes: string[] = ['e_team_roster_statuses_max_fields'] + export const ise_team_roster_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_max_fields"') + return e_team_roster_statuses_max_fields_possibleTypes.includes(obj.__typename) } - const e_match_mode_aggregate_possibleTypes: string[] = ['e_match_mode_aggregate'] - export const ise_match_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate"') - return e_match_mode_aggregate_possibleTypes.includes(obj.__typename) + const e_team_roster_statuses_min_fields_possibleTypes: string[] = ['e_team_roster_statuses_min_fields'] + export const ise_team_roster_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_min_fields"') + return e_team_roster_statuses_min_fields_possibleTypes.includes(obj.__typename) } - const e_match_mode_aggregate_fields_possibleTypes: string[] = ['e_match_mode_aggregate_fields'] - export const ise_match_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_aggregate_fields"') - return e_match_mode_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_team_roster_statuses_mutation_response_possibleTypes: string[] = ['e_team_roster_statuses_mutation_response'] + export const ise_team_roster_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_mutation_response"') + return e_team_roster_statuses_mutation_response_possibleTypes.includes(obj.__typename) } - const e_match_mode_max_fields_possibleTypes: string[] = ['e_match_mode_max_fields'] - export const ise_match_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_max_fields"') - return e_match_mode_max_fields_possibleTypes.includes(obj.__typename) + const e_timeout_settings_possibleTypes: string[] = ['e_timeout_settings'] + export const ise_timeout_settings = (obj?: { __typename?: any } | null): obj is e_timeout_settings => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings"') + return e_timeout_settings_possibleTypes.includes(obj.__typename) } - const e_match_mode_min_fields_possibleTypes: string[] = ['e_match_mode_min_fields'] - export const ise_match_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_match_mode_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_min_fields"') - return e_match_mode_min_fields_possibleTypes.includes(obj.__typename) + const e_timeout_settings_aggregate_possibleTypes: string[] = ['e_timeout_settings_aggregate'] + export const ise_timeout_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate"') + return e_timeout_settings_aggregate_possibleTypes.includes(obj.__typename) } - const e_match_mode_mutation_response_possibleTypes: string[] = ['e_match_mode_mutation_response'] - export const ise_match_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_mode_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_mode_mutation_response"') - return e_match_mode_mutation_response_possibleTypes.includes(obj.__typename) + const e_timeout_settings_aggregate_fields_possibleTypes: string[] = ['e_timeout_settings_aggregate_fields'] + export const ise_timeout_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate_fields"') + return e_timeout_settings_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_match_status_possibleTypes: string[] = ['e_match_status'] - export const ise_match_status = (obj?: { __typename?: any } | null): obj is e_match_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status"') - return e_match_status_possibleTypes.includes(obj.__typename) + const e_timeout_settings_max_fields_possibleTypes: string[] = ['e_timeout_settings_max_fields'] + export const ise_timeout_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_max_fields"') + return e_timeout_settings_max_fields_possibleTypes.includes(obj.__typename) } - const e_match_status_aggregate_possibleTypes: string[] = ['e_match_status_aggregate'] - export const ise_match_status_aggregate = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate"') - return e_match_status_aggregate_possibleTypes.includes(obj.__typename) + const e_timeout_settings_min_fields_possibleTypes: string[] = ['e_timeout_settings_min_fields'] + export const ise_timeout_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_min_fields"') + return e_timeout_settings_min_fields_possibleTypes.includes(obj.__typename) } - const e_match_status_aggregate_fields_possibleTypes: string[] = ['e_match_status_aggregate_fields'] - export const ise_match_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_aggregate_fields"') - return e_match_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_timeout_settings_mutation_response_possibleTypes: string[] = ['e_timeout_settings_mutation_response'] + export const ise_timeout_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_timeout_settings_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_mutation_response"') + return e_timeout_settings_mutation_response_possibleTypes.includes(obj.__typename) } - const e_match_status_max_fields_possibleTypes: string[] = ['e_match_status_max_fields'] - export const ise_match_status_max_fields = (obj?: { __typename?: any } | null): obj is e_match_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_max_fields"') - return e_match_status_max_fields_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"') + return e_tournament_stage_types_possibleTypes.includes(obj.__typename) } - const e_match_status_min_fields_possibleTypes: string[] = ['e_match_status_min_fields'] - export const ise_match_status_min_fields = (obj?: { __typename?: any } | null): obj is e_match_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_min_fields"') - return e_match_status_min_fields_possibleTypes.includes(obj.__typename) + const e_tournament_stage_types_aggregate_possibleTypes: string[] = ['e_tournament_stage_types_aggregate'] + export const ise_tournament_stage_types_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate"') + return e_tournament_stage_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_match_status_mutation_response_possibleTypes: string[] = ['e_match_status_mutation_response'] - export const ise_match_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_status_mutation_response"') - return e_match_status_mutation_response_possibleTypes.includes(obj.__typename) + const e_tournament_stage_types_aggregate_fields_possibleTypes: string[] = ['e_tournament_stage_types_aggregate_fields'] + export const ise_tournament_stage_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate_fields"') + return e_tournament_stage_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_match_types_possibleTypes: string[] = ['e_match_types'] - export const ise_match_types = (obj?: { __typename?: any } | null): obj is e_match_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types"') - return e_match_types_possibleTypes.includes(obj.__typename) + const e_tournament_stage_types_max_fields_possibleTypes: string[] = ['e_tournament_stage_types_max_fields'] + export const ise_tournament_stage_types_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_max_fields"') + return e_tournament_stage_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_match_types_aggregate_possibleTypes: string[] = ['e_match_types_aggregate'] - export const ise_match_types_aggregate = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate"') - return e_match_types_aggregate_possibleTypes.includes(obj.__typename) + const e_tournament_stage_types_min_fields_possibleTypes: string[] = ['e_tournament_stage_types_min_fields'] + export const ise_tournament_stage_types_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_min_fields"') + return e_tournament_stage_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_match_types_aggregate_fields_possibleTypes: string[] = ['e_match_types_aggregate_fields'] - export const ise_match_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_match_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_aggregate_fields"') - return e_match_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_tournament_stage_types_mutation_response_possibleTypes: string[] = ['e_tournament_stage_types_mutation_response'] + export const ise_tournament_stage_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_mutation_response"') + return e_tournament_stage_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_match_types_max_fields_possibleTypes: string[] = ['e_match_types_max_fields'] - export const ise_match_types_max_fields = (obj?: { __typename?: any } | null): obj is e_match_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_max_fields"') - return e_match_types_max_fields_possibleTypes.includes(obj.__typename) + const e_tournament_status_possibleTypes: string[] = ['e_tournament_status'] + export const ise_tournament_status = (obj?: { __typename?: any } | null): obj is e_tournament_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status"') + return e_tournament_status_possibleTypes.includes(obj.__typename) } - const e_match_types_min_fields_possibleTypes: string[] = ['e_match_types_min_fields'] - export const ise_match_types_min_fields = (obj?: { __typename?: any } | null): obj is e_match_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_min_fields"') - return e_match_types_min_fields_possibleTypes.includes(obj.__typename) + const e_tournament_status_aggregate_possibleTypes: string[] = ['e_tournament_status_aggregate'] + export const ise_tournament_status_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate"') + return e_tournament_status_aggregate_possibleTypes.includes(obj.__typename) } - const e_match_types_mutation_response_possibleTypes: string[] = ['e_match_types_mutation_response'] - export const ise_match_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_match_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_match_types_mutation_response"') - return e_match_types_mutation_response_possibleTypes.includes(obj.__typename) + const e_tournament_status_aggregate_fields_possibleTypes: string[] = ['e_tournament_status_aggregate_fields'] + export const ise_tournament_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate_fields"') + return e_tournament_status_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_notification_types_possibleTypes: string[] = ['e_notification_types'] - export const ise_notification_types = (obj?: { __typename?: any } | null): obj is e_notification_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types"') - return e_notification_types_possibleTypes.includes(obj.__typename) + const e_tournament_status_max_fields_possibleTypes: string[] = ['e_tournament_status_max_fields'] + export const ise_tournament_status_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_max_fields"') + return e_tournament_status_max_fields_possibleTypes.includes(obj.__typename) } - const e_notification_types_aggregate_possibleTypes: string[] = ['e_notification_types_aggregate'] - export const ise_notification_types_aggregate = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate"') - return e_notification_types_aggregate_possibleTypes.includes(obj.__typename) + const e_tournament_status_min_fields_possibleTypes: string[] = ['e_tournament_status_min_fields'] + export const ise_tournament_status_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_min_fields"') + return e_tournament_status_min_fields_possibleTypes.includes(obj.__typename) } - const e_notification_types_aggregate_fields_possibleTypes: string[] = ['e_notification_types_aggregate_fields'] - export const ise_notification_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_aggregate_fields"') - return e_notification_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_tournament_status_mutation_response_possibleTypes: string[] = ['e_tournament_status_mutation_response'] + export const ise_tournament_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_mutation_response"') + return e_tournament_status_mutation_response_possibleTypes.includes(obj.__typename) } - const e_notification_types_max_fields_possibleTypes: string[] = ['e_notification_types_max_fields'] - export const ise_notification_types_max_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_max_fields"') - return e_notification_types_max_fields_possibleTypes.includes(obj.__typename) + const e_utility_types_possibleTypes: string[] = ['e_utility_types'] + export const ise_utility_types = (obj?: { __typename?: any } | null): obj is e_utility_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types"') + return e_utility_types_possibleTypes.includes(obj.__typename) } - const e_notification_types_min_fields_possibleTypes: string[] = ['e_notification_types_min_fields'] - export const ise_notification_types_min_fields = (obj?: { __typename?: any } | null): obj is e_notification_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_min_fields"') - return e_notification_types_min_fields_possibleTypes.includes(obj.__typename) + const e_utility_types_aggregate_possibleTypes: string[] = ['e_utility_types_aggregate'] + export const ise_utility_types_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate"') + return e_utility_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_notification_types_mutation_response_possibleTypes: string[] = ['e_notification_types_mutation_response'] - export const ise_notification_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_notification_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_notification_types_mutation_response"') - return e_notification_types_mutation_response_possibleTypes.includes(obj.__typename) + const e_utility_types_aggregate_fields_possibleTypes: string[] = ['e_utility_types_aggregate_fields'] + export const ise_utility_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate_fields"') + return e_utility_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_objective_types_possibleTypes: string[] = ['e_objective_types'] - export const ise_objective_types = (obj?: { __typename?: any } | null): obj is e_objective_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types"') - return e_objective_types_possibleTypes.includes(obj.__typename) + const e_utility_types_max_fields_possibleTypes: string[] = ['e_utility_types_max_fields'] + export const ise_utility_types_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_max_fields"') + return e_utility_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_objective_types_aggregate_possibleTypes: string[] = ['e_objective_types_aggregate'] - export const ise_objective_types_aggregate = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate"') - return e_objective_types_aggregate_possibleTypes.includes(obj.__typename) + const e_utility_types_min_fields_possibleTypes: string[] = ['e_utility_types_min_fields'] + export const ise_utility_types_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_min_fields"') + return e_utility_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_objective_types_aggregate_fields_possibleTypes: string[] = ['e_objective_types_aggregate_fields'] - export const ise_objective_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_aggregate_fields"') - return e_objective_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_utility_types_mutation_response_possibleTypes: string[] = ['e_utility_types_mutation_response'] + export const ise_utility_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_mutation_response"') + return e_utility_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_objective_types_max_fields_possibleTypes: string[] = ['e_objective_types_max_fields'] - export const ise_objective_types_max_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_max_fields"') - return e_objective_types_max_fields_possibleTypes.includes(obj.__typename) + const e_veto_pick_types_possibleTypes: string[] = ['e_veto_pick_types'] + export const ise_veto_pick_types = (obj?: { __typename?: any } | null): obj is e_veto_pick_types => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types"') + return e_veto_pick_types_possibleTypes.includes(obj.__typename) } - const e_objective_types_min_fields_possibleTypes: string[] = ['e_objective_types_min_fields'] - export const ise_objective_types_min_fields = (obj?: { __typename?: any } | null): obj is e_objective_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_min_fields"') - return e_objective_types_min_fields_possibleTypes.includes(obj.__typename) + const e_veto_pick_types_aggregate_possibleTypes: string[] = ['e_veto_pick_types_aggregate'] + export const ise_veto_pick_types_aggregate = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate"') + return e_veto_pick_types_aggregate_possibleTypes.includes(obj.__typename) } - const e_objective_types_mutation_response_possibleTypes: string[] = ['e_objective_types_mutation_response'] - export const ise_objective_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_objective_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_objective_types_mutation_response"') - return e_objective_types_mutation_response_possibleTypes.includes(obj.__typename) + const e_veto_pick_types_aggregate_fields_possibleTypes: string[] = ['e_veto_pick_types_aggregate_fields'] + export const ise_veto_pick_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate_fields"') + return e_veto_pick_types_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_player_roles_possibleTypes: string[] = ['e_player_roles'] - export const ise_player_roles = (obj?: { __typename?: any } | null): obj is e_player_roles => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles"') - return e_player_roles_possibleTypes.includes(obj.__typename) + const e_veto_pick_types_max_fields_possibleTypes: string[] = ['e_veto_pick_types_max_fields'] + export const ise_veto_pick_types_max_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_max_fields"') + return e_veto_pick_types_max_fields_possibleTypes.includes(obj.__typename) } - const e_player_roles_aggregate_possibleTypes: string[] = ['e_player_roles_aggregate'] - export const ise_player_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate"') - return e_player_roles_aggregate_possibleTypes.includes(obj.__typename) + const e_veto_pick_types_min_fields_possibleTypes: string[] = ['e_veto_pick_types_min_fields'] + export const ise_veto_pick_types_min_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_min_fields"') + return e_veto_pick_types_min_fields_possibleTypes.includes(obj.__typename) } - const e_player_roles_aggregate_fields_possibleTypes: string[] = ['e_player_roles_aggregate_fields'] - export const ise_player_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_aggregate_fields"') - return e_player_roles_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_veto_pick_types_mutation_response_possibleTypes: string[] = ['e_veto_pick_types_mutation_response'] + export const ise_veto_pick_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_mutation_response"') + return e_veto_pick_types_mutation_response_possibleTypes.includes(obj.__typename) } - const e_player_roles_max_fields_possibleTypes: string[] = ['e_player_roles_max_fields'] - export const ise_player_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_max_fields"') - return e_player_roles_max_fields_possibleTypes.includes(obj.__typename) + const e_winning_reasons_possibleTypes: string[] = ['e_winning_reasons'] + export const ise_winning_reasons = (obj?: { __typename?: any } | null): obj is e_winning_reasons => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons"') + return e_winning_reasons_possibleTypes.includes(obj.__typename) } - const e_player_roles_min_fields_possibleTypes: string[] = ['e_player_roles_min_fields'] - export const ise_player_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_player_roles_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_min_fields"') - return e_player_roles_min_fields_possibleTypes.includes(obj.__typename) + const e_winning_reasons_aggregate_possibleTypes: string[] = ['e_winning_reasons_aggregate'] + export const ise_winning_reasons_aggregate = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate"') + return e_winning_reasons_aggregate_possibleTypes.includes(obj.__typename) } - const e_player_roles_mutation_response_possibleTypes: string[] = ['e_player_roles_mutation_response'] - export const ise_player_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_player_roles_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_player_roles_mutation_response"') - return e_player_roles_mutation_response_possibleTypes.includes(obj.__typename) + const e_winning_reasons_aggregate_fields_possibleTypes: string[] = ['e_winning_reasons_aggregate_fields'] + export const ise_winning_reasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate_fields"') + return e_winning_reasons_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_plugin_runtimes_possibleTypes: string[] = ['e_plugin_runtimes'] - export const ise_plugin_runtimes = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes"') - return e_plugin_runtimes_possibleTypes.includes(obj.__typename) + const e_winning_reasons_max_fields_possibleTypes: string[] = ['e_winning_reasons_max_fields'] + export const ise_winning_reasons_max_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_max_fields"') + return e_winning_reasons_max_fields_possibleTypes.includes(obj.__typename) } - const e_plugin_runtimes_aggregate_possibleTypes: string[] = ['e_plugin_runtimes_aggregate'] - export const ise_plugin_runtimes_aggregate = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate"') - return e_plugin_runtimes_aggregate_possibleTypes.includes(obj.__typename) + const e_winning_reasons_min_fields_possibleTypes: string[] = ['e_winning_reasons_min_fields'] + export const ise_winning_reasons_min_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_min_fields"') + return e_winning_reasons_min_fields_possibleTypes.includes(obj.__typename) } - const e_plugin_runtimes_aggregate_fields_possibleTypes: string[] = ['e_plugin_runtimes_aggregate_fields'] - export const ise_plugin_runtimes_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_aggregate_fields"') - return e_plugin_runtimes_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_winning_reasons_mutation_response_possibleTypes: string[] = ['e_winning_reasons_mutation_response'] + export const ise_winning_reasons_mutation_response = (obj?: { __typename?: any } | null): obj is e_winning_reasons_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_mutation_response"') + return e_winning_reasons_mutation_response_possibleTypes.includes(obj.__typename) } - const e_plugin_runtimes_max_fields_possibleTypes: string[] = ['e_plugin_runtimes_max_fields'] - export const ise_plugin_runtimes_max_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_max_fields"') - return e_plugin_runtimes_max_fields_possibleTypes.includes(obj.__typename) + const event_match_links_possibleTypes: string[] = ['event_match_links'] + export const isevent_match_links = (obj?: { __typename?: any } | null): obj is event_match_links => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links"') + return event_match_links_possibleTypes.includes(obj.__typename) } - const e_plugin_runtimes_min_fields_possibleTypes: string[] = ['e_plugin_runtimes_min_fields'] - export const ise_plugin_runtimes_min_fields = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_min_fields"') - return e_plugin_runtimes_min_fields_possibleTypes.includes(obj.__typename) + const event_match_links_aggregate_possibleTypes: string[] = ['event_match_links_aggregate'] + export const isevent_match_links_aggregate = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate"') + return event_match_links_aggregate_possibleTypes.includes(obj.__typename) } - const e_plugin_runtimes_mutation_response_possibleTypes: string[] = ['e_plugin_runtimes_mutation_response'] - export const ise_plugin_runtimes_mutation_response = (obj?: { __typename?: any } | null): obj is e_plugin_runtimes_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_plugin_runtimes_mutation_response"') - return e_plugin_runtimes_mutation_response_possibleTypes.includes(obj.__typename) + const event_match_links_aggregate_fields_possibleTypes: string[] = ['event_match_links_aggregate_fields'] + export const isevent_match_links_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate_fields"') + return event_match_links_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_ready_settings_possibleTypes: string[] = ['e_ready_settings'] - export const ise_ready_settings = (obj?: { __typename?: any } | null): obj is e_ready_settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings"') - return e_ready_settings_possibleTypes.includes(obj.__typename) + const event_match_links_max_fields_possibleTypes: string[] = ['event_match_links_max_fields'] + export const isevent_match_links_max_fields = (obj?: { __typename?: any } | null): obj is event_match_links_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_max_fields"') + return event_match_links_max_fields_possibleTypes.includes(obj.__typename) } - const e_ready_settings_aggregate_possibleTypes: string[] = ['e_ready_settings_aggregate'] - export const ise_ready_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate"') - return e_ready_settings_aggregate_possibleTypes.includes(obj.__typename) + const event_match_links_min_fields_possibleTypes: string[] = ['event_match_links_min_fields'] + export const isevent_match_links_min_fields = (obj?: { __typename?: any } | null): obj is event_match_links_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_min_fields"') + return event_match_links_min_fields_possibleTypes.includes(obj.__typename) } - const e_ready_settings_aggregate_fields_possibleTypes: string[] = ['e_ready_settings_aggregate_fields'] - export const ise_ready_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_aggregate_fields"') - return e_ready_settings_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_match_links_mutation_response_possibleTypes: string[] = ['event_match_links_mutation_response'] + export const isevent_match_links_mutation_response = (obj?: { __typename?: any } | null): obj is event_match_links_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_mutation_response"') + return event_match_links_mutation_response_possibleTypes.includes(obj.__typename) } - const e_ready_settings_max_fields_possibleTypes: string[] = ['e_ready_settings_max_fields'] - export const ise_ready_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_max_fields"') - return e_ready_settings_max_fields_possibleTypes.includes(obj.__typename) + const event_media_possibleTypes: string[] = ['event_media'] + export const isevent_media = (obj?: { __typename?: any } | null): obj is event_media => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media"') + return event_media_possibleTypes.includes(obj.__typename) } - const e_ready_settings_min_fields_possibleTypes: string[] = ['e_ready_settings_min_fields'] - export const ise_ready_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_ready_settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_min_fields"') - return e_ready_settings_min_fields_possibleTypes.includes(obj.__typename) + const event_media_aggregate_possibleTypes: string[] = ['event_media_aggregate'] + export const isevent_media_aggregate = (obj?: { __typename?: any } | null): obj is event_media_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate"') + return event_media_aggregate_possibleTypes.includes(obj.__typename) } - const e_ready_settings_mutation_response_possibleTypes: string[] = ['e_ready_settings_mutation_response'] - export const ise_ready_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_ready_settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_ready_settings_mutation_response"') - return e_ready_settings_mutation_response_possibleTypes.includes(obj.__typename) + const event_media_aggregate_fields_possibleTypes: string[] = ['event_media_aggregate_fields'] + export const isevent_media_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate_fields"') + return event_media_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_sanction_types_possibleTypes: string[] = ['e_sanction_types'] - export const ise_sanction_types = (obj?: { __typename?: any } | null): obj is e_sanction_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types"') - return e_sanction_types_possibleTypes.includes(obj.__typename) + const event_media_avg_fields_possibleTypes: string[] = ['event_media_avg_fields'] + export const isevent_media_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_avg_fields"') + return event_media_avg_fields_possibleTypes.includes(obj.__typename) } - const e_sanction_types_aggregate_possibleTypes: string[] = ['e_sanction_types_aggregate'] - export const ise_sanction_types_aggregate = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate"') - return e_sanction_types_aggregate_possibleTypes.includes(obj.__typename) + const event_media_max_fields_possibleTypes: string[] = ['event_media_max_fields'] + export const isevent_media_max_fields = (obj?: { __typename?: any } | null): obj is event_media_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_max_fields"') + return event_media_max_fields_possibleTypes.includes(obj.__typename) } - const e_sanction_types_aggregate_fields_possibleTypes: string[] = ['e_sanction_types_aggregate_fields'] - export const ise_sanction_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_aggregate_fields"') - return e_sanction_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_media_min_fields_possibleTypes: string[] = ['event_media_min_fields'] + export const isevent_media_min_fields = (obj?: { __typename?: any } | null): obj is event_media_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_min_fields"') + return event_media_min_fields_possibleTypes.includes(obj.__typename) } - const e_sanction_types_max_fields_possibleTypes: string[] = ['e_sanction_types_max_fields'] - export const ise_sanction_types_max_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_max_fields"') - return e_sanction_types_max_fields_possibleTypes.includes(obj.__typename) + const event_media_mutation_response_possibleTypes: string[] = ['event_media_mutation_response'] + export const isevent_media_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_mutation_response"') + return event_media_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_possibleTypes: string[] = ['event_media_players'] + export const isevent_media_players = (obj?: { __typename?: any } | null): obj is event_media_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players"') + return event_media_players_possibleTypes.includes(obj.__typename) } - const e_sanction_types_min_fields_possibleTypes: string[] = ['e_sanction_types_min_fields'] - export const ise_sanction_types_min_fields = (obj?: { __typename?: any } | null): obj is e_sanction_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_min_fields"') - return e_sanction_types_min_fields_possibleTypes.includes(obj.__typename) + const event_media_players_aggregate_possibleTypes: string[] = ['event_media_players_aggregate'] + export const isevent_media_players_aggregate = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate"') + return event_media_players_aggregate_possibleTypes.includes(obj.__typename) } - const e_sanction_types_mutation_response_possibleTypes: string[] = ['e_sanction_types_mutation_response'] - export const ise_sanction_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_sanction_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sanction_types_mutation_response"') - return e_sanction_types_mutation_response_possibleTypes.includes(obj.__typename) + const event_media_players_aggregate_fields_possibleTypes: string[] = ['event_media_players_aggregate_fields'] + export const isevent_media_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate_fields"') + return event_media_players_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_scrim_request_statuses_possibleTypes: string[] = ['e_scrim_request_statuses'] - export const ise_scrim_request_statuses = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses"') - return e_scrim_request_statuses_possibleTypes.includes(obj.__typename) + const event_media_players_avg_fields_possibleTypes: string[] = ['event_media_players_avg_fields'] + export const isevent_media_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_avg_fields"') + return event_media_players_avg_fields_possibleTypes.includes(obj.__typename) } - const e_scrim_request_statuses_aggregate_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate'] - export const ise_scrim_request_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate"') - return e_scrim_request_statuses_aggregate_possibleTypes.includes(obj.__typename) + const event_media_players_max_fields_possibleTypes: string[] = ['event_media_players_max_fields'] + export const isevent_media_players_max_fields = (obj?: { __typename?: any } | null): obj is event_media_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_max_fields"') + return event_media_players_max_fields_possibleTypes.includes(obj.__typename) } - const e_scrim_request_statuses_aggregate_fields_possibleTypes: string[] = ['e_scrim_request_statuses_aggregate_fields'] - export const ise_scrim_request_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_aggregate_fields"') - return e_scrim_request_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_media_players_min_fields_possibleTypes: string[] = ['event_media_players_min_fields'] + export const isevent_media_players_min_fields = (obj?: { __typename?: any } | null): obj is event_media_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_min_fields"') + return event_media_players_min_fields_possibleTypes.includes(obj.__typename) } - const e_scrim_request_statuses_max_fields_possibleTypes: string[] = ['e_scrim_request_statuses_max_fields'] - export const ise_scrim_request_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_max_fields"') - return e_scrim_request_statuses_max_fields_possibleTypes.includes(obj.__typename) + const event_media_players_mutation_response_possibleTypes: string[] = ['event_media_players_mutation_response'] + export const isevent_media_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_mutation_response"') + return event_media_players_mutation_response_possibleTypes.includes(obj.__typename) } - const e_scrim_request_statuses_min_fields_possibleTypes: string[] = ['e_scrim_request_statuses_min_fields'] - export const ise_scrim_request_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_min_fields"') - return e_scrim_request_statuses_min_fields_possibleTypes.includes(obj.__typename) + const event_media_players_stddev_fields_possibleTypes: string[] = ['event_media_players_stddev_fields'] + export const isevent_media_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_fields"') + return event_media_players_stddev_fields_possibleTypes.includes(obj.__typename) } - const e_scrim_request_statuses_mutation_response_possibleTypes: string[] = ['e_scrim_request_statuses_mutation_response'] - export const ise_scrim_request_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_scrim_request_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_scrim_request_statuses_mutation_response"') - return e_scrim_request_statuses_mutation_response_possibleTypes.includes(obj.__typename) + const event_media_players_stddev_pop_fields_possibleTypes: string[] = ['event_media_players_stddev_pop_fields'] + export const isevent_media_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_pop_fields"') + return event_media_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const e_server_types_possibleTypes: string[] = ['e_server_types'] - export const ise_server_types = (obj?: { __typename?: any } | null): obj is e_server_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types"') - return e_server_types_possibleTypes.includes(obj.__typename) + const event_media_players_stddev_samp_fields_possibleTypes: string[] = ['event_media_players_stddev_samp_fields'] + export const isevent_media_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_samp_fields"') + return event_media_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const e_server_types_aggregate_possibleTypes: string[] = ['e_server_types_aggregate'] - export const ise_server_types_aggregate = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate"') - return e_server_types_aggregate_possibleTypes.includes(obj.__typename) + const event_media_players_sum_fields_possibleTypes: string[] = ['event_media_players_sum_fields'] + export const isevent_media_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_sum_fields"') + return event_media_players_sum_fields_possibleTypes.includes(obj.__typename) } - const e_server_types_aggregate_fields_possibleTypes: string[] = ['e_server_types_aggregate_fields'] - export const ise_server_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_server_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_aggregate_fields"') - return e_server_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_media_players_var_pop_fields_possibleTypes: string[] = ['event_media_players_var_pop_fields'] + export const isevent_media_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_pop_fields"') + return event_media_players_var_pop_fields_possibleTypes.includes(obj.__typename) } - const e_server_types_max_fields_possibleTypes: string[] = ['e_server_types_max_fields'] - export const ise_server_types_max_fields = (obj?: { __typename?: any } | null): obj is e_server_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_max_fields"') - return e_server_types_max_fields_possibleTypes.includes(obj.__typename) + const event_media_players_var_samp_fields_possibleTypes: string[] = ['event_media_players_var_samp_fields'] + export const isevent_media_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_samp_fields"') + return event_media_players_var_samp_fields_possibleTypes.includes(obj.__typename) } - const e_server_types_min_fields_possibleTypes: string[] = ['e_server_types_min_fields'] - export const ise_server_types_min_fields = (obj?: { __typename?: any } | null): obj is e_server_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_min_fields"') - return e_server_types_min_fields_possibleTypes.includes(obj.__typename) + const event_media_players_variance_fields_possibleTypes: string[] = ['event_media_players_variance_fields'] + export const isevent_media_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_variance_fields"') + return event_media_players_variance_fields_possibleTypes.includes(obj.__typename) } - const e_server_types_mutation_response_possibleTypes: string[] = ['e_server_types_mutation_response'] - export const ise_server_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_server_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_server_types_mutation_response"') - return e_server_types_mutation_response_possibleTypes.includes(obj.__typename) + const event_media_stddev_fields_possibleTypes: string[] = ['event_media_stddev_fields'] + export const isevent_media_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_fields"') + return event_media_stddev_fields_possibleTypes.includes(obj.__typename) } - const e_sides_possibleTypes: string[] = ['e_sides'] - export const ise_sides = (obj?: { __typename?: any } | null): obj is e_sides => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides"') - return e_sides_possibleTypes.includes(obj.__typename) + const event_media_stddev_pop_fields_possibleTypes: string[] = ['event_media_stddev_pop_fields'] + export const isevent_media_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_pop_fields"') + return event_media_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const e_sides_aggregate_possibleTypes: string[] = ['e_sides_aggregate'] - export const ise_sides_aggregate = (obj?: { __typename?: any } | null): obj is e_sides_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate"') - return e_sides_aggregate_possibleTypes.includes(obj.__typename) + const event_media_stddev_samp_fields_possibleTypes: string[] = ['event_media_stddev_samp_fields'] + export const isevent_media_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_samp_fields"') + return event_media_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const e_sides_aggregate_fields_possibleTypes: string[] = ['e_sides_aggregate_fields'] - export const ise_sides_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_sides_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_aggregate_fields"') - return e_sides_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_media_sum_fields_possibleTypes: string[] = ['event_media_sum_fields'] + export const isevent_media_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_sum_fields"') + return event_media_sum_fields_possibleTypes.includes(obj.__typename) } - const e_sides_max_fields_possibleTypes: string[] = ['e_sides_max_fields'] - export const ise_sides_max_fields = (obj?: { __typename?: any } | null): obj is e_sides_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_max_fields"') - return e_sides_max_fields_possibleTypes.includes(obj.__typename) + const event_media_var_pop_fields_possibleTypes: string[] = ['event_media_var_pop_fields'] + export const isevent_media_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_pop_fields"') + return event_media_var_pop_fields_possibleTypes.includes(obj.__typename) } - const e_sides_min_fields_possibleTypes: string[] = ['e_sides_min_fields'] - export const ise_sides_min_fields = (obj?: { __typename?: any } | null): obj is e_sides_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_min_fields"') - return e_sides_min_fields_possibleTypes.includes(obj.__typename) + const event_media_var_samp_fields_possibleTypes: string[] = ['event_media_var_samp_fields'] + export const isevent_media_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_samp_fields"') + return event_media_var_samp_fields_possibleTypes.includes(obj.__typename) } - const e_sides_mutation_response_possibleTypes: string[] = ['e_sides_mutation_response'] - export const ise_sides_mutation_response = (obj?: { __typename?: any } | null): obj is e_sides_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_sides_mutation_response"') - return e_sides_mutation_response_possibleTypes.includes(obj.__typename) + const event_media_variance_fields_possibleTypes: string[] = ['event_media_variance_fields'] + export const isevent_media_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_variance_fields"') + return event_media_variance_fields_possibleTypes.includes(obj.__typename) } - const e_system_alert_types_possibleTypes: string[] = ['e_system_alert_types'] - export const ise_system_alert_types = (obj?: { __typename?: any } | null): obj is e_system_alert_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types"') - return e_system_alert_types_possibleTypes.includes(obj.__typename) + const event_organizers_possibleTypes: string[] = ['event_organizers'] + export const isevent_organizers = (obj?: { __typename?: any } | null): obj is event_organizers => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers"') + return event_organizers_possibleTypes.includes(obj.__typename) } - const e_system_alert_types_aggregate_possibleTypes: string[] = ['e_system_alert_types_aggregate'] - export const ise_system_alert_types_aggregate = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate"') - return e_system_alert_types_aggregate_possibleTypes.includes(obj.__typename) + const event_organizers_aggregate_possibleTypes: string[] = ['event_organizers_aggregate'] + export const isevent_organizers_aggregate = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate"') + return event_organizers_aggregate_possibleTypes.includes(obj.__typename) } - const e_system_alert_types_aggregate_fields_possibleTypes: string[] = ['e_system_alert_types_aggregate_fields'] - export const ise_system_alert_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_aggregate_fields"') - return e_system_alert_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_organizers_aggregate_fields_possibleTypes: string[] = ['event_organizers_aggregate_fields'] + export const isevent_organizers_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate_fields"') + return event_organizers_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_system_alert_types_max_fields_possibleTypes: string[] = ['e_system_alert_types_max_fields'] - export const ise_system_alert_types_max_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_max_fields"') - return e_system_alert_types_max_fields_possibleTypes.includes(obj.__typename) + const event_organizers_avg_fields_possibleTypes: string[] = ['event_organizers_avg_fields'] + export const isevent_organizers_avg_fields = (obj?: { __typename?: any } | null): obj is event_organizers_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_avg_fields"') + return event_organizers_avg_fields_possibleTypes.includes(obj.__typename) } - const e_system_alert_types_min_fields_possibleTypes: string[] = ['e_system_alert_types_min_fields'] - export const ise_system_alert_types_min_fields = (obj?: { __typename?: any } | null): obj is e_system_alert_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_min_fields"') - return e_system_alert_types_min_fields_possibleTypes.includes(obj.__typename) + const event_organizers_max_fields_possibleTypes: string[] = ['event_organizers_max_fields'] + export const isevent_organizers_max_fields = (obj?: { __typename?: any } | null): obj is event_organizers_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_max_fields"') + return event_organizers_max_fields_possibleTypes.includes(obj.__typename) } - const e_system_alert_types_mutation_response_possibleTypes: string[] = ['e_system_alert_types_mutation_response'] - export const ise_system_alert_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_system_alert_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_system_alert_types_mutation_response"') - return e_system_alert_types_mutation_response_possibleTypes.includes(obj.__typename) + const event_organizers_min_fields_possibleTypes: string[] = ['event_organizers_min_fields'] + export const isevent_organizers_min_fields = (obj?: { __typename?: any } | null): obj is event_organizers_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_min_fields"') + return event_organizers_min_fields_possibleTypes.includes(obj.__typename) } - const e_team_roles_possibleTypes: string[] = ['e_team_roles'] - export const ise_team_roles = (obj?: { __typename?: any } | null): obj is e_team_roles => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles"') - return e_team_roles_possibleTypes.includes(obj.__typename) + const event_organizers_mutation_response_possibleTypes: string[] = ['event_organizers_mutation_response'] + export const isevent_organizers_mutation_response = (obj?: { __typename?: any } | null): obj is event_organizers_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_mutation_response"') + return event_organizers_mutation_response_possibleTypes.includes(obj.__typename) } - const e_team_roles_aggregate_possibleTypes: string[] = ['e_team_roles_aggregate'] - export const ise_team_roles_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate"') - return e_team_roles_aggregate_possibleTypes.includes(obj.__typename) + const event_organizers_stddev_fields_possibleTypes: string[] = ['event_organizers_stddev_fields'] + export const isevent_organizers_stddev_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_fields"') + return event_organizers_stddev_fields_possibleTypes.includes(obj.__typename) } - const e_team_roles_aggregate_fields_possibleTypes: string[] = ['e_team_roles_aggregate_fields'] - export const ise_team_roles_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_aggregate_fields"') - return e_team_roles_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_organizers_stddev_pop_fields_possibleTypes: string[] = ['event_organizers_stddev_pop_fields'] + export const isevent_organizers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_pop_fields"') + return event_organizers_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const e_team_roles_max_fields_possibleTypes: string[] = ['e_team_roles_max_fields'] - export const ise_team_roles_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_max_fields"') - return e_team_roles_max_fields_possibleTypes.includes(obj.__typename) + const event_organizers_stddev_samp_fields_possibleTypes: string[] = ['event_organizers_stddev_samp_fields'] + export const isevent_organizers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_samp_fields"') + return event_organizers_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const e_team_roles_min_fields_possibleTypes: string[] = ['e_team_roles_min_fields'] - export const ise_team_roles_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roles_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_min_fields"') - return e_team_roles_min_fields_possibleTypes.includes(obj.__typename) + const event_organizers_sum_fields_possibleTypes: string[] = ['event_organizers_sum_fields'] + export const isevent_organizers_sum_fields = (obj?: { __typename?: any } | null): obj is event_organizers_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_sum_fields"') + return event_organizers_sum_fields_possibleTypes.includes(obj.__typename) } - const e_team_roles_mutation_response_possibleTypes: string[] = ['e_team_roles_mutation_response'] - export const ise_team_roles_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roles_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roles_mutation_response"') - return e_team_roles_mutation_response_possibleTypes.includes(obj.__typename) + const event_organizers_var_pop_fields_possibleTypes: string[] = ['event_organizers_var_pop_fields'] + export const isevent_organizers_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_pop_fields"') + return event_organizers_var_pop_fields_possibleTypes.includes(obj.__typename) } - const e_team_roster_statuses_possibleTypes: string[] = ['e_team_roster_statuses'] - export const ise_team_roster_statuses = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses"') - return e_team_roster_statuses_possibleTypes.includes(obj.__typename) + const event_organizers_var_samp_fields_possibleTypes: string[] = ['event_organizers_var_samp_fields'] + export const isevent_organizers_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_samp_fields"') + return event_organizers_var_samp_fields_possibleTypes.includes(obj.__typename) } - const e_team_roster_statuses_aggregate_possibleTypes: string[] = ['e_team_roster_statuses_aggregate'] - export const ise_team_roster_statuses_aggregate = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate"') - return e_team_roster_statuses_aggregate_possibleTypes.includes(obj.__typename) + const event_organizers_variance_fields_possibleTypes: string[] = ['event_organizers_variance_fields'] + export const isevent_organizers_variance_fields = (obj?: { __typename?: any } | null): obj is event_organizers_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_variance_fields"') + return event_organizers_variance_fields_possibleTypes.includes(obj.__typename) } - const e_team_roster_statuses_aggregate_fields_possibleTypes: string[] = ['e_team_roster_statuses_aggregate_fields'] - export const ise_team_roster_statuses_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_aggregate_fields"') - return e_team_roster_statuses_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_players_possibleTypes: string[] = ['event_players'] + export const isevent_players = (obj?: { __typename?: any } | null): obj is event_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players"') + return event_players_possibleTypes.includes(obj.__typename) } - const e_team_roster_statuses_max_fields_possibleTypes: string[] = ['e_team_roster_statuses_max_fields'] - export const ise_team_roster_statuses_max_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_max_fields"') - return e_team_roster_statuses_max_fields_possibleTypes.includes(obj.__typename) + const event_players_aggregate_possibleTypes: string[] = ['event_players_aggregate'] + export const isevent_players_aggregate = (obj?: { __typename?: any } | null): obj is event_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate"') + return event_players_aggregate_possibleTypes.includes(obj.__typename) } - const e_team_roster_statuses_min_fields_possibleTypes: string[] = ['e_team_roster_statuses_min_fields'] - export const ise_team_roster_statuses_min_fields = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_min_fields"') - return e_team_roster_statuses_min_fields_possibleTypes.includes(obj.__typename) + const event_players_aggregate_fields_possibleTypes: string[] = ['event_players_aggregate_fields'] + export const isevent_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate_fields"') + return event_players_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_team_roster_statuses_mutation_response_possibleTypes: string[] = ['e_team_roster_statuses_mutation_response'] - export const ise_team_roster_statuses_mutation_response = (obj?: { __typename?: any } | null): obj is e_team_roster_statuses_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_team_roster_statuses_mutation_response"') - return e_team_roster_statuses_mutation_response_possibleTypes.includes(obj.__typename) + const event_players_avg_fields_possibleTypes: string[] = ['event_players_avg_fields'] + export const isevent_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_avg_fields"') + return event_players_avg_fields_possibleTypes.includes(obj.__typename) } - const e_timeout_settings_possibleTypes: string[] = ['e_timeout_settings'] - export const ise_timeout_settings = (obj?: { __typename?: any } | null): obj is e_timeout_settings => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings"') - return e_timeout_settings_possibleTypes.includes(obj.__typename) + const event_players_max_fields_possibleTypes: string[] = ['event_players_max_fields'] + export const isevent_players_max_fields = (obj?: { __typename?: any } | null): obj is event_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_max_fields"') + return event_players_max_fields_possibleTypes.includes(obj.__typename) } - const e_timeout_settings_aggregate_possibleTypes: string[] = ['e_timeout_settings_aggregate'] - export const ise_timeout_settings_aggregate = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate"') - return e_timeout_settings_aggregate_possibleTypes.includes(obj.__typename) + const event_players_min_fields_possibleTypes: string[] = ['event_players_min_fields'] + export const isevent_players_min_fields = (obj?: { __typename?: any } | null): obj is event_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_min_fields"') + return event_players_min_fields_possibleTypes.includes(obj.__typename) } - const e_timeout_settings_aggregate_fields_possibleTypes: string[] = ['e_timeout_settings_aggregate_fields'] - export const ise_timeout_settings_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_aggregate_fields"') - return e_timeout_settings_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_players_mutation_response_possibleTypes: string[] = ['event_players_mutation_response'] + export const isevent_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_mutation_response"') + return event_players_mutation_response_possibleTypes.includes(obj.__typename) } - const e_timeout_settings_max_fields_possibleTypes: string[] = ['e_timeout_settings_max_fields'] - export const ise_timeout_settings_max_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_max_fields"') - return e_timeout_settings_max_fields_possibleTypes.includes(obj.__typename) + const event_players_stddev_fields_possibleTypes: string[] = ['event_players_stddev_fields'] + export const isevent_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_fields"') + return event_players_stddev_fields_possibleTypes.includes(obj.__typename) } - const e_timeout_settings_min_fields_possibleTypes: string[] = ['e_timeout_settings_min_fields'] - export const ise_timeout_settings_min_fields = (obj?: { __typename?: any } | null): obj is e_timeout_settings_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_min_fields"') - return e_timeout_settings_min_fields_possibleTypes.includes(obj.__typename) + const event_players_stddev_pop_fields_possibleTypes: string[] = ['event_players_stddev_pop_fields'] + export const isevent_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_pop_fields"') + return event_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const e_timeout_settings_mutation_response_possibleTypes: string[] = ['e_timeout_settings_mutation_response'] - export const ise_timeout_settings_mutation_response = (obj?: { __typename?: any } | null): obj is e_timeout_settings_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_timeout_settings_mutation_response"') - return e_timeout_settings_mutation_response_possibleTypes.includes(obj.__typename) + const event_players_stddev_samp_fields_possibleTypes: string[] = ['event_players_stddev_samp_fields'] + export const isevent_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_samp_fields"') + return event_players_stddev_samp_fields_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"') - return e_tournament_stage_types_possibleTypes.includes(obj.__typename) + const event_players_sum_fields_possibleTypes: string[] = ['event_players_sum_fields'] + export const isevent_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_sum_fields"') + return event_players_sum_fields_possibleTypes.includes(obj.__typename) } - const e_tournament_stage_types_aggregate_possibleTypes: string[] = ['e_tournament_stage_types_aggregate'] - export const ise_tournament_stage_types_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate"') - return e_tournament_stage_types_aggregate_possibleTypes.includes(obj.__typename) + const event_players_var_pop_fields_possibleTypes: string[] = ['event_players_var_pop_fields'] + export const isevent_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_pop_fields"') + return event_players_var_pop_fields_possibleTypes.includes(obj.__typename) } - const e_tournament_stage_types_aggregate_fields_possibleTypes: string[] = ['e_tournament_stage_types_aggregate_fields'] - export const ise_tournament_stage_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_aggregate_fields"') - return e_tournament_stage_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_players_var_samp_fields_possibleTypes: string[] = ['event_players_var_samp_fields'] + export const isevent_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_samp_fields"') + return event_players_var_samp_fields_possibleTypes.includes(obj.__typename) } - const e_tournament_stage_types_max_fields_possibleTypes: string[] = ['e_tournament_stage_types_max_fields'] - export const ise_tournament_stage_types_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_max_fields"') - return e_tournament_stage_types_max_fields_possibleTypes.includes(obj.__typename) + const event_players_variance_fields_possibleTypes: string[] = ['event_players_variance_fields'] + export const isevent_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_variance_fields"') + return event_players_variance_fields_possibleTypes.includes(obj.__typename) } - const e_tournament_stage_types_min_fields_possibleTypes: string[] = ['e_tournament_stage_types_min_fields'] - export const ise_tournament_stage_types_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_min_fields"') - return e_tournament_stage_types_min_fields_possibleTypes.includes(obj.__typename) + const event_teams_possibleTypes: string[] = ['event_teams'] + export const isevent_teams = (obj?: { __typename?: any } | null): obj is event_teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams"') + return event_teams_possibleTypes.includes(obj.__typename) } - const e_tournament_stage_types_mutation_response_possibleTypes: string[] = ['e_tournament_stage_types_mutation_response'] - export const ise_tournament_stage_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types_mutation_response"') - return e_tournament_stage_types_mutation_response_possibleTypes.includes(obj.__typename) + const event_teams_aggregate_possibleTypes: string[] = ['event_teams_aggregate'] + export const isevent_teams_aggregate = (obj?: { __typename?: any } | null): obj is event_teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate"') + return event_teams_aggregate_possibleTypes.includes(obj.__typename) } - const e_tournament_status_possibleTypes: string[] = ['e_tournament_status'] - export const ise_tournament_status = (obj?: { __typename?: any } | null): obj is e_tournament_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status"') - return e_tournament_status_possibleTypes.includes(obj.__typename) + const event_teams_aggregate_fields_possibleTypes: string[] = ['event_teams_aggregate_fields'] + export const isevent_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate_fields"') + return event_teams_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_tournament_status_aggregate_possibleTypes: string[] = ['e_tournament_status_aggregate'] - export const ise_tournament_status_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate"') - return e_tournament_status_aggregate_possibleTypes.includes(obj.__typename) + const event_teams_max_fields_possibleTypes: string[] = ['event_teams_max_fields'] + export const isevent_teams_max_fields = (obj?: { __typename?: any } | null): obj is event_teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_max_fields"') + return event_teams_max_fields_possibleTypes.includes(obj.__typename) } - const e_tournament_status_aggregate_fields_possibleTypes: string[] = ['e_tournament_status_aggregate_fields'] - export const ise_tournament_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_aggregate_fields"') - return e_tournament_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_teams_min_fields_possibleTypes: string[] = ['event_teams_min_fields'] + export const isevent_teams_min_fields = (obj?: { __typename?: any } | null): obj is event_teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_min_fields"') + return event_teams_min_fields_possibleTypes.includes(obj.__typename) } - const e_tournament_status_max_fields_possibleTypes: string[] = ['e_tournament_status_max_fields'] - export const ise_tournament_status_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_max_fields"') - return e_tournament_status_max_fields_possibleTypes.includes(obj.__typename) + const event_teams_mutation_response_possibleTypes: string[] = ['event_teams_mutation_response'] + export const isevent_teams_mutation_response = (obj?: { __typename?: any } | null): obj is event_teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_mutation_response"') + return event_teams_mutation_response_possibleTypes.includes(obj.__typename) } - const e_tournament_status_min_fields_possibleTypes: string[] = ['e_tournament_status_min_fields'] - export const ise_tournament_status_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_min_fields"') - return e_tournament_status_min_fields_possibleTypes.includes(obj.__typename) + const event_tournaments_possibleTypes: string[] = ['event_tournaments'] + export const isevent_tournaments = (obj?: { __typename?: any } | null): obj is event_tournaments => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments"') + return event_tournaments_possibleTypes.includes(obj.__typename) } - const e_tournament_status_mutation_response_possibleTypes: string[] = ['e_tournament_status_mutation_response'] - export const ise_tournament_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_status_mutation_response"') - return e_tournament_status_mutation_response_possibleTypes.includes(obj.__typename) + const event_tournaments_aggregate_possibleTypes: string[] = ['event_tournaments_aggregate'] + export const isevent_tournaments_aggregate = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate"') + return event_tournaments_aggregate_possibleTypes.includes(obj.__typename) } - const e_utility_types_possibleTypes: string[] = ['e_utility_types'] - export const ise_utility_types = (obj?: { __typename?: any } | null): obj is e_utility_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types"') - return e_utility_types_possibleTypes.includes(obj.__typename) + const event_tournaments_aggregate_fields_possibleTypes: string[] = ['event_tournaments_aggregate_fields'] + export const isevent_tournaments_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate_fields"') + return event_tournaments_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_utility_types_aggregate_possibleTypes: string[] = ['e_utility_types_aggregate'] - export const ise_utility_types_aggregate = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate"') - return e_utility_types_aggregate_possibleTypes.includes(obj.__typename) + const event_tournaments_max_fields_possibleTypes: string[] = ['event_tournaments_max_fields'] + export const isevent_tournaments_max_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_max_fields"') + return event_tournaments_max_fields_possibleTypes.includes(obj.__typename) } - const e_utility_types_aggregate_fields_possibleTypes: string[] = ['e_utility_types_aggregate_fields'] - export const ise_utility_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_aggregate_fields"') - return e_utility_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const event_tournaments_min_fields_possibleTypes: string[] = ['event_tournaments_min_fields'] + export const isevent_tournaments_min_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_min_fields"') + return event_tournaments_min_fields_possibleTypes.includes(obj.__typename) } - const e_utility_types_max_fields_possibleTypes: string[] = ['e_utility_types_max_fields'] - export const ise_utility_types_max_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_max_fields"') - return e_utility_types_max_fields_possibleTypes.includes(obj.__typename) + const event_tournaments_mutation_response_possibleTypes: string[] = ['event_tournaments_mutation_response'] + export const isevent_tournaments_mutation_response = (obj?: { __typename?: any } | null): obj is event_tournaments_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_mutation_response"') + return event_tournaments_mutation_response_possibleTypes.includes(obj.__typename) } - const e_utility_types_min_fields_possibleTypes: string[] = ['e_utility_types_min_fields'] - export const ise_utility_types_min_fields = (obj?: { __typename?: any } | null): obj is e_utility_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_min_fields"') - return e_utility_types_min_fields_possibleTypes.includes(obj.__typename) + const events_possibleTypes: string[] = ['events'] + export const isevents = (obj?: { __typename?: any } | null): obj is events => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents"') + return events_possibleTypes.includes(obj.__typename) } - const e_utility_types_mutation_response_possibleTypes: string[] = ['e_utility_types_mutation_response'] - export const ise_utility_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_utility_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_utility_types_mutation_response"') - return e_utility_types_mutation_response_possibleTypes.includes(obj.__typename) + const events_aggregate_possibleTypes: string[] = ['events_aggregate'] + export const isevents_aggregate = (obj?: { __typename?: any } | null): obj is events_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate"') + return events_aggregate_possibleTypes.includes(obj.__typename) } - const e_veto_pick_types_possibleTypes: string[] = ['e_veto_pick_types'] - export const ise_veto_pick_types = (obj?: { __typename?: any } | null): obj is e_veto_pick_types => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types"') - return e_veto_pick_types_possibleTypes.includes(obj.__typename) + const events_aggregate_fields_possibleTypes: string[] = ['events_aggregate_fields'] + export const isevents_aggregate_fields = (obj?: { __typename?: any } | null): obj is events_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate_fields"') + return events_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_veto_pick_types_aggregate_possibleTypes: string[] = ['e_veto_pick_types_aggregate'] - export const ise_veto_pick_types_aggregate = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate"') - return e_veto_pick_types_aggregate_possibleTypes.includes(obj.__typename) + const events_avg_fields_possibleTypes: string[] = ['events_avg_fields'] + export const isevents_avg_fields = (obj?: { __typename?: any } | null): obj is events_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_avg_fields"') + return events_avg_fields_possibleTypes.includes(obj.__typename) } - const e_veto_pick_types_aggregate_fields_possibleTypes: string[] = ['e_veto_pick_types_aggregate_fields'] - export const ise_veto_pick_types_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_aggregate_fields"') - return e_veto_pick_types_aggregate_fields_possibleTypes.includes(obj.__typename) + const events_max_fields_possibleTypes: string[] = ['events_max_fields'] + export const isevents_max_fields = (obj?: { __typename?: any } | null): obj is events_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_max_fields"') + return events_max_fields_possibleTypes.includes(obj.__typename) } - const e_veto_pick_types_max_fields_possibleTypes: string[] = ['e_veto_pick_types_max_fields'] - export const ise_veto_pick_types_max_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_max_fields"') - return e_veto_pick_types_max_fields_possibleTypes.includes(obj.__typename) + const events_min_fields_possibleTypes: string[] = ['events_min_fields'] + export const isevents_min_fields = (obj?: { __typename?: any } | null): obj is events_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_min_fields"') + return events_min_fields_possibleTypes.includes(obj.__typename) } - const e_veto_pick_types_min_fields_possibleTypes: string[] = ['e_veto_pick_types_min_fields'] - export const ise_veto_pick_types_min_fields = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_min_fields"') - return e_veto_pick_types_min_fields_possibleTypes.includes(obj.__typename) + const events_mutation_response_possibleTypes: string[] = ['events_mutation_response'] + export const isevents_mutation_response = (obj?: { __typename?: any } | null): obj is events_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_mutation_response"') + return events_mutation_response_possibleTypes.includes(obj.__typename) } - const e_veto_pick_types_mutation_response_possibleTypes: string[] = ['e_veto_pick_types_mutation_response'] - export const ise_veto_pick_types_mutation_response = (obj?: { __typename?: any } | null): obj is e_veto_pick_types_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_veto_pick_types_mutation_response"') - return e_veto_pick_types_mutation_response_possibleTypes.includes(obj.__typename) + const events_stddev_fields_possibleTypes: string[] = ['events_stddev_fields'] + export const isevents_stddev_fields = (obj?: { __typename?: any } | null): obj is events_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_fields"') + return events_stddev_fields_possibleTypes.includes(obj.__typename) } - const e_winning_reasons_possibleTypes: string[] = ['e_winning_reasons'] - export const ise_winning_reasons = (obj?: { __typename?: any } | null): obj is e_winning_reasons => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons"') - return e_winning_reasons_possibleTypes.includes(obj.__typename) + const events_stddev_pop_fields_possibleTypes: string[] = ['events_stddev_pop_fields'] + export const isevents_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is events_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_pop_fields"') + return events_stddev_pop_fields_possibleTypes.includes(obj.__typename) } - const e_winning_reasons_aggregate_possibleTypes: string[] = ['e_winning_reasons_aggregate'] - export const ise_winning_reasons_aggregate = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate"') - return e_winning_reasons_aggregate_possibleTypes.includes(obj.__typename) + const events_stddev_samp_fields_possibleTypes: string[] = ['events_stddev_samp_fields'] + export const isevents_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is events_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_samp_fields"') + return events_stddev_samp_fields_possibleTypes.includes(obj.__typename) } - const e_winning_reasons_aggregate_fields_possibleTypes: string[] = ['e_winning_reasons_aggregate_fields'] - export const ise_winning_reasons_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_aggregate_fields"') - return e_winning_reasons_aggregate_fields_possibleTypes.includes(obj.__typename) + const events_sum_fields_possibleTypes: string[] = ['events_sum_fields'] + export const isevents_sum_fields = (obj?: { __typename?: any } | null): obj is events_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_sum_fields"') + return events_sum_fields_possibleTypes.includes(obj.__typename) } - const e_winning_reasons_max_fields_possibleTypes: string[] = ['e_winning_reasons_max_fields'] - export const ise_winning_reasons_max_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_max_fields"') - return e_winning_reasons_max_fields_possibleTypes.includes(obj.__typename) + const events_var_pop_fields_possibleTypes: string[] = ['events_var_pop_fields'] + export const isevents_var_pop_fields = (obj?: { __typename?: any } | null): obj is events_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_pop_fields"') + return events_var_pop_fields_possibleTypes.includes(obj.__typename) } - const e_winning_reasons_min_fields_possibleTypes: string[] = ['e_winning_reasons_min_fields'] - export const ise_winning_reasons_min_fields = (obj?: { __typename?: any } | null): obj is e_winning_reasons_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_min_fields"') - return e_winning_reasons_min_fields_possibleTypes.includes(obj.__typename) + const events_var_samp_fields_possibleTypes: string[] = ['events_var_samp_fields'] + export const isevents_var_samp_fields = (obj?: { __typename?: any } | null): obj is events_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_samp_fields"') + return events_var_samp_fields_possibleTypes.includes(obj.__typename) } - const e_winning_reasons_mutation_response_possibleTypes: string[] = ['e_winning_reasons_mutation_response'] - export const ise_winning_reasons_mutation_response = (obj?: { __typename?: any } | null): obj is e_winning_reasons_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_winning_reasons_mutation_response"') - return e_winning_reasons_mutation_response_possibleTypes.includes(obj.__typename) + const events_variance_fields_possibleTypes: string[] = ['events_variance_fields'] + export const isevents_variance_fields = (obj?: { __typename?: any } | null): obj is events_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_variance_fields"') + return events_variance_fields_possibleTypes.includes(obj.__typename) } @@ -103362,6 +109071,110 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const v_event_player_stats_possibleTypes: string[] = ['v_event_player_stats'] + export const isv_event_player_stats = (obj?: { __typename?: any } | null): obj is v_event_player_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats"') + return v_event_player_stats_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_aggregate_possibleTypes: string[] = ['v_event_player_stats_aggregate'] + export const isv_event_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate"') + return v_event_player_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_aggregate_fields_possibleTypes: string[] = ['v_event_player_stats_aggregate_fields'] + export const isv_event_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate_fields"') + return v_event_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_avg_fields_possibleTypes: string[] = ['v_event_player_stats_avg_fields'] + export const isv_event_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_avg_fields"') + return v_event_player_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_max_fields_possibleTypes: string[] = ['v_event_player_stats_max_fields'] + export const isv_event_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_max_fields"') + return v_event_player_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_min_fields_possibleTypes: string[] = ['v_event_player_stats_min_fields'] + export const isv_event_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_min_fields"') + return v_event_player_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_fields'] + export const isv_event_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_fields"') + return v_event_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_pop_fields'] + export const isv_event_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_pop_fields"') + return v_event_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_samp_fields'] + export const isv_event_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_samp_fields"') + return v_event_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_sum_fields_possibleTypes: string[] = ['v_event_player_stats_sum_fields'] + export const isv_event_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_sum_fields"') + return v_event_player_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_var_pop_fields_possibleTypes: string[] = ['v_event_player_stats_var_pop_fields'] + export const isv_event_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_pop_fields"') + return v_event_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_var_samp_fields_possibleTypes: string[] = ['v_event_player_stats_var_samp_fields'] + export const isv_event_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_samp_fields"') + return v_event_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_variance_fields_possibleTypes: string[] = ['v_event_player_stats_variance_fields'] + export const isv_event_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_variance_fields"') + return v_event_player_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const v_gpu_pool_status_possibleTypes: string[] = ['v_gpu_pool_status'] export const isv_gpu_pool_status = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status => { if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status"') @@ -106951,6 +112764,45 @@ export const enumEDraftGameStatusUpdateColumn = { value: 'value' as const } +export const enumEEventMediaAccessConstraint = { + e_event_media_access_pkey: 'e_event_media_access_pkey' as const +} + +export const enumEEventMediaAccessEnum = { + Involved: 'Involved' as const, + Organizers: 'Organizers' as const +} + +export const enumEEventMediaAccessSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventMediaAccessUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventVisibilityConstraint = { + e_event_visibility_pkey: 'e_event_visibility_pkey' as const +} + +export const enumEEventVisibilityEnum = { + Friends: 'Friends' as const, + Private: 'Private' as const, + Public: 'Public' as const +} + +export const enumEEventVisibilitySelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventVisibilityUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumEFriendStatusConstraint = { e_friend_status_pkey: 'e_friend_status_pkey' as const } @@ -107700,6 +113552,165 @@ export const enumEWinningReasonsUpdateColumn = { value: 'value' as const } +export const enumEventMatchLinksConstraint = { + event_match_links_pkey: 'event_match_links_pkey' as const +} + +export const enumEventMatchLinksSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + match_id: 'match_id' as const +} + +export const enumEventMatchLinksUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + match_id: 'match_id' as const +} + +export const enumEventMediaConstraint = { + event_media_event_id_filename_key: 'event_media_event_id_filename_key' as const, + event_media_pkey: 'event_media_pkey' as const +} + +export const enumEventMediaPlayersConstraint = { + event_media_players_pkey: 'event_media_players_pkey' as const +} + +export const enumEventMediaPlayersSelectColumn = { + created_at: 'created_at' as const, + media_id: 'media_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventMediaPlayersUpdateColumn = { + created_at: 'created_at' as const, + media_id: 'media_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventMediaSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + external_url: 'external_url' as const, + filename: 'filename' as const, + id: 'id' as const, + mime_type: 'mime_type' as const, + size: 'size' as const, + thumbnail_filename: 'thumbnail_filename' as const, + title: 'title' as const, + uploader_steam_id: 'uploader_steam_id' as const +} + +export const enumEventMediaUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + external_url: 'external_url' as const, + filename: 'filename' as const, + id: 'id' as const, + mime_type: 'mime_type' as const, + size: 'size' as const, + thumbnail_filename: 'thumbnail_filename' as const, + title: 'title' as const, + uploader_steam_id: 'uploader_steam_id' as const +} + +export const enumEventOrganizersConstraint = { + event_organizers_pkey: 'event_organizers_pkey' as const +} + +export const enumEventOrganizersSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventOrganizersUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventPlayersConstraint = { + event_players_pkey: 'event_players_pkey' as const +} + +export const enumEventPlayersSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventPlayersUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventTeamsConstraint = { + event_teams_pkey: 'event_teams_pkey' as const +} + +export const enumEventTeamsSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + team_id: 'team_id' as const +} + +export const enumEventTeamsUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + team_id: 'team_id' as const +} + +export const enumEventTournamentsConstraint = { + event_tournaments_pkey: 'event_tournaments_pkey' as const +} + +export const enumEventTournamentsSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumEventTournamentsUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumEventsConstraint = { + events_pkey: 'events_pkey' as const +} + +export const enumEventsSelectColumn = { + banner_media_id: 'banner_media_id' as const, + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + hide_creator_organizer: 'hide_creator_organizer' as const, + id: 'id' as const, + media_access: 'media_access' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + starts_at: 'starts_at' as const, + visibility: 'visibility' as const +} + +export const enumEventsUpdateColumn = { + banner_media_id: 'banner_media_id' as const, + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + hide_creator_organizer: 'hide_creator_organizer' as const, + id: 'id' as const, + media_access: 'media_access' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + starts_at: 'starts_at' as const, + visibility: 'visibility' as const +} + export const enumFriendsConstraint = { friends_pkey: 'friends_pkey' as const, friends_player_steam_id_other_player_steam_id_key: 'friends_player_steam_id_other_player_steam_id_key' as const @@ -110908,6 +116919,58 @@ export const enumTournamentsUpdateColumn = { trophies_enabled: 'trophies_enabled' as const } +export const enumVEventPlayerStatsSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + event_id: 'event_id' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kdr: 'kdr' as const, + kills: 'kills' as const, + matches_played: 'matches_played' as const, + player_steam_id: 'player_steam_id' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpAvgArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCorrArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMaxArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMinArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpSumArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + export const enumVGpuPoolStatusSelectColumn = { demo_free_gpu_nodes: 'demo_free_gpu_nodes' as const, demo_in_progress: 'demo_in_progress' as const, diff --git a/generated/types.ts b/generated/types.ts index 35406cf03..974028df7 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -66,70 +66,70 @@ export default { 523, 529, 530, - 540, - 544, + 539, + 543, + 549, 550, - 551, - 560, - 564, + 559, + 563, + 569, 570, - 571, - 581, - 585, + 580, + 584, + 590, 591, - 592, - 602, - 606, - 612, - 613, - 623, - 627, - 633, - 634, - 644, - 648, - 654, - 655, - 665, - 669, - 675, - 676, - 686, - 690, - 696, - 697, - 706, - 710, + 600, + 604, + 610, + 611, + 621, + 625, + 631, + 632, + 642, + 646, + 652, + 653, + 663, + 667, + 673, + 674, + 684, + 688, + 694, + 695, + 705, + 709, + 715, 716, - 717, - 727, - 731, + 726, + 730, + 736, 737, - 738, - 747, - 751, + 746, + 750, + 756, 757, - 758, - 768, - 772, + 767, + 771, + 777, 778, - 779, - 788, - 792, + 787, + 791, + 797, 798, - 799, - 809, - 813, + 808, + 812, + 818, 819, - 820, - 830, - 834, - 840, - 841, - 850, - 854, + 828, + 832, + 838, + 839, + 849, + 853, + 859, 860, - 861, 870, 874, 880, @@ -146,14 +146,14 @@ export default { 934, 940, 941, - 951, - 955, + 950, + 954, + 960, 961, - 962, - 971, - 975, + 970, + 974, + 980, 981, - 982, 991, 995, 1001, @@ -166,396 +166,413 @@ export default { 1035, 1041, 1042, - 1052, - 1056, + 1051, + 1055, + 1061, 1062, - 1063, - 1072, - 1076, + 1071, + 1075, + 1081, 1082, - 1083, 1092, 1096, 1102, 1103, - 1113, - 1117, + 1112, + 1116, + 1122, 1123, - 1124, - 1134, - 1138, - 1144, - 1145, - 1154, - 1158, + 1132, + 1136, + 1142, + 1143, + 1153, + 1157, + 1163, 1164, - 1165, 1174, 1178, 1184, 1185, 1194, 1198, - 1200, - 1207, - 1216, + 1204, + 1205, + 1214, + 1218, 1224, - 1242, - 1258, - 1259, - 1260, - 1272, - 1286, - 1300, - 1308, - 1319, - 1332, - 1340, - 1348, - 1350, - 1352, - 1366, - 1384, - 1394, - 1402, - 1417, - 1428, - 1440, - 1458, + 1225, + 1234, + 1238, + 1244, + 1252, + 1256, + 1268, + 1290, + 1301, + 1313, + 1321, + 1333, + 1351, + 1362, + 1374, + 1392, + 1403, + 1415, + 1431, + 1441, + 1445, + 1455, + 1465, 1469, - 1481, + 1476, + 1486, + 1494, 1499, - 1510, - 1522, - 1538, - 1549, - 1553, - 1561, - 1575, - 1583, - 1598, - 1609, - 1621, + 1506, + 1515, + 1523, + 1541, + 1557, + 1558, + 1559, + 1571, + 1585, + 1599, + 1607, + 1618, + 1631, 1639, + 1648, 1650, - 1662, - 1680, - 1692, - 1704, - 1716, - 1725, - 1729, - 1735, - 1744, - 1748, - 1762, - 1773, - 1774, - 1775, - 1787, + 1652, + 1666, + 1684, + 1694, + 1702, + 1717, + 1728, + 1740, + 1758, + 1769, + 1781, 1799, - 1808, - 1812, - 1824, - 1835, - 1836, - 1837, - 1841, + 1810, + 1822, + 1838, + 1849, 1853, - 1865, - 1877, - 1896, - 1911, - 1923, - 1943, - 1954, - 1955, - 1956, - 1968, - 1986, - 1998, - 2010, - 2031, - 2047, + 1861, + 1875, + 1883, + 1898, + 1909, + 1921, + 1939, + 1950, + 1962, + 1980, + 1992, + 2004, + 2016, + 2025, + 2029, + 2035, + 2044, 2048, - 2049, - 2061, - 2079, - 2090, - 2102, - 2118, - 2128, - 2132, - 2144, - 2156, - 2168, - 2181, - 2191, - 2199, - 2212, - 2222, - 2226, - 2241, + 2062, + 2073, + 2074, + 2075, + 2087, + 2099, + 2108, + 2112, + 2124, + 2135, + 2136, + 2137, + 2141, + 2153, + 2165, + 2177, + 2196, + 2211, + 2223, + 2243, + 2254, + 2255, 2256, - 2257, - 2258, - 2270, - 2282, - 2290, - 2294, - 2306, - 2318, - 2330, - 2342, - 2350, - 2354, - 2381, - 2382, - 2383, - 2407, - 2416, - 2424, - 2442, - 2457, - 2458, - 2459, - 2471, - 2479, + 2268, + 2286, + 2298, + 2310, + 2331, + 2347, + 2348, + 2349, + 2361, + 2379, + 2390, + 2402, + 2418, + 2428, + 2432, + 2444, + 2456, + 2468, 2481, - 2492, - 2503, - 2515, - 2528, - 2538, - 2546, + 2491, + 2499, + 2512, + 2522, + 2526, + 2541, 2556, - 2565, - 2573, - 2588, - 2599, - 2611, - 2631, + 2557, + 2558, + 2570, + 2582, + 2590, + 2594, + 2606, + 2618, + 2630, 2642, - 2643, - 2644, - 2656, - 2672, - 2692, - 2703, - 2715, - 2728, - 2737, - 2745, - 2760, + 2650, + 2654, + 2681, + 2682, + 2683, + 2707, + 2716, + 2724, + 2742, + 2757, + 2758, + 2759, 2771, - 2783, + 2779, + 2781, + 2792, 2803, - 2814, 2815, - 2816, 2828, - 2858, - 2869, - 2881, - 2889, - 2900, - 2901, - 2902, - 2914, - 2933, - 2955, - 2966, - 2978, - 2994, - 3020, - 3047, - 3058, - 3070, - 3086, - 3106, - 3117, - 3129, - 3147, + 2838, + 2846, + 2856, + 2865, + 2873, + 2888, + 2899, + 2911, + 2931, + 2942, + 2943, + 2944, + 2956, + 2972, + 2992, + 3003, + 3015, + 3028, + 3037, + 3045, + 3060, + 3071, + 3083, + 3103, + 3114, + 3115, + 3116, + 3128, 3158, - 3170, - 3198, - 3209, - 3210, - 3211, - 3212, - 3213, + 3169, + 3181, + 3189, + 3200, + 3201, + 3202, 3214, - 3215, - 3216, - 3217, - 3229, - 3242, - 3252, - 3260, - 3271, - 3284, - 3292, - 3302, - 3311, - 3319, - 3334, - 3345, - 3357, - 3375, + 3233, + 3255, + 3266, + 3278, + 3294, + 3320, + 3347, + 3358, + 3370, 3386, - 3398, - 3422, - 3444, - 3454, - 3462, - 3472, - 3481, - 3489, - 3503, + 3406, + 3417, + 3429, + 3447, + 3458, + 3470, + 3498, + 3509, + 3510, + 3511, + 3512, 3513, - 3521, - 3531, - 3540, - 3548, - 3565, - 3577, - 3578, - 3579, - 3591, - 3603, + 3514, + 3515, + 3516, + 3517, + 3529, + 3542, + 3552, + 3560, + 3571, + 3584, + 3592, + 3602, 3611, - 3615, - 3617, - 3627, - 3637, - 3641, - 3648, - 3658, - 3666, - 3676, - 3685, - 3693, - 3708, - 3719, - 3731, - 3751, + 3619, + 3634, + 3645, + 3657, + 3675, + 3686, + 3698, + 3722, + 3744, + 3754, 3762, - 3763, - 3764, - 3776, + 3772, + 3781, 3789, - 3798, - 3806, + 3803, + 3813, 3821, 3831, - 3832, - 3833, - 3837, - 3849, - 3860, - 3872, - 3892, - 3904, - 3905, - 3906, - 3918, - 3931, + 3840, + 3848, + 3865, + 3877, + 3878, + 3879, + 3891, + 3903, + 3911, + 3915, + 3917, + 3927, + 3937, 3941, - 3949, - 3959, - 3968, + 3948, + 3958, + 3966, 3976, - 3991, - 4003, - 4015, - 4023, - 4024, - 4038, - 4050, + 3985, + 3993, + 4008, + 4019, + 4031, 4051, - 4052, + 4062, + 4063, 4064, - 4082, - 4093, - 4105, - 4123, - 4134, - 4146, - 4167, - 4183, - 4184, - 4185, - 4197, - 4215, - 4226, - 4238, - 4256, - 4267, - 4279, - 4297, - 4309, - 4321, - 4341, + 4076, + 4089, + 4098, + 4106, + 4121, + 4131, + 4132, + 4133, + 4137, + 4149, + 4160, + 4172, + 4192, + 4204, + 4205, + 4206, + 4218, + 4231, + 4241, + 4249, + 4259, + 4268, + 4276, + 4291, + 4303, + 4315, + 4323, + 4324, + 4338, + 4350, + 4351, 4352, - 4353, - 4354, - 4366, - 4384, - 4396, - 4408, - 4428, - 4440, - 4441, - 4442, - 4454, - 4462, - 4473, - 4499, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, + 4364, + 4382, + 4393, + 4405, + 4423, + 4434, + 4446, + 4467, + 4483, + 4484, + 4485, + 4497, + 4515, + 4526, + 4538, + 4556, + 4567, 4579, - 4607, - 4632, - 4650, - 4668, - 4689, - 4709, - 4735, - 4760, - 4778, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4847, - 4865, - 4883, - 4911, - 4938, - 4956, - 4974, - 5000, - 5025, - 5043, - 5070, - 5071, - 5072, - 5085, - 5105, - 5125, - 5155, + 4597, + 4609, + 4621, + 4641, + 4652, + 4653, + 4654, + 4666, + 4684, + 4696, + 4708, + 4728, + 4740, + 4741, + 4742, + 4754, + 4762, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4824, + 4850, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4930, + 4958, + 4983, + 5001, + 5019, + 5040, + 5060, + 5086, + 5111, + 5129, + 5165, + 5166, 5167, 5168, 5169, @@ -563,27 +580,51 @@ export default { 5171, 5172, 5173, - 5174, - 5175, - 5187, - 5221, - 5222, - 5223, - 5224, - 5225, - 5226, - 5227, - 5228, - 5229, - 5272, - 5273, - 5274, - 5275, - 5276, - 5277, - 5278, - 5279, - 5280 + 5198, + 5216, + 5234, + 5262, + 5289, + 5307, + 5325, + 5351, + 5376, + 5394, + 5421, + 5422, + 5423, + 5436, + 5456, + 5476, + 5506, + 5518, + 5519, + 5520, + 5521, + 5522, + 5523, + 5524, + 5525, + 5526, + 5538, + 5572, + 5573, + 5574, + 5575, + 5576, + 5577, + 5578, + 5579, + 5580, + 5623, + 5624, + 5625, + 5626, + 5627, + 5628, + 5629, + 5630, + 5631 ], "types": { "ActiveConnection": { @@ -600,7 +641,7 @@ export default { 78 ], "query_start": [ - 4023 + 4323 ], "state": [ 78 @@ -629,7 +670,7 @@ export default { 78 ], "query_start": [ - 4023 + 4323 ], "state": [ 78 @@ -727,7 +768,7 @@ export default { 38 ], "payload": [ - 1352 + 1652 ], "start_ms": [ 38 @@ -761,7 +802,7 @@ export default { 78 ], "match_map_id": [ - 4462 + 4762 ], "output": [ 6 @@ -821,7 +862,7 @@ export default { }, "CpuStat": { "time": [ - 4023 + 4323 ], "total": [ 180 @@ -838,7 +879,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4462 + 4762 ], "success": [ 3 @@ -849,7 +890,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4462 + 4762 ], "__typename": [ 78 @@ -857,7 +898,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4462 + 4762 ], "__typename": [ 78 @@ -1013,7 +1054,7 @@ export default { 20 ], "time": [ - 4023 + 4323 ], "__typename": [ 78 @@ -1039,7 +1080,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "mode": [ 78 @@ -1118,7 +1159,7 @@ export default { 3 ], "modified": [ - 4023 + 4323 ], "name": [ 78 @@ -1222,7 +1263,7 @@ export default { 32 ], "time": [ - 4023 + 4323 ], "__typename": [ 78 @@ -1464,7 +1505,7 @@ export default { 78 ], "player": [ - 3439 + 3739 ], "profile_url": [ 78 @@ -1481,7 +1522,7 @@ export default { }, "MemoryStat": { "time": [ - 4023 + 4323 ], "total": [ 180 @@ -1498,7 +1539,7 @@ export default { 49 ], "time": [ - 4023 + 4323 ], "__typename": [ 78 @@ -1518,7 +1559,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "published_at": [ 78 @@ -2276,16 +2317,16 @@ export default { 38 ], "last_analyze": [ - 4023 + 4323 ], "last_autoanalyze": [ - 4023 + 4323 ], "last_autovacuum": [ - 4023 + 4323 ], "last_vacuum": [ - 4023 + 4323 ], "n_dead_tup": [ 38 @@ -2359,7 +2400,7 @@ export default { 78 ], "next_start": [ - 4023 + 4323 ], "__typename": [ 78 @@ -2381,7 +2422,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4462 + 4762 ], "depth": [ 38 @@ -2390,7 +2431,7 @@ export default { 3 ], "match_id": [ - 4462 + 4762 ], "match_number": [ 38 @@ -2433,10 +2474,10 @@ export default { }, "_map_pool": { "map_id": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2487,10 +2528,10 @@ export default { 95 ], "map_id": [ - 4464 + 4764 ], "map_pool_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -2499,10 +2540,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2510,10 +2551,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2521,10 +2562,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2557,10 +2598,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2481 + 2781 ], "map_pool_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -2568,10 +2609,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2580,10 +2621,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2602,10 +2643,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2626,10 +2667,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -2726,7 +2767,7 @@ export default { 119 ], "count": [ - 2481 + 2781 ], "max": [ 125 @@ -2780,7 +2821,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -2797,10 +2838,10 @@ export default { 120 ], "abandoned_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "steam_id": [ 182 @@ -2820,10 +2861,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -2834,10 +2875,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -2848,13 +2889,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -2862,10 +2903,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -2876,13 +2917,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -2915,13 +2956,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -2929,7 +2970,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -2938,10 +2979,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -2960,7 +3001,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -2976,7 +3017,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -2992,7 +3033,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -3011,10 +3052,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -3033,7 +3074,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -3064,7 +3105,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -3080,7 +3121,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -3096,7 +3137,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -3104,16 +3145,16 @@ export default { }, "api_keys": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -3199,16 +3240,16 @@ export default { 156 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "label": [ 80 ], "last_used_at": [ - 4025 + 4325 ], "steam_id": [ 182 @@ -3228,16 +3269,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -3248,16 +3289,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -3268,16 +3309,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -3313,19 +3354,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "last_used_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -3333,7 +3374,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -3342,16 +3383,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -3397,16 +3438,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -3464,7 +3505,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -3576,49 +3617,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 1843 + 2143 ], "clip_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1229 + 1528 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "match_map": [ - 2134 + 2434 ], "match_map_demo": [ - 2018 + 2318 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "paused": [ 3 ], "progress": [ - 2479 + 2779 ], "session_token": [ 78 @@ -3627,7 +3668,7 @@ export default { 38 ], "spec": [ - 1352, + 1652, { "path": [ 78 @@ -3638,7 +3679,7 @@ export default { 78 ], "status_history": [ - 1352, + 1652, { "path": [ 78 @@ -3646,7 +3687,7 @@ export default { } ], "user": [ - 3439 + 3739 ], "user_steam_id": [ 180 @@ -3783,7 +3824,7 @@ export default { 196 ], "count": [ - 2481 + 2781 ], "max": [ 205 @@ -3818,10 +3859,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1352 + 1652 ], "status_history": [ - 1352 + 1652 ], "__typename": [ 78 @@ -3854,13 +3895,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -3877,49 +3918,49 @@ export default { 197 ], "clip": [ - 1852 + 2152 ], "clip_id": [ - 4464 + 4764 ], "created_at": [ - 4025 + 4325 ], "error_message": [ 80 ], "game_server_node": [ - 1241 + 1540 ], "game_server_node_id": [ 80 ], "id": [ - 4464 + 4764 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4025 + 4325 ], "match_map": [ - 2143 + 2443 ], "match_map_demo": [ - 2030 + 2330 ], "match_map_demo_id": [ - 4464 + 4764 ], "match_map_id": [ - 4464 + 4764 ], "paused": [ 4 ], "progress": [ - 2480 + 2780 ], "session_token": [ 80 @@ -3928,16 +3969,16 @@ export default { 39 ], "spec": [ - 1354 + 1654 ], "status": [ 80 ], "status_history": [ - 1354 + 1654 ], "user": [ - 3443 + 3743 ], "user_steam_id": [ 182 @@ -3982,7 +4023,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2479 + 2779 ], "sort_index": [ 38 @@ -3996,49 +4037,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 1861 + 2161 ], "clip_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1253 + 1552 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "match_map": [ - 2152 + 2452 ], "match_map_demo": [ - 2042 + 2342 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "paused": [ 3 ], "progress": [ - 2479 + 2779 ], "session_token": [ 78 @@ -4047,16 +4088,16 @@ export default { 38 ], "spec": [ - 1352 + 1652 ], "status": [ 78 ], "status_history": [ - 1352 + 1652 ], "user": [ - 3450 + 3750 ], "user_steam_id": [ 180 @@ -4067,10 +4108,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -4079,22 +4120,22 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "progress": [ - 2479 + 2779 ], "session_token": [ 78 @@ -4114,46 +4155,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "error_message": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "progress": [ - 2481 + 2781 ], "session_token": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4161,10 +4202,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -4173,22 +4214,22 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "progress": [ - 2479 + 2779 ], "session_token": [ 78 @@ -4208,46 +4249,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "error_message": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "progress": [ - 2481 + 2781 ], "session_token": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4280,70 +4321,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 1863 + 2163 ], "clip_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "error_message": [ - 2481 + 2781 ], "game_server_node": [ - 1255 + 1554 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_demo": [ - 2044 + 2344 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "paused": [ - 2481 + 2781 ], "progress": [ - 2481 + 2781 ], "session_token": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "spec": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "status_history": [ - 2481 + 2781 ], "user": [ - 3452 + 3752 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4351,7 +4392,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -4359,10 +4400,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1352 + 1652 ], "status_history": [ - 1352 + 1652 ], "__typename": [ 78 @@ -4373,10 +4414,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": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -4385,25 +4426,25 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "paused": [ 3 ], "progress": [ - 2479 + 2779 ], "session_token": [ 78 @@ -4412,13 +4453,13 @@ export default { 38 ], "spec": [ - 1352 + 1652 ], "status": [ 78 ], "status_history": [ - 1352 + 1652 ], "user_steam_id": [ 180 @@ -4443,13 +4484,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4471,13 +4512,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4499,13 +4540,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4524,10 +4565,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -4536,25 +4577,25 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "paused": [ 3 ], "progress": [ - 2479 + 2779 ], "session_token": [ 78 @@ -4563,13 +4604,13 @@ export default { 38 ], "spec": [ - 1352 + 1652 ], "status": [ 78 ], "status_history": [ - 1352 + 1652 ], "user_steam_id": [ 180 @@ -4580,7 +4621,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2479 + 2779 ], "sort_index": [ 38 @@ -4594,13 +4635,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4652,13 +4693,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4680,13 +4721,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4708,13 +4749,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2481 + 2781 ], "sort_index": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4722,7 +4763,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -4731,10 +4772,10 @@ export default { "cursor_ordering": {}, "db_backups": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -4823,10 +4864,10 @@ export default { 241 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "name": [ 80 @@ -4849,10 +4890,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -4866,10 +4907,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -4883,10 +4924,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -4925,16 +4966,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "__typename": [ 78 @@ -4942,7 +4983,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -4951,10 +4992,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -5003,10 +5044,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -5070,22 +5111,22 @@ export default { 3 ], "captain": [ - 3439 + 3739 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "draft_game": [ 354 ], "draft_game_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "is_organizer": [ 3 @@ -5094,7 +5135,7 @@ export default { 38 ], "picked": [ - 3439 + 3739 ], "picked_steam_id": [ 180 @@ -5231,7 +5272,7 @@ export default { 274 ], "count": [ - 2481 + 2781 ], "max": [ 280 @@ -5291,13 +5332,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5317,22 +5358,22 @@ export default { 4 ], "captain": [ - 3443 + 3743 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4325 ], "draft_game": [ 365 ], "draft_game_id": [ - 4464 + 4764 ], "id": [ - 4464 + 4764 ], "is_organizer": [ 4 @@ -5341,7 +5382,7 @@ export default { 39 ], "picked": [ - 3443 + 3743 ], "picked_steam_id": [ 182 @@ -5370,28 +5411,28 @@ export default { 3 ], "captain": [ - 3450 + 3750 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "draft_game": [ 374 ], "draft_game_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "lineup": [ 38 ], "picked": [ - 3450 + 3750 ], "picked_steam_id": [ 180 @@ -5405,13 +5446,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "draft_game_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "lineup": [ 38 @@ -5425,22 +5466,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "draft_game_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5451,13 +5492,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "draft_game_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "lineup": [ 38 @@ -5471,22 +5512,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "draft_game_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5519,37 +5560,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2481 + 2781 ], "captain": [ - 3452 + 3752 ], "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "draft_game": [ 376 ], "draft_game_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "is_organizer": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked": [ - 3452 + 3752 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5557,7 +5598,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -5574,13 +5615,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "draft_game_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "lineup": [ 38 @@ -5608,13 +5649,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5636,13 +5677,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5664,13 +5705,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5695,13 +5736,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "draft_game_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "lineup": [ 38 @@ -5729,13 +5770,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5772,13 +5813,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5800,13 +5841,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5828,13 +5869,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "picked_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -5845,7 +5886,7 @@ export default { 354 ], "draft_game_id": [ - 4462 + 4762 ], "e_draft_game_player_status": [ 483 @@ -5860,7 +5901,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4324 ], "lineup": [ 38 @@ -5869,7 +5910,7 @@ export default { 38 ], "player": [ - 3439 + 3739 ], "status": [ 488 @@ -6009,7 +6050,7 @@ export default { 319 ], "count": [ - 2481 + 2781 ], "max": [ 325 @@ -6072,16 +6113,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6101,7 +6142,7 @@ export default { 365 ], "draft_game_id": [ - 4464 + 4764 ], "e_draft_game_player_status": [ 486 @@ -6116,7 +6157,7 @@ export default { 4 ], "joined_at": [ - 4025 + 4325 ], "lineup": [ 39 @@ -6125,7 +6166,7 @@ export default { 39 ], "player": [ - 3443 + 3743 ], "status": [ 489 @@ -6160,7 +6201,7 @@ export default { 374 ], "draft_game_id": [ - 4462 + 4762 ], "e_draft_game_player_status": [ 494 @@ -6172,7 +6213,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4324 ], "lineup": [ 38 @@ -6181,7 +6222,7 @@ export default { 38 ], "player": [ - 3450 + 3750 ], "status": [ 488 @@ -6195,13 +6236,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4462 + 4762 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4024 + 4324 ], "lineup": [ 38 @@ -6218,22 +6259,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2481 + 2781 ], "elo_snapshot": [ - 2481 + 2781 ], "joined_at": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6241,13 +6282,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4462 + 4762 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4024 + 4324 ], "lineup": [ 38 @@ -6264,22 +6305,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2481 + 2781 ], "elo_snapshot": [ - 2481 + 2781 ], "joined_at": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6315,37 +6356,37 @@ export default { 376 ], "draft_game_id": [ - 2481 + 2781 ], "e_draft_game_player_status": [ 496 ], "elo_snapshot": [ - 2481 + 2781 ], "is_captain": [ - 2481 + 2781 ], "is_organizer": [ - 2481 + 2781 ], "joined_at": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "status": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6353,7 +6394,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -6367,7 +6408,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": [ - 4462 + 4762 ], "elo_snapshot": [ 38 @@ -6376,7 +6417,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4324 ], "lineup": [ 38 @@ -6413,16 +6454,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6447,16 +6488,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6481,16 +6522,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6509,7 +6550,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4462 + 4762 ], "elo_snapshot": [ 38 @@ -6518,7 +6559,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4324 ], "lineup": [ 38 @@ -6555,16 +6596,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6604,16 +6645,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6638,16 +6679,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6672,16 +6713,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2481 + 2781 ], "lineup": [ - 2481 + 2781 ], "pick_order": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -6689,7 +6730,7 @@ export default { }, "draft_games": { "access": [ - 676 + 716 ], "capacity": [ 38 @@ -6698,7 +6739,7 @@ export default { 425 ], "created_at": [ - 4024 + 4324 ], "current_pick_lineup": [ 38 @@ -6719,43 +6760,43 @@ export default { 504 ], "e_lobby_access": [ - 671 + 711 ], "expires_at": [ - 4024 + 4324 ], "host": [ - 3439 + 3739 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4762 ], "is_organizer": [ 3 ], "map_pool": [ - 1795 + 2095 ], "map_pool_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_elo": [ 38 @@ -6767,10 +6808,10 @@ export default { 467 ], "options": [ - 2176 + 2476 ], "pattern": [ - 1352, + 1652, { "path": [ 78 @@ -6778,7 +6819,7 @@ export default { } ], "pick_deadline": [ - 4024 + 4324 ], "picks": [ 264, @@ -6875,28 +6916,28 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4324 ], "status": [ 509 ], "team_1": [ - 3981 + 4281 ], "team_1_id": [ - 4462 + 4762 ], "team_2": [ - 3981 + 4281 ], "team_2_id": [ - 4462 + 4762 ], "type": [ - 820 + 860 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -7030,7 +7071,7 @@ export default { 364 ], "count": [ - 2481 + 2781 ], "max": [ 370 @@ -7096,19 +7137,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -7125,7 +7166,7 @@ export default { 365 ], "access": [ - 677 + 717 ], "capacity": [ 39 @@ -7134,7 +7175,7 @@ export default { 426 ], "created_at": [ - 4025 + 4325 ], "current_pick_lineup": [ 39 @@ -7155,43 +7196,43 @@ export default { 507 ], "e_lobby_access": [ - 674 + 714 ], "expires_at": [ - 4025 + 4325 ], "host": [ - 3443 + 3743 ], "host_steam_id": [ 182 ], "id": [ - 4464 + 4764 ], "inner_squad": [ 4 ], "invite_code": [ - 4464 + 4764 ], "is_organizer": [ 4 ], "map_pool": [ - 1798 + 2098 ], "map_pool_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_options_id": [ - 4464 + 4764 ], "max_elo": [ 39 @@ -7203,13 +7244,13 @@ export default { 468 ], "options": [ - 2180 + 2480 ], "pattern": [ - 1354 + 1654 ], "pick_deadline": [ - 4025 + 4325 ], "picks": [ 275 @@ -7230,28 +7271,28 @@ export default { 4 ], "scheduled_at": [ - 4025 + 4325 ], "status": [ 510 ], "team_1": [ - 3990 + 4290 ], "team_1_id": [ - 4464 + 4764 ], "team_2": [ - 3990 + 4290 ], "team_2_id": [ - 4464 + 4764 ], "type": [ - 821 + 861 ], "updated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -7280,7 +7321,7 @@ export default { }, "draft_games_insert_input": { "access": [ - 676 + 716 ], "capacity": [ 38 @@ -7289,7 +7330,7 @@ export default { 425 ], "created_at": [ - 4024 + 4324 ], "current_pick_lineup": [ 38 @@ -7310,40 +7351,40 @@ export default { 515 ], "e_lobby_access": [ - 682 + 722 ], "expires_at": [ - 4024 + 4324 ], "host": [ - 3450 + 3750 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4762 ], "map_pool": [ - 1804 + 2104 ], "map_pool_id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_elo": [ 38 @@ -7355,10 +7396,10 @@ export default { 467 ], "options": [ - 2187 + 2487 ], "pick_deadline": [ - 4024 + 4324 ], "picks": [ 272 @@ -7373,28 +7414,28 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4324 ], "status": [ 509 ], "team_1": [ - 3999 + 4299 ], "team_1_id": [ - 4462 + 4762 ], "team_2": [ - 3999 + 4299 ], "team_2_id": [ - 4462 + 4762 ], "type": [ - 820 + 860 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -7405,31 +7446,31 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4024 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "invite_code": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_elo": [ 38 @@ -7438,22 +7479,22 @@ export default { 38 ], "pick_deadline": [ - 4024 + 4324 ], "regions": [ 78 ], "scheduled_at": [ - 4024 + 4324 ], "team_1_id": [ - 4462 + 4762 ], "team_2_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -7461,58 +7502,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "expires_at": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invite_code": [ - 2481 + 2781 ], "map_pool_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "pick_deadline": [ - 2481 + 2781 ], "regions": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "team_1_id": [ - 2481 + 2781 ], "team_2_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -7523,31 +7564,31 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4024 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "invite_code": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_elo": [ 38 @@ -7556,22 +7597,22 @@ export default { 38 ], "pick_deadline": [ - 4024 + 4324 ], "regions": [ 78 ], "scheduled_at": [ - 4024 + 4324 ], "team_1_id": [ - 4462 + 4762 ], "team_2_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -7579,58 +7620,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "expires_at": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invite_code": [ - 2481 + 2781 ], "map_pool_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "pick_deadline": [ - 2481 + 2781 ], "regions": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "team_1_id": [ - 2481 + 2781 ], "team_2_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -7674,22 +7715,22 @@ export default { }, "draft_games_order_by": { "access": [ - 2481 + 2781 ], "capacity": [ - 2481 + 2781 ], "captain_selection": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "draft_order": [ - 2481 + 2781 ], "e_draft_game_captain_selection": [ 433 @@ -7704,61 +7745,61 @@ export default { 517 ], "e_lobby_access": [ - 684 + 724 ], "expires_at": [ - 2481 + 2781 ], "host": [ - 3452 + 3752 ], "host_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "inner_squad": [ - 2481 + 2781 ], "invite_code": [ - 2481 + 2781 ], "is_organizer": [ - 2481 + 2781 ], "map_pool": [ - 1806 + 2106 ], "map_pool_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "mode": [ - 2481 + 2781 ], "options": [ - 2189 + 2489 ], "pattern": [ - 2481 + 2781 ], "pick_deadline": [ - 2481 + 2781 ], "picks_aggregate": [ 271 @@ -7767,34 +7808,34 @@ export default { 316 ], "regions": [ - 2481 + 2781 ], "require_approval": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "team_1": [ - 4001 + 4301 ], "team_1_id": [ - 2481 + 2781 ], "team_2": [ - 4001 + 4301 ], "team_2_id": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -7802,7 +7843,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -7813,7 +7854,7 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 676 + 716 ], "capacity": [ 38 @@ -7822,7 +7863,7 @@ export default { 425 ], "created_at": [ - 4024 + 4324 ], "current_pick_lineup": [ 38 @@ -7831,28 +7872,28 @@ export default { 446 ], "expires_at": [ - 4024 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_elo": [ 38 @@ -7864,7 +7905,7 @@ export default { 467 ], "pick_deadline": [ - 4024 + 4324 ], "regions": [ 78 @@ -7873,22 +7914,22 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4324 ], "status": [ 509 ], "team_1_id": [ - 4462 + 4762 ], "team_2_id": [ - 4462 + 4762 ], "type": [ - 820 + 860 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -7916,19 +7957,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -7956,19 +7997,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -7996,19 +8037,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -8027,7 +8068,7 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 676 + 716 ], "capacity": [ 38 @@ -8036,7 +8077,7 @@ export default { 425 ], "created_at": [ - 4024 + 4324 ], "current_pick_lineup": [ 38 @@ -8045,28 +8086,28 @@ export default { 446 ], "expires_at": [ - 4024 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4762 ], "map_pool_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_elo": [ 38 @@ -8078,7 +8119,7 @@ export default { 467 ], "pick_deadline": [ - 4024 + 4324 ], "regions": [ 78 @@ -8087,22 +8128,22 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4324 ], "status": [ 509 ], "team_1_id": [ - 4462 + 4762 ], "team_2_id": [ - 4462 + 4762 ], "type": [ - 820 + 860 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -8130,19 +8171,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -8185,19 +8226,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -8225,19 +8266,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -8265,19 +8306,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2481 + 2781 ], "current_pick_lineup": [ - 2481 + 2781 ], "host_steam_id": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -8430,10 +8471,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -8651,10 +8692,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -8872,10 +8913,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -9093,10 +9134,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -9314,10 +9355,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -9535,10 +9576,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -9598,7 +9639,7 @@ export default { 78 ] }, - "e_friend_status": { + "e_event_media_access": { "description": [ 78 ], @@ -9609,7 +9650,7 @@ export default { 78 ] }, - "e_friend_status_aggregate": { + "e_event_media_access_aggregate": { "aggregate": [ 527 ], @@ -9620,13 +9661,13 @@ export default { 78 ] }, - "e_friend_status_aggregate_fields": { + "e_event_media_access_aggregate_fields": { "count": [ 38, { "columns": [ - 540, - "[e_friend_status_select_column!]" + 539, + "[e_event_media_access_select_column!]" ], "distinct": [ 3 @@ -9643,7 +9684,7 @@ export default { 78 ] }, - "e_friend_status_bool_exp": { + "e_event_media_access_bool_exp": { "_and": [ 528 ], @@ -9663,9 +9704,9 @@ export default { 78 ] }, - "e_friend_status_constraint": {}, - "e_friend_status_enum": {}, - "e_friend_status_enum_comparison_exp": { + "e_event_media_access_constraint": {}, + "e_event_media_access_enum": {}, + "e_event_media_access_enum_comparison_exp": { "_eq": [ 530 ], @@ -9685,6 +9726,426 @@ export default { 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 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_aggregate": { + "aggregate": [ + 567 + ], + "nodes": [ + 565 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 580, + "[e_friend_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 573 + ], + "min": [ + 574 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_bool_exp": { + "_and": [ + 568 + ], + "_not": [ + 568 + ], + "_or": [ + 568 + ], + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_constraint": {}, + "e_friend_status_enum": {}, + "e_friend_status_enum_comparison_exp": { + "_eq": [ + 570 + ], + "_in": [ + 570 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 570 + ], + "_nin": [ + 570 + ], + "__typename": [ + 78 + ] + }, "e_friend_status_insert_input": { "description": [ 78 @@ -9723,7 +10184,7 @@ export default { 38 ], "returning": [ - 525 + 565 ], "__typename": [ 78 @@ -9731,10 +10192,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 532 + 572 ], "on_conflict": [ - 537 + 577 ], "__typename": [ 78 @@ -9742,13 +10203,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 529 + 569 ], "update_columns": [ - 544 + 584 ], "where": [ - 528 + 568 ], "__typename": [ 78 @@ -9756,10 +10217,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -9787,7 +10248,7 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 543 + 583 ], "ordering": [ 236 @@ -9810,10 +10271,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 541 + 581 ], "where": [ - 528 + 568 ], "__typename": [ 78 @@ -9832,10 +10293,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 548 + 588 ], "nodes": [ - 546 + 586 ], "__typename": [ 78 @@ -9846,7 +10307,7 @@ export default { 38, { "columns": [ - 560, + 600, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -9855,10 +10316,10 @@ export default { } ], "max": [ - 554 + 594 ], "min": [ - 555 + 595 ], "__typename": [ 78 @@ -9866,13 +10327,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 549 + 589 ], "_not": [ - 549 + 589 ], "_or": [ - 549 + 589 ], "description": [ 80 @@ -9888,19 +10349,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 551 + 591 ], "_in": [ - 551 + 591 ], "_is_null": [ 3 ], "_neq": [ - 551 + 591 ], "_nin": [ - 551 + 591 ], "__typename": [ 78 @@ -9944,7 +10405,7 @@ export default { 38 ], "returning": [ - 546 + 586 ], "__typename": [ 78 @@ -9952,13 +10413,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 550 + 590 ], "update_columns": [ - 564 + 604 ], "where": [ - 549 + 589 ], "__typename": [ 78 @@ -9966,10 +10427,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -9997,7 +10458,7 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 563 + 603 ], "ordering": [ 236 @@ -10020,10 +10481,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 561 + 601 ], "where": [ - 549 + 589 ], "__typename": [ 78 @@ -10042,10 +10503,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 568 + 608 ], "nodes": [ - 566 + 606 ], "__typename": [ 78 @@ -10056,7 +10517,7 @@ export default { 38, { "columns": [ - 581, + 621, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -10065,10 +10526,10 @@ export default { } ], "max": [ - 574 + 614 ], "min": [ - 575 + 615 ], "__typename": [ 78 @@ -10076,13 +10537,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 569 + 609 ], "_not": [ - 569 + 609 ], "_or": [ - 569 + 609 ], "description": [ 80 @@ -10098,19 +10559,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 571 + 611 ], "_in": [ - 571 + 611 ], "_is_null": [ 3 ], "_neq": [ - 571 + 611 ], "_nin": [ - 571 + 611 ], "__typename": [ 78 @@ -10154,7 +10615,7 @@ export default { 38 ], "returning": [ - 566 + 606 ], "__typename": [ 78 @@ -10162,10 +10623,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 573 + 613 ], "on_conflict": [ - 578 + 618 ], "__typename": [ 78 @@ -10173,13 +10634,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 570 + 610 ], "update_columns": [ - 585 + 625 ], "where": [ - 569 + 609 ], "__typename": [ 78 @@ -10187,10 +10648,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -10218,7 +10679,7 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 584 + 624 ], "ordering": [ 236 @@ -10241,10 +10702,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 582 + 622 ], "where": [ - 569 + 609 ], "__typename": [ 78 @@ -10263,10 +10724,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 589 + 629 ], "nodes": [ - 587 + 627 ], "__typename": [ 78 @@ -10277,7 +10738,7 @@ export default { 38, { "columns": [ - 602, + 642, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -10286,10 +10747,10 @@ export default { } ], "max": [ - 595 + 635 ], "min": [ - 596 + 636 ], "__typename": [ 78 @@ -10297,13 +10758,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 590 + 630 ], "_not": [ - 590 + 630 ], "_or": [ - 590 + 630 ], "description": [ 80 @@ -10319,19 +10780,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 592 + 632 ], "_in": [ - 592 + 632 ], "_is_null": [ 3 ], "_neq": [ - 592 + 632 ], "_nin": [ - 592 + 632 ], "__typename": [ 78 @@ -10375,7 +10836,7 @@ export default { 38 ], "returning": [ - 587 + 627 ], "__typename": [ 78 @@ -10383,10 +10844,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 594 + 634 ], "on_conflict": [ - 599 + 639 ], "__typename": [ 78 @@ -10394,13 +10855,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 591 + 631 ], "update_columns": [ - 606 + 646 ], "where": [ - 590 + 630 ], "__typename": [ 78 @@ -10408,10 +10869,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -10439,7 +10900,7 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 605 + 645 ], "ordering": [ 236 @@ -10462,10 +10923,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 603 + 643 ], "where": [ - 590 + 630 ], "__typename": [ 78 @@ -10484,10 +10945,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 610 + 650 ], "nodes": [ - 608 + 648 ], "__typename": [ 78 @@ -10498,7 +10959,7 @@ export default { 38, { "columns": [ - 623, + 663, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -10507,10 +10968,10 @@ export default { } ], "max": [ - 616 + 656 ], "min": [ - 617 + 657 ], "__typename": [ 78 @@ -10518,13 +10979,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 611 + 651 ], "_not": [ - 611 + 651 ], "_or": [ - 611 + 651 ], "description": [ 80 @@ -10540,19 +11001,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 613 + 653 ], "_in": [ - 613 + 653 ], "_is_null": [ 3 ], "_neq": [ - 613 + 653 ], "_nin": [ - 613 + 653 ], "__typename": [ 78 @@ -10596,7 +11057,7 @@ export default { 38 ], "returning": [ - 608 + 648 ], "__typename": [ 78 @@ -10604,10 +11065,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 615 + 655 ], "on_conflict": [ - 620 + 660 ], "__typename": [ 78 @@ -10615,13 +11076,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 612 + 652 ], "update_columns": [ - 627 + 667 ], "where": [ - 611 + 651 ], "__typename": [ 78 @@ -10629,10 +11090,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -10660,7 +11121,7 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 626 + 666 ], "ordering": [ 236 @@ -10683,10 +11144,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 624 + 664 ], "where": [ - 611 + 651 ], "__typename": [ 78 @@ -10705,10 +11166,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 631 + 671 ], "nodes": [ - 629 + 669 ], "__typename": [ 78 @@ -10719,7 +11180,7 @@ export default { 38, { "columns": [ - 644, + 684, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -10728,10 +11189,10 @@ export default { } ], "max": [ - 637 + 677 ], "min": [ - 638 + 678 ], "__typename": [ 78 @@ -10739,13 +11200,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 632 + 672 ], "_not": [ - 632 + 672 ], "_or": [ - 632 + 672 ], "description": [ 80 @@ -10761,19 +11222,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 634 + 674 ], "_in": [ - 634 + 674 ], "_is_null": [ 3 ], "_neq": [ - 634 + 674 ], "_nin": [ - 634 + 674 ], "__typename": [ 78 @@ -10817,7 +11278,7 @@ export default { 38 ], "returning": [ - 629 + 669 ], "__typename": [ 78 @@ -10825,10 +11286,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 636 + 676 ], "on_conflict": [ - 641 + 681 ], "__typename": [ 78 @@ -10836,13 +11297,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 633 + 673 ], "update_columns": [ - 648 + 688 ], "where": [ - 632 + 672 ], "__typename": [ 78 @@ -10850,10 +11311,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -10881,7 +11342,7 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 647 + 687 ], "ordering": [ 236 @@ -10904,10 +11365,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 645 + 685 ], "where": [ - 632 + 672 ], "__typename": [ 78 @@ -10926,10 +11387,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 652 + 692 ], "nodes": [ - 650 + 690 ], "__typename": [ 78 @@ -10940,7 +11401,7 @@ export default { 38, { "columns": [ - 665, + 705, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -10949,10 +11410,10 @@ export default { } ], "max": [ - 658 + 698 ], "min": [ - 659 + 699 ], "__typename": [ 78 @@ -10960,13 +11421,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 653 + 693 ], "_not": [ - 653 + 693 ], "_or": [ - 653 + 693 ], "description": [ 80 @@ -10982,19 +11443,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 655 + 695 ], "_in": [ - 655 + 695 ], "_is_null": [ 3 ], "_neq": [ - 655 + 695 ], "_nin": [ - 655 + 695 ], "__typename": [ 78 @@ -11038,7 +11499,7 @@ export default { 38 ], "returning": [ - 650 + 690 ], "__typename": [ 78 @@ -11046,10 +11507,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 657 + 697 ], "on_conflict": [ - 662 + 702 ], "__typename": [ 78 @@ -11057,13 +11518,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 654 + 694 ], "update_columns": [ - 669 + 709 ], "where": [ - 653 + 693 ], "__typename": [ 78 @@ -11071,10 +11532,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -11102,7 +11563,7 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 668 + 708 ], "ordering": [ 236 @@ -11125,10 +11586,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 666 + 706 ], "where": [ - 653 + 693 ], "__typename": [ 78 @@ -11147,10 +11608,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 673 + 713 ], "nodes": [ - 671 + 711 ], "__typename": [ 78 @@ -11161,7 +11622,7 @@ export default { 38, { "columns": [ - 686, + 726, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -11170,10 +11631,10 @@ export default { } ], "max": [ - 679 + 719 ], "min": [ - 680 + 720 ], "__typename": [ 78 @@ -11181,13 +11642,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 674 + 714 ], "_not": [ - 674 + 714 ], "_or": [ - 674 + 714 ], "description": [ 80 @@ -11203,19 +11664,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 676 + 716 ], "_in": [ - 676 + 716 ], "_is_null": [ 3 ], "_neq": [ - 676 + 716 ], "_nin": [ - 676 + 716 ], "__typename": [ 78 @@ -11259,7 +11720,7 @@ export default { 38 ], "returning": [ - 671 + 711 ], "__typename": [ 78 @@ -11267,10 +11728,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 678 + 718 ], "on_conflict": [ - 683 + 723 ], "__typename": [ 78 @@ -11278,13 +11739,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 675 + 715 ], "update_columns": [ - 690 + 730 ], "where": [ - 674 + 714 ], "__typename": [ 78 @@ -11292,10 +11753,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -11323,7 +11784,7 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 689 + 729 ], "ordering": [ 236 @@ -11346,10 +11807,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 687 + 727 ], "where": [ - 674 + 714 ], "__typename": [ 78 @@ -11368,10 +11829,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 694 + 734 ], "nodes": [ - 692 + 732 ], "__typename": [ 78 @@ -11382,7 +11843,7 @@ export default { 38, { "columns": [ - 706, + 746, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -11391,10 +11852,10 @@ export default { } ], "max": [ - 700 + 740 ], "min": [ - 701 + 741 ], "__typename": [ 78 @@ -11402,13 +11863,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 695 + 735 ], "_not": [ - 695 + 735 ], "_or": [ - 695 + 735 ], "description": [ 80 @@ -11424,19 +11885,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 697 + 737 ], "_in": [ - 697 + 737 ], "_is_null": [ 3 ], "_neq": [ - 697 + 737 ], "_nin": [ - 697 + 737 ], "__typename": [ 78 @@ -11480,7 +11941,7 @@ export default { 38 ], "returning": [ - 692 + 732 ], "__typename": [ 78 @@ -11488,13 +11949,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 696 + 736 ], "update_columns": [ - 710 + 750 ], "where": [ - 695 + 735 ], "__typename": [ 78 @@ -11502,10 +11963,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -11533,7 +11994,7 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 709 + 749 ], "ordering": [ 236 @@ -11556,10 +12017,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 707 + 747 ], "where": [ - 695 + 735 ], "__typename": [ 78 @@ -11578,10 +12039,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 714 + 754 ], "nodes": [ - 712 + 752 ], "__typename": [ 78 @@ -11592,7 +12053,7 @@ export default { 38, { "columns": [ - 727, + 767, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -11601,10 +12062,10 @@ export default { } ], "max": [ - 720 + 760 ], "min": [ - 721 + 761 ], "__typename": [ 78 @@ -11612,13 +12073,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 715 + 755 ], "_not": [ - 715 + 755 ], "_or": [ - 715 + 755 ], "description": [ 80 @@ -11634,19 +12095,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 717 + 757 ], "_in": [ - 717 + 757 ], "_is_null": [ 3 ], "_neq": [ - 717 + 757 ], "_nin": [ - 717 + 757 ], "__typename": [ 78 @@ -11690,7 +12151,7 @@ export default { 38 ], "returning": [ - 712 + 752 ], "__typename": [ 78 @@ -11698,10 +12159,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 719 + 759 ], "on_conflict": [ - 724 + 764 ], "__typename": [ 78 @@ -11709,13 +12170,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 716 + 756 ], "update_columns": [ - 731 + 771 ], "where": [ - 715 + 755 ], "__typename": [ 78 @@ -11723,10 +12184,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -11754,7 +12215,7 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 730 + 770 ], "ordering": [ 236 @@ -11777,10 +12238,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 728 + 768 ], "where": [ - 715 + 755 ], "__typename": [ 78 @@ -11791,10 +12252,10 @@ export default { 78 ], "match_clips": [ - 1843, + 2143, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -11804,19 +12265,19 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_clips_aggregate": [ - 1844, + 2144, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -11826,11 +12287,11 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], @@ -11843,10 +12304,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 735 + 775 ], "nodes": [ - 733 + 773 ], "__typename": [ 78 @@ -11857,7 +12318,7 @@ export default { 38, { "columns": [ - 747, + 787, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -11866,10 +12327,10 @@ export default { } ], "max": [ - 741 + 781 ], "min": [ - 742 + 782 ], "__typename": [ 78 @@ -11877,22 +12338,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 736 + 776 ], "_not": [ - 736 + 776 ], "_or": [ - 736 + 776 ], "description": [ 80 ], "match_clips": [ - 1852 + 2152 ], "match_clips_aggregate": [ - 1845 + 2145 ], "value": [ 80 @@ -11905,19 +12366,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 738 + 778 ], "_in": [ - 738 + 778 ], "_is_null": [ 3 ], "_neq": [ - 738 + 778 ], "_nin": [ - 738 + 778 ], "__typename": [ 78 @@ -11928,7 +12389,7 @@ export default { 78 ], "match_clips": [ - 1849 + 2149 ], "value": [ 78 @@ -11964,7 +12425,7 @@ export default { 38 ], "returning": [ - 733 + 773 ], "__typename": [ 78 @@ -11972,13 +12433,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 737 + 777 ], "update_columns": [ - 751 + 791 ], "where": [ - 736 + 776 ], "__typename": [ 78 @@ -11986,13 +12447,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2481 + 2781 ], "match_clips_aggregate": [ - 1848 + 2148 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -12020,7 +12481,7 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 750 + 790 ], "ordering": [ 236 @@ -12043,10 +12504,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 748 + 788 ], "where": [ - 736 + 776 ], "__typename": [ 78 @@ -12057,10 +12518,10 @@ export default { 78 ], "match_maps": [ - 2134, + 2434, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -12070,19 +12531,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_maps_aggregate": [ - 2135, + 2435, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -12092,11 +12553,11 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], @@ -12109,10 +12570,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 755 + 795 ], "nodes": [ - 753 + 793 ], "__typename": [ 78 @@ -12123,7 +12584,7 @@ export default { 38, { "columns": [ - 768, + 808, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -12132,10 +12593,10 @@ export default { } ], "max": [ - 761 + 801 ], "min": [ - 762 + 802 ], "__typename": [ 78 @@ -12143,22 +12604,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 756 + 796 ], "_not": [ - 756 + 796 ], "_or": [ - 756 + 796 ], "description": [ 80 ], "match_maps": [ - 2143 + 2443 ], "match_maps_aggregate": [ - 2136 + 2436 ], "value": [ 80 @@ -12171,19 +12632,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 758 + 798 ], "_in": [ - 758 + 798 ], "_is_null": [ 3 ], "_neq": [ - 758 + 798 ], "_nin": [ - 758 + 798 ], "__typename": [ 78 @@ -12194,7 +12655,7 @@ export default { 78 ], "match_maps": [ - 2140 + 2440 ], "value": [ 78 @@ -12230,7 +12691,7 @@ export default { 38 ], "returning": [ - 753 + 793 ], "__typename": [ 78 @@ -12238,10 +12699,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 760 + 800 ], "on_conflict": [ - 765 + 805 ], "__typename": [ 78 @@ -12249,13 +12710,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 757 + 797 ], "update_columns": [ - 772 + 812 ], "where": [ - 756 + 796 ], "__typename": [ 78 @@ -12263,13 +12724,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2481 + 2781 ], "match_maps_aggregate": [ - 2139 + 2439 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -12297,7 +12758,7 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 771 + 811 ], "ordering": [ 236 @@ -12320,10 +12781,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 769 + 809 ], "where": [ - 756 + 796 ], "__typename": [ 78 @@ -12342,10 +12803,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 776 + 816 ], "nodes": [ - 774 + 814 ], "__typename": [ 78 @@ -12356,7 +12817,7 @@ export default { 38, { "columns": [ - 788, + 828, "[e_match_mode_select_column!]" ], "distinct": [ @@ -12365,10 +12826,10 @@ export default { } ], "max": [ - 782 + 822 ], "min": [ - 783 + 823 ], "__typename": [ 78 @@ -12376,13 +12837,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 777 + 817 ], "_not": [ - 777 + 817 ], "_or": [ - 777 + 817 ], "description": [ 80 @@ -12398,19 +12859,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 779 + 819 ], "_in": [ - 779 + 819 ], "_is_null": [ 3 ], "_neq": [ - 779 + 819 ], "_nin": [ - 779 + 819 ], "__typename": [ 78 @@ -12454,7 +12915,7 @@ export default { 38 ], "returning": [ - 774 + 814 ], "__typename": [ 78 @@ -12462,13 +12923,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 778 + 818 ], "update_columns": [ - 792 + 832 ], "where": [ - 777 + 817 ], "__typename": [ 78 @@ -12476,10 +12937,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -12507,7 +12968,7 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 791 + 831 ], "ordering": [ 236 @@ -12530,10 +12991,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 789 + 829 ], "where": [ - 777 + 817 ], "__typename": [ 78 @@ -12544,10 +13005,10 @@ export default { 78 ], "matches": [ - 2296, + 2596, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -12557,19 +13018,19 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matches_aggregate": [ - 2297, + 2597, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -12579,11 +13040,11 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], @@ -12596,10 +13057,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 796 + 836 ], "nodes": [ - 794 + 834 ], "__typename": [ 78 @@ -12610,7 +13071,7 @@ export default { 38, { "columns": [ - 809, + 849, "[e_match_status_select_column!]" ], "distinct": [ @@ -12619,10 +13080,10 @@ export default { } ], "max": [ - 802 + 842 ], "min": [ - 803 + 843 ], "__typename": [ 78 @@ -12630,22 +13091,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 797 + 837 ], "_not": [ - 797 + 837 ], "_or": [ - 797 + 837 ], "description": [ 80 ], "matches": [ - 2305 + 2605 ], "matches_aggregate": [ - 2298 + 2598 ], "value": [ 80 @@ -12658,19 +13119,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 799 + 839 ], "_in": [ - 799 + 839 ], "_is_null": [ 3 ], "_neq": [ - 799 + 839 ], "_nin": [ - 799 + 839 ], "__typename": [ 78 @@ -12681,7 +13142,7 @@ export default { 78 ], "matches": [ - 2302 + 2602 ], "value": [ 78 @@ -12717,7 +13178,7 @@ export default { 38 ], "returning": [ - 794 + 834 ], "__typename": [ 78 @@ -12725,10 +13186,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 801 + 841 ], "on_conflict": [ - 806 + 846 ], "__typename": [ 78 @@ -12736,13 +13197,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 798 + 838 ], "update_columns": [ - 813 + 853 ], "where": [ - 797 + 837 ], "__typename": [ 78 @@ -12750,13 +13211,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2481 + 2781 ], "matches_aggregate": [ - 2301 + 2601 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -12784,7 +13245,7 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 812 + 852 ], "ordering": [ 236 @@ -12807,10 +13268,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 810 + 850 ], "where": [ - 797 + 837 ], "__typename": [ 78 @@ -12821,10 +13282,10 @@ export default { 78 ], "maps": [ - 1814, + 2114, { "distinct_on": [ - 1835, + 2135, "[maps_select_column!]" ], "limit": [ @@ -12834,19 +13295,19 @@ export default { 38 ], "order_by": [ - 1833, + 2133, "[maps_order_by!]" ], "where": [ - 1823 + 2123 ] } ], "maps_aggregate": [ - 1815, + 2115, { "distinct_on": [ - 1835, + 2135, "[maps_select_column!]" ], "limit": [ @@ -12856,11 +13317,11 @@ export default { 38 ], "order_by": [ - 1833, + 2133, "[maps_order_by!]" ], "where": [ - 1823 + 2123 ] } ], @@ -12873,10 +13334,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 817 + 857 ], "nodes": [ - 815 + 855 ], "__typename": [ 78 @@ -12887,7 +13348,7 @@ export default { 38, { "columns": [ - 830, + 870, "[e_match_types_select_column!]" ], "distinct": [ @@ -12896,10 +13357,10 @@ export default { } ], "max": [ - 823 + 863 ], "min": [ - 824 + 864 ], "__typename": [ 78 @@ -12907,22 +13368,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 818 + 858 ], "_not": [ - 818 + 858 ], "_or": [ - 818 + 858 ], "description": [ 80 ], "maps": [ - 1823 + 2123 ], "maps_aggregate": [ - 1816 + 2116 ], "value": [ 80 @@ -12935,19 +13396,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 820 + 860 ], "_in": [ - 820 + 860 ], "_is_null": [ 3 ], "_neq": [ - 820 + 860 ], "_nin": [ - 820 + 860 ], "__typename": [ 78 @@ -12958,7 +13419,7 @@ export default { 78 ], "maps": [ - 1822 + 2122 ], "value": [ 78 @@ -12994,7 +13455,7 @@ export default { 38 ], "returning": [ - 815 + 855 ], "__typename": [ 78 @@ -13002,10 +13463,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 822 + 862 ], "on_conflict": [ - 827 + 867 ], "__typename": [ 78 @@ -13013,13 +13474,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 819 + 859 ], "update_columns": [ - 834 + 874 ], "where": [ - 818 + 858 ], "__typename": [ 78 @@ -13027,13 +13488,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2481 + 2781 ], "maps_aggregate": [ - 1821 + 2121 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -13061,7 +13522,7 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 833 + 873 ], "ordering": [ 236 @@ -13084,10 +13545,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 831 + 871 ], "where": [ - 818 + 858 ], "__typename": [ 78 @@ -13106,10 +13567,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 838 + 878 ], "nodes": [ - 836 + 876 ], "__typename": [ 78 @@ -13120,7 +13581,7 @@ export default { 38, { "columns": [ - 850, + 890, "[e_notification_types_select_column!]" ], "distinct": [ @@ -13129,10 +13590,10 @@ export default { } ], "max": [ - 844 + 884 ], "min": [ - 845 + 885 ], "__typename": [ 78 @@ -13140,13 +13601,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 839 + 879 ], "_not": [ - 839 + 879 ], "_or": [ - 839 + 879 ], "description": [ 80 @@ -13162,19 +13623,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 841 + 881 ], "_in": [ - 841 + 881 ], "_is_null": [ 3 ], "_neq": [ - 841 + 881 ], "_nin": [ - 841 + 881 ], "__typename": [ 78 @@ -13218,7 +13679,7 @@ export default { 38 ], "returning": [ - 836 + 876 ], "__typename": [ 78 @@ -13226,13 +13687,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 840 + 880 ], "update_columns": [ - 854 + 894 ], "where": [ - 839 + 879 ], "__typename": [ 78 @@ -13240,10 +13701,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -13271,7 +13732,7 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 853 + 893 ], "ordering": [ 236 @@ -13294,10 +13755,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 851 + 891 ], "where": [ - 839 + 879 ], "__typename": [ 78 @@ -13308,10 +13769,10 @@ export default { 78 ], "player_objectives": [ - 3037, + 3337, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -13321,19 +13782,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "player_objectives_aggregate": [ - 3038, + 3338, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -13343,11 +13804,11 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], @@ -13360,10 +13821,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 858 + 898 ], "nodes": [ - 856 + 896 ], "__typename": [ 78 @@ -13374,7 +13835,7 @@ export default { 38, { "columns": [ - 870, + 910, "[e_objective_types_select_column!]" ], "distinct": [ @@ -13383,10 +13844,10 @@ export default { } ], "max": [ - 864 + 904 ], "min": [ - 865 + 905 ], "__typename": [ 78 @@ -13394,22 +13855,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 859 + 899 ], "_not": [ - 859 + 899 ], "_or": [ - 859 + 899 ], "description": [ 80 ], "player_objectives": [ - 3046 + 3346 ], "player_objectives_aggregate": [ - 3039 + 3339 ], "value": [ 80 @@ -13422,19 +13883,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 861 + 901 ], "_in": [ - 861 + 901 ], "_is_null": [ 3 ], "_neq": [ - 861 + 901 ], "_nin": [ - 861 + 901 ], "__typename": [ 78 @@ -13445,7 +13906,7 @@ export default { 78 ], "player_objectives": [ - 3043 + 3343 ], "value": [ 78 @@ -13481,7 +13942,7 @@ export default { 38 ], "returning": [ - 856 + 896 ], "__typename": [ 78 @@ -13489,13 +13950,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 860 + 900 ], "update_columns": [ - 874 + 914 ], "where": [ - 859 + 899 ], "__typename": [ 78 @@ -13503,13 +13964,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2481 + 2781 ], "player_objectives_aggregate": [ - 3042 + 3342 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -13537,7 +13998,7 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 873 + 913 ], "ordering": [ 236 @@ -13560,10 +14021,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 871 + 911 ], "where": [ - 859 + 899 ], "__typename": [ 78 @@ -13582,10 +14043,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 878 + 918 ], "nodes": [ - 876 + 916 ], "__typename": [ 78 @@ -13596,7 +14057,7 @@ export default { 38, { "columns": [ - 890, + 930, "[e_player_roles_select_column!]" ], "distinct": [ @@ -13605,10 +14066,10 @@ export default { } ], "max": [ - 884 + 924 ], "min": [ - 885 + 925 ], "__typename": [ 78 @@ -13616,13 +14077,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 879 + 919 ], "_not": [ - 879 + 919 ], "_or": [ - 879 + 919 ], "description": [ 80 @@ -13638,19 +14099,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 881 + 921 ], "_in": [ - 881 + 921 ], "_is_null": [ 3 ], "_neq": [ - 881 + 921 ], "_nin": [ - 881 + 921 ], "__typename": [ 78 @@ -13694,7 +14155,7 @@ export default { 38 ], "returning": [ - 876 + 916 ], "__typename": [ 78 @@ -13702,13 +14163,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 880 + 920 ], "update_columns": [ - 894 + 934 ], "where": [ - 879 + 919 ], "__typename": [ 78 @@ -13716,10 +14177,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -13747,7 +14208,7 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 893 + 933 ], "ordering": [ 236 @@ -13770,10 +14231,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 891 + 931 ], "where": [ - 879 + 919 ], "__typename": [ 78 @@ -13792,10 +14253,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 898 + 938 ], "nodes": [ - 896 + 936 ], "__typename": [ 78 @@ -13806,7 +14267,7 @@ export default { 38, { "columns": [ - 910, + 950, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -13815,10 +14276,10 @@ export default { } ], "max": [ - 904 + 944 ], "min": [ - 905 + 945 ], "__typename": [ 78 @@ -13826,13 +14287,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 899 + 939 ], "_not": [ - 899 + 939 ], "_or": [ - 899 + 939 ], "description": [ 80 @@ -13848,19 +14309,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 901 + 941 ], "_in": [ - 901 + 941 ], "_is_null": [ 3 ], "_neq": [ - 901 + 941 ], "_nin": [ - 901 + 941 ], "__typename": [ 78 @@ -13904,7 +14365,7 @@ export default { 38 ], "returning": [ - 896 + 936 ], "__typename": [ 78 @@ -13912,13 +14373,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 900 + 940 ], "update_columns": [ - 914 + 954 ], "where": [ - 899 + 939 ], "__typename": [ 78 @@ -13926,10 +14387,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -13957,7 +14418,7 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 913 + 953 ], "ordering": [ 236 @@ -13980,10 +14441,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 911 + 951 ], "where": [ - 899 + 939 ], "__typename": [ 78 @@ -14002,10 +14463,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 918 + 958 ], "nodes": [ - 916 + 956 ], "__typename": [ 78 @@ -14016,7 +14477,7 @@ export default { 38, { "columns": [ - 930, + 970, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -14025,10 +14486,10 @@ export default { } ], "max": [ - 924 + 964 ], "min": [ - 925 + 965 ], "__typename": [ 78 @@ -14036,13 +14497,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 919 + 959 ], "_not": [ - 919 + 959 ], "_or": [ - 919 + 959 ], "description": [ 80 @@ -14058,19 +14519,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 921 + 961 ], "_in": [ - 921 + 961 ], "_is_null": [ 3 ], "_neq": [ - 921 + 961 ], "_nin": [ - 921 + 961 ], "__typename": [ 78 @@ -14114,7 +14575,7 @@ export default { 38 ], "returning": [ - 916 + 956 ], "__typename": [ 78 @@ -14122,13 +14583,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 920 + 960 ], "update_columns": [ - 934 + 974 ], "where": [ - 919 + 959 ], "__typename": [ 78 @@ -14136,10 +14597,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -14167,7 +14628,7 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 933 + 973 ], "ordering": [ 236 @@ -14190,10 +14651,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 931 + 971 ], "where": [ - 919 + 959 ], "__typename": [ 78 @@ -14212,10 +14673,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 938 + 978 ], "nodes": [ - 936 + 976 ], "__typename": [ 78 @@ -14226,7 +14687,7 @@ export default { 38, { "columns": [ - 951, + 991, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -14235,10 +14696,10 @@ export default { } ], "max": [ - 944 + 984 ], "min": [ - 945 + 985 ], "__typename": [ 78 @@ -14246,13 +14707,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 939 + 979 ], "_not": [ - 939 + 979 ], "_or": [ - 939 + 979 ], "description": [ 80 @@ -14268,19 +14729,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 941 + 981 ], "_in": [ - 941 + 981 ], "_is_null": [ 3 ], "_neq": [ - 941 + 981 ], "_nin": [ - 941 + 981 ], "__typename": [ 78 @@ -14324,7 +14785,7 @@ export default { 38 ], "returning": [ - 936 + 976 ], "__typename": [ 78 @@ -14332,10 +14793,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 943 + 983 ], "on_conflict": [ - 948 + 988 ], "__typename": [ 78 @@ -14343,13 +14804,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 940 + 980 ], "update_columns": [ - 955 + 995 ], "where": [ - 939 + 979 ], "__typename": [ 78 @@ -14357,10 +14818,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -14388,7 +14849,7 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 954 + 994 ], "ordering": [ 236 @@ -14411,10 +14872,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 952 + 992 ], "where": [ - 939 + 979 ], "__typename": [ 78 @@ -14425,10 +14886,10 @@ export default { 78 ], "scrim_requests": [ - 3880, + 4180, { "distinct_on": [ - 3904, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14438,19 +14899,19 @@ export default { 38 ], "order_by": [ - 3902, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4191 ] } ], "scrim_requests_aggregate": [ - 3881, + 4181, { "distinct_on": [ - 3904, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14460,11 +14921,11 @@ export default { 38 ], "order_by": [ - 3902, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4191 ] } ], @@ -14477,10 +14938,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 959 + 999 ], "nodes": [ - 957 + 997 ], "__typename": [ 78 @@ -14491,7 +14952,7 @@ export default { 38, { "columns": [ - 971, + 1011, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -14500,10 +14961,10 @@ export default { } ], "max": [ - 965 + 1005 ], "min": [ - 966 + 1006 ], "__typename": [ 78 @@ -14511,22 +14972,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 960 + 1000 ], "_not": [ - 960 + 1000 ], "_or": [ - 960 + 1000 ], "description": [ 80 ], "scrim_requests": [ - 3891 + 4191 ], "scrim_requests_aggregate": [ - 3882 + 4182 ], "value": [ 80 @@ -14539,19 +15000,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 962 + 1002 ], "_in": [ - 962 + 1002 ], "_is_null": [ 3 ], "_neq": [ - 962 + 1002 ], "_nin": [ - 962 + 1002 ], "__typename": [ 78 @@ -14562,7 +15023,7 @@ export default { 78 ], "scrim_requests": [ - 3888 + 4188 ], "value": [ 78 @@ -14598,7 +15059,7 @@ export default { 38 ], "returning": [ - 957 + 997 ], "__typename": [ 78 @@ -14606,13 +15067,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 961 + 1001 ], "update_columns": [ - 975 + 1015 ], "where": [ - 960 + 1000 ], "__typename": [ 78 @@ -14620,13 +15081,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2481 + 2781 ], "scrim_requests_aggregate": [ - 3887 + 4187 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -14654,7 +15115,7 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 974 + 1014 ], "ordering": [ 236 @@ -14677,10 +15138,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 972 + 1012 ], "where": [ - 960 + 1000 ], "__typename": [ 78 @@ -14691,10 +15152,10 @@ export default { 78 ], "servers": [ - 3553, + 3853, { "distinct_on": [ - 3577, + 3877, "[servers_select_column!]" ], "limit": [ @@ -14704,19 +15165,19 @@ export default { 38 ], "order_by": [ - 3575, + 3875, "[servers_order_by!]" ], "where": [ - 3564 + 3864 ] } ], "servers_aggregate": [ - 3554, + 3854, { "distinct_on": [ - 3577, + 3877, "[servers_select_column!]" ], "limit": [ @@ -14726,11 +15187,11 @@ export default { 38 ], "order_by": [ - 3575, + 3875, "[servers_order_by!]" ], "where": [ - 3564 + 3864 ] } ], @@ -14743,10 +15204,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 979 + 1019 ], "nodes": [ - 977 + 1017 ], "__typename": [ 78 @@ -14757,7 +15218,7 @@ export default { 38, { "columns": [ - 991, + 1031, "[e_server_types_select_column!]" ], "distinct": [ @@ -14766,10 +15227,10 @@ export default { } ], "max": [ - 985 + 1025 ], "min": [ - 986 + 1026 ], "__typename": [ 78 @@ -14777,22 +15238,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 980 + 1020 ], "_not": [ - 980 + 1020 ], "_or": [ - 980 + 1020 ], "description": [ 80 ], "servers": [ - 3564 + 3864 ], "servers_aggregate": [ - 3555 + 3855 ], "value": [ 80 @@ -14805,19 +15266,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 982 + 1022 ], "_in": [ - 982 + 1022 ], "_is_null": [ 3 ], "_neq": [ - 982 + 1022 ], "_nin": [ - 982 + 1022 ], "__typename": [ 78 @@ -14828,7 +15289,7 @@ export default { 78 ], "servers": [ - 3561 + 3861 ], "value": [ 78 @@ -14864,7 +15325,7 @@ export default { 38 ], "returning": [ - 977 + 1017 ], "__typename": [ 78 @@ -14872,13 +15333,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 981 + 1021 ], "update_columns": [ - 995 + 1035 ], "where": [ - 980 + 1020 ], "__typename": [ 78 @@ -14886,13 +15347,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2481 + 2781 ], "servers_aggregate": [ - 3560 + 3860 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -14920,7 +15381,7 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 994 + 1034 ], "ordering": [ 236 @@ -14943,10 +15404,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 992 + 1032 ], "where": [ - 980 + 1020 ], "__typename": [ 78 @@ -14957,10 +15418,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2134, + 2434, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -14970,19 +15431,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_map_lineup_1_aggregate": [ - 2135, + 2435, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -14992,19 +15453,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_map_lineup_2": [ - 2134, + 2434, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -15014,19 +15475,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_map_lineup_2_aggregate": [ - 2135, + 2435, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -15036,11 +15497,11 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], @@ -15053,10 +15514,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 999 + 1039 ], "nodes": [ - 997 + 1037 ], "__typename": [ 78 @@ -15067,7 +15528,7 @@ export default { 38, { "columns": [ - 1011, + 1051, "[e_sides_select_column!]" ], "distinct": [ @@ -15076,10 +15537,10 @@ export default { } ], "max": [ - 1005 + 1045 ], "min": [ - 1006 + 1046 ], "__typename": [ 78 @@ -15087,28 +15548,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1000 + 1040 ], "_not": [ - 1000 + 1040 ], "_or": [ - 1000 + 1040 ], "description": [ 80 ], "match_map_lineup_1": [ - 2143 + 2443 ], "match_map_lineup_1_aggregate": [ - 2136 + 2436 ], "match_map_lineup_2": [ - 2143 + 2443 ], "match_map_lineup_2_aggregate": [ - 2136 + 2436 ], "value": [ 80 @@ -15121,19 +15582,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1002 + 1042 ], "_in": [ - 1002 + 1042 ], "_is_null": [ 3 ], "_neq": [ - 1002 + 1042 ], "_nin": [ - 1002 + 1042 ], "__typename": [ 78 @@ -15144,10 +15605,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2140 + 2440 ], "match_map_lineup_2": [ - 2140 + 2440 ], "value": [ 78 @@ -15183,7 +15644,7 @@ export default { 38 ], "returning": [ - 997 + 1037 ], "__typename": [ 78 @@ -15191,13 +15652,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1001 + 1041 ], "update_columns": [ - 1015 + 1055 ], "where": [ - 1000 + 1040 ], "__typename": [ 78 @@ -15205,16 +15666,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2481 + 2781 ], "match_map_lineup_1_aggregate": [ - 2139 + 2439 ], "match_map_lineup_2_aggregate": [ - 2139 + 2439 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -15242,7 +15703,7 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1014 + 1054 ], "ordering": [ 236 @@ -15265,10 +15726,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1012 + 1052 ], "where": [ - 1000 + 1040 ], "__typename": [ 78 @@ -15287,10 +15748,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1019 + 1059 ], "nodes": [ - 1017 + 1057 ], "__typename": [ 78 @@ -15301,7 +15762,7 @@ export default { 38, { "columns": [ - 1031, + 1071, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -15310,10 +15771,10 @@ export default { } ], "max": [ - 1025 + 1065 ], "min": [ - 1026 + 1066 ], "__typename": [ 78 @@ -15321,13 +15782,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1020 + 1060 ], "_not": [ - 1020 + 1060 ], "_or": [ - 1020 + 1060 ], "description": [ 80 @@ -15343,19 +15804,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1022 + 1062 ], "_in": [ - 1022 + 1062 ], "_is_null": [ 3 ], "_neq": [ - 1022 + 1062 ], "_nin": [ - 1022 + 1062 ], "__typename": [ 78 @@ -15399,7 +15860,7 @@ export default { 38 ], "returning": [ - 1017 + 1057 ], "__typename": [ 78 @@ -15407,13 +15868,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1021 + 1061 ], "update_columns": [ - 1035 + 1075 ], "where": [ - 1020 + 1060 ], "__typename": [ 78 @@ -15421,10 +15882,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -15452,7 +15913,7 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1034 + 1074 ], "ordering": [ 236 @@ -15475,10 +15936,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1032 + 1072 ], "where": [ - 1020 + 1060 ], "__typename": [ 78 @@ -15489,10 +15950,10 @@ export default { 78 ], "team_rosters": [ - 3739, + 4039, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -15502,19 +15963,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "team_rosters_aggregate": [ - 3740, + 4040, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -15524,19 +15985,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "tournament_team_rosters": [ - 4246, + 4546, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15546,19 +16007,19 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "tournament_team_rosters_aggregate": [ - 4247, + 4547, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15568,11 +16029,11 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], @@ -15585,10 +16046,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1039 + 1079 ], "nodes": [ - 1037 + 1077 ], "__typename": [ 78 @@ -15599,7 +16060,7 @@ export default { 38, { "columns": [ - 1052, + 1092, "[e_team_roles_select_column!]" ], "distinct": [ @@ -15608,10 +16069,10 @@ export default { } ], "max": [ - 1045 + 1085 ], "min": [ - 1046 + 1086 ], "__typename": [ 78 @@ -15619,28 +16080,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1040 + 1080 ], "_not": [ - 1040 + 1080 ], "_or": [ - 1040 + 1080 ], "description": [ 80 ], "team_rosters": [ - 3750 + 4050 ], "team_rosters_aggregate": [ - 3741 + 4041 ], "tournament_team_rosters": [ - 4255 + 4555 ], "tournament_team_rosters_aggregate": [ - 4248 + 4548 ], "value": [ 80 @@ -15653,19 +16114,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1042 + 1082 ], "_in": [ - 1042 + 1082 ], "_is_null": [ 3 ], "_neq": [ - 1042 + 1082 ], "_nin": [ - 1042 + 1082 ], "__typename": [ 78 @@ -15676,10 +16137,10 @@ export default { 78 ], "team_rosters": [ - 3747 + 4047 ], "tournament_team_rosters": [ - 4252 + 4552 ], "value": [ 78 @@ -15715,7 +16176,7 @@ export default { 38 ], "returning": [ - 1037 + 1077 ], "__typename": [ 78 @@ -15723,10 +16184,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1044 + 1084 ], "on_conflict": [ - 1049 + 1089 ], "__typename": [ 78 @@ -15734,13 +16195,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1041 + 1081 ], "update_columns": [ - 1056 + 1096 ], "where": [ - 1040 + 1080 ], "__typename": [ 78 @@ -15748,16 +16209,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2481 + 2781 ], "team_rosters_aggregate": [ - 3746 + 4046 ], "tournament_team_rosters_aggregate": [ - 4251 + 4551 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -15785,7 +16246,7 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1055 + 1095 ], "ordering": [ 236 @@ -15808,10 +16269,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1053 + 1093 ], "where": [ - 1040 + 1080 ], "__typename": [ 78 @@ -15830,10 +16291,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1060 + 1100 ], "nodes": [ - 1058 + 1098 ], "__typename": [ 78 @@ -15844,7 +16305,7 @@ export default { 38, { "columns": [ - 1072, + 1112, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -15853,10 +16314,10 @@ export default { } ], "max": [ - 1066 + 1106 ], "min": [ - 1067 + 1107 ], "__typename": [ 78 @@ -15864,13 +16325,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1061 + 1101 ], "_not": [ - 1061 + 1101 ], "_or": [ - 1061 + 1101 ], "description": [ 80 @@ -15886,19 +16347,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1063 + 1103 ], "_in": [ - 1063 + 1103 ], "_is_null": [ 3 ], "_neq": [ - 1063 + 1103 ], "_nin": [ - 1063 + 1103 ], "__typename": [ 78 @@ -15942,7 +16403,7 @@ export default { 38 ], "returning": [ - 1058 + 1098 ], "__typename": [ 78 @@ -15950,13 +16411,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1062 + 1102 ], "update_columns": [ - 1076 + 1116 ], "where": [ - 1061 + 1101 ], "__typename": [ 78 @@ -15964,10 +16425,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -15995,7 +16456,7 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1075 + 1115 ], "ordering": [ 236 @@ -16018,10 +16479,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1073 + 1113 ], "where": [ - 1061 + 1101 ], "__typename": [ 78 @@ -16040,10 +16501,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1080 + 1120 ], "nodes": [ - 1078 + 1118 ], "__typename": [ 78 @@ -16054,7 +16515,7 @@ export default { 38, { "columns": [ - 1092, + 1132, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -16063,10 +16524,10 @@ export default { } ], "max": [ - 1086 + 1126 ], "min": [ - 1087 + 1127 ], "__typename": [ 78 @@ -16074,13 +16535,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1081 + 1121 ], "_not": [ - 1081 + 1121 ], "_or": [ - 1081 + 1121 ], "description": [ 80 @@ -16096,19 +16557,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1083 + 1123 ], "_in": [ - 1083 + 1123 ], "_is_null": [ 3 ], "_neq": [ - 1083 + 1123 ], "_nin": [ - 1083 + 1123 ], "__typename": [ 78 @@ -16152,7 +16613,7 @@ export default { 38 ], "returning": [ - 1078 + 1118 ], "__typename": [ 78 @@ -16160,13 +16621,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1082 + 1122 ], "update_columns": [ - 1096 + 1136 ], "where": [ - 1081 + 1121 ], "__typename": [ 78 @@ -16174,10 +16635,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -16205,7 +16666,7 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1095 + 1135 ], "ordering": [ 236 @@ -16228,10 +16689,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1093 + 1133 ], "where": [ - 1081 + 1121 ], "__typename": [ 78 @@ -16242,10 +16703,10 @@ export default { 78 ], "tournament_stages": [ - 4154, + 4454, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -16255,19 +16716,19 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], "tournament_stages_aggregate": [ - 4155, + 4455, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -16277,11 +16738,11 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], @@ -16294,10 +16755,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1100 + 1140 ], "nodes": [ - 1098 + 1138 ], "__typename": [ 78 @@ -16308,7 +16769,7 @@ export default { 38, { "columns": [ - 1113, + 1153, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -16317,10 +16778,10 @@ export default { } ], "max": [ - 1106 + 1146 ], "min": [ - 1107 + 1147 ], "__typename": [ 78 @@ -16328,22 +16789,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1101 + 1141 ], "_not": [ - 1101 + 1141 ], "_or": [ - 1101 + 1141 ], "description": [ 80 ], "tournament_stages": [ - 4166 + 4466 ], "tournament_stages_aggregate": [ - 4156 + 4456 ], "value": [ 80 @@ -16356,19 +16817,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1103 + 1143 ], "_in": [ - 1103 + 1143 ], "_is_null": [ 3 ], "_neq": [ - 1103 + 1143 ], "_nin": [ - 1103 + 1143 ], "__typename": [ 78 @@ -16379,7 +16840,7 @@ export default { 78 ], "tournament_stages": [ - 4163 + 4463 ], "value": [ 78 @@ -16415,7 +16876,7 @@ export default { 38 ], "returning": [ - 1098 + 1138 ], "__typename": [ 78 @@ -16423,10 +16884,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1105 + 1145 ], "on_conflict": [ - 1110 + 1150 ], "__typename": [ 78 @@ -16434,13 +16895,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1102 + 1142 ], "update_columns": [ - 1117 + 1157 ], "where": [ - 1101 + 1141 ], "__typename": [ 78 @@ -16448,13 +16909,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2481 + 2781 ], "tournament_stages_aggregate": [ - 4161 + 4461 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -16482,7 +16943,7 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1116 + 1156 ], "ordering": [ 236 @@ -16505,10 +16966,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1114 + 1154 ], "where": [ - 1101 + 1141 ], "__typename": [ 78 @@ -16519,10 +16980,10 @@ export default { 78 ], "tournaments": [ - 4416, + 4716, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -16532,19 +16993,19 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], "tournaments_aggregate": [ - 4417, + 4717, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -16554,11 +17015,11 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], @@ -16571,10 +17032,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1121 + 1161 ], "nodes": [ - 1119 + 1159 ], "__typename": [ 78 @@ -16585,7 +17046,7 @@ export default { 38, { "columns": [ - 1134, + 1174, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -16594,10 +17055,10 @@ export default { } ], "max": [ - 1127 + 1167 ], "min": [ - 1128 + 1168 ], "__typename": [ 78 @@ -16605,22 +17066,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1122 + 1162 ], "_not": [ - 1122 + 1162 ], "_or": [ - 1122 + 1162 ], "description": [ 80 ], "tournaments": [ - 4427 + 4727 ], "tournaments_aggregate": [ - 4418 + 4718 ], "value": [ 80 @@ -16633,19 +17094,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1124 + 1164 ], "_in": [ - 1124 + 1164 ], "_is_null": [ 3 ], "_neq": [ - 1124 + 1164 ], "_nin": [ - 1124 + 1164 ], "__typename": [ 78 @@ -16656,7 +17117,7 @@ export default { 78 ], "tournaments": [ - 4424 + 4724 ], "value": [ 78 @@ -16692,7 +17153,7 @@ export default { 38 ], "returning": [ - 1119 + 1159 ], "__typename": [ 78 @@ -16700,10 +17161,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1126 + 1166 ], "on_conflict": [ - 1131 + 1171 ], "__typename": [ 78 @@ -16711,13 +17172,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1123 + 1163 ], "update_columns": [ - 1138 + 1178 ], "where": [ - 1122 + 1162 ], "__typename": [ 78 @@ -16725,13 +17186,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2481 + 2781 ], "tournaments_aggregate": [ - 4423 + 4723 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -16759,7 +17220,7 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1137 + 1177 ], "ordering": [ 236 @@ -16782,10 +17243,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1135 + 1175 ], "where": [ - 1122 + 1162 ], "__typename": [ 78 @@ -16796,10 +17257,10 @@ export default { 78 ], "player_utilities": [ - 3365, + 3665, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -16809,19 +17270,19 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "player_utilities_aggregate": [ - 3366, + 3666, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -16831,11 +17292,11 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], @@ -16848,10 +17309,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1142 + 1182 ], "nodes": [ - 1140 + 1180 ], "__typename": [ 78 @@ -16862,7 +17323,7 @@ export default { 38, { "columns": [ - 1154, + 1194, "[e_utility_types_select_column!]" ], "distinct": [ @@ -16871,10 +17332,10 @@ export default { } ], "max": [ - 1148 + 1188 ], "min": [ - 1149 + 1189 ], "__typename": [ 78 @@ -16882,22 +17343,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1143 + 1183 ], "_not": [ - 1143 + 1183 ], "_or": [ - 1143 + 1183 ], "description": [ 80 ], "player_utilities": [ - 3374 + 3674 ], "player_utilities_aggregate": [ - 3367 + 3667 ], "value": [ 80 @@ -16910,19 +17371,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1145 + 1185 ], "_in": [ - 1145 + 1185 ], "_is_null": [ 3 ], "_neq": [ - 1145 + 1185 ], "_nin": [ - 1145 + 1185 ], "__typename": [ 78 @@ -16933,7 +17394,7 @@ export default { 78 ], "player_utilities": [ - 3371 + 3671 ], "value": [ 78 @@ -16969,7 +17430,7 @@ export default { 38 ], "returning": [ - 1140 + 1180 ], "__typename": [ 78 @@ -16977,13 +17438,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1144 + 1184 ], "update_columns": [ - 1158 + 1198 ], "where": [ - 1143 + 1183 ], "__typename": [ 78 @@ -16991,13 +17452,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2481 + 2781 ], "player_utilities_aggregate": [ - 3370 + 3670 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -17025,7 +17486,7 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1157 + 1197 ], "ordering": [ 236 @@ -17048,10 +17509,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1155 + 1195 ], "where": [ - 1143 + 1183 ], "__typename": [ 78 @@ -17062,10 +17523,10 @@ export default { 78 ], "match_veto_picks": [ - 2110, + 2410, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17075,19 +17536,19 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "match_veto_picks_aggregate": [ - 2111, + 2411, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17097,11 +17558,11 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], @@ -17114,10 +17575,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1162 + 1202 ], "nodes": [ - 1160 + 1200 ], "__typename": [ 78 @@ -17128,7 +17589,7 @@ export default { 38, { "columns": [ - 1174, + 1214, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -17137,10 +17598,10 @@ export default { } ], "max": [ - 1168 + 1208 ], "min": [ - 1169 + 1209 ], "__typename": [ 78 @@ -17148,22 +17609,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1163 + 1203 ], "_not": [ - 1163 + 1203 ], "_or": [ - 1163 + 1203 ], "description": [ 80 ], "match_veto_picks": [ - 2117 + 2417 ], "match_veto_picks_aggregate": [ - 2112 + 2412 ], "value": [ 80 @@ -17176,19 +17637,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1165 + 1205 ], "_in": [ - 1165 + 1205 ], "_is_null": [ 3 ], "_neq": [ - 1165 + 1205 ], "_nin": [ - 1165 + 1205 ], "__typename": [ 78 @@ -17199,7 +17660,7 @@ export default { 78 ], "match_veto_picks": [ - 2116 + 2416 ], "value": [ 78 @@ -17235,7 +17696,7 @@ export default { 38 ], "returning": [ - 1160 + 1200 ], "__typename": [ 78 @@ -17243,13 +17704,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1164 + 1204 ], "update_columns": [ - 1178 + 1218 ], "where": [ - 1163 + 1203 ], "__typename": [ 78 @@ -17257,13 +17718,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2481 + 2781 ], "match_veto_picks_aggregate": [ - 2115 + 2415 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -17291,7 +17752,7 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1177 + 1217 ], "ordering": [ 236 @@ -17314,10 +17775,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1175 + 1215 ], "where": [ - 1163 + 1203 ], "__typename": [ 78 @@ -17336,10 +17797,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1182 + 1222 ], "nodes": [ - 1180 + 1220 ], "__typename": [ 78 @@ -17350,7 +17811,7 @@ export default { 38, { "columns": [ - 1194, + 1234, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -17359,10 +17820,10 @@ export default { } ], "max": [ - 1188 + 1228 ], "min": [ - 1189 + 1229 ], "__typename": [ 78 @@ -17370,13 +17831,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1183 + 1223 ], "_not": [ - 1183 + 1223 ], "_or": [ - 1183 + 1223 ], "description": [ 80 @@ -17392,19 +17853,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1185 + 1225 ], "_in": [ - 1185 + 1225 ], "_is_null": [ 3 ], "_neq": [ - 1185 + 1225 ], "_nin": [ - 1185 + 1225 ], "__typename": [ 78 @@ -17448,7 +17909,7 @@ export default { 38 ], "returning": [ - 1180 + 1220 ], "__typename": [ 78 @@ -17456,13 +17917,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1184 + 1224 ], "update_columns": [ - 1198 + 1238 ], "where": [ - 1183 + 1223 ], "__typename": [ 78 @@ -17470,10 +17931,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -17501,7 +17962,7 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1197 + 1237 ], "ordering": [ 236 @@ -17524,86 +17985,53 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1195 + 1235 ], "where": [ - 1183 + 1223 ], "__typename": [ 78 ] }, - "float8": {}, - "float8_comparison_exp": { - "_eq": [ - 1200 - ], - "_gt": [ - 1200 - ], - "_gte": [ - 1200 - ], - "_in": [ - 1200 - ], - "_is_null": [ - 3 - ], - "_lt": [ - 1200 - ], - "_lte": [ - 1200 - ], - "_neq": [ - 1200 - ], - "_nin": [ - 1200 + "event_match_links": { + "created_at": [ + 4324 ], - "__typename": [ - 78 - ] - }, - "friends": { - "e_status": [ - 525 + "event": [ + 1471 ], - "other_player_steam_id": [ - 180 + "event_id": [ + 4762 ], - "player_steam_id": [ - 180 + "match": [ + 2596 ], - "status": [ - 530 + "match_id": [ + 4762 ], "__typename": [ 78 ] }, - "friends_aggregate": { + "event_match_links_aggregate": { "aggregate": [ - 1204 + 1242 ], "nodes": [ - 1202 + 1240 ], "__typename": [ 78 ] }, - "friends_aggregate_fields": { - "avg": [ - 1205 - ], + "event_match_links_aggregate_fields": { "count": [ 38, { "columns": [ - 1216, - "[friends_select_column!]" + 1252, + "[event_match_links_select_column!]" ], "distinct": [ 3 @@ -17611,228 +18039,167 @@ export default { } ], "max": [ - 1210 + 1246 ], "min": [ - 1211 - ], - "stddev": [ - 1218 - ], - "stddev_pop": [ - 1219 - ], - "stddev_samp": [ - 1220 - ], - "sum": [ - 1223 - ], - "var_pop": [ - 1226 - ], - "var_samp": [ - 1227 - ], - "variance": [ - 1228 - ], - "__typename": [ - 78 - ] - }, - "friends_avg_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 + 1247 ], "__typename": [ 78 ] }, - "friends_bool_exp": { + "event_match_links_bool_exp": { "_and": [ - 1206 + 1243 ], "_not": [ - 1206 + 1243 ], "_or": [ - 1206 - ], - "e_status": [ - 528 + 1243 ], - "other_player_steam_id": [ - 182 + "created_at": [ + 4325 ], - "player_steam_id": [ - 182 + "event": [ + 1475 ], - "status": [ - 531 + "event_id": [ + 4764 ], - "__typename": [ - 78 - ] - }, - "friends_constraint": {}, - "friends_inc_input": { - "other_player_steam_id": [ - 180 + "match": [ + 2605 ], - "player_steam_id": [ - 180 + "match_id": [ + 4764 ], "__typename": [ 78 ] }, - "friends_insert_input": { - "e_status": [ - 536 + "event_match_links_constraint": {}, + "event_match_links_insert_input": { + "created_at": [ + 4324 ], - "other_player_steam_id": [ - 180 + "event": [ + 1482 ], - "player_steam_id": [ - 180 + "event_id": [ + 4762 ], - "status": [ - 530 + "match": [ + 2614 + ], + "match_id": [ + 4762 ], "__typename": [ 78 ] }, - "friends_max_fields": { - "other_player_steam_id": [ - 180 + "event_match_links_max_fields": { + "created_at": [ + 4324 ], - "player_steam_id": [ - 180 + "event_id": [ + 4762 + ], + "match_id": [ + 4762 ], "__typename": [ 78 ] }, - "friends_min_fields": { - "other_player_steam_id": [ - 180 + "event_match_links_min_fields": { + "created_at": [ + 4324 ], - "player_steam_id": [ - 180 + "event_id": [ + 4762 + ], + "match_id": [ + 4762 ], "__typename": [ 78 ] }, - "friends_mutation_response": { + "event_match_links_mutation_response": { "affected_rows": [ 38 ], "returning": [ - 1202 + 1240 ], "__typename": [ 78 ] }, - "friends_on_conflict": { + "event_match_links_on_conflict": { "constraint": [ - 1207 + 1244 ], "update_columns": [ - 1224 + 1256 ], "where": [ - 1206 - ], - "__typename": [ - 78 - ] - }, - "friends_order_by": { - "e_status": [ - 538 - ], - "other_player_steam_id": [ - 2481 - ], - "player_steam_id": [ - 2481 - ], - "status": [ - 2481 + 1243 ], "__typename": [ 78 ] }, - "friends_pk_columns_input": { - "other_player_steam_id": [ - 180 + "event_match_links_order_by": { + "created_at": [ + 2781 ], - "player_steam_id": [ - 180 + "event": [ + 1484 ], - "__typename": [ - 78 - ] - }, - "friends_select_column": {}, - "friends_set_input": { - "other_player_steam_id": [ - 180 + "event_id": [ + 2781 ], - "player_steam_id": [ - 180 + "match": [ + 2616 ], - "status": [ - 530 + "match_id": [ + 2781 ], "__typename": [ 78 ] }, - "friends_stddev_fields": { - "other_player_steam_id": [ - 29 + "event_match_links_pk_columns_input": { + "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 + "event_match_links_select_column": {}, + "event_match_links_set_input": { + "created_at": [ + 4324 ], - "__typename": [ - 78 - ] - }, - "friends_stddev_samp_fields": { - "other_player_steam_id": [ - 29 + "event_id": [ + 4762 ], - "player_steam_id": [ - 29 + "match_id": [ + 4762 ], "__typename": [ 78 ] }, - "friends_stream_cursor_input": { + "event_match_links_stream_cursor_input": { "initial_value": [ - 1222 + 1255 ], "ordering": [ 236 @@ -17841,216 +18208,60 @@ export default { 78 ] }, - "friends_stream_cursor_value_input": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "status": [ - 530 + "event_match_links_stream_cursor_value_input": { + "created_at": [ + 4324 ], - "__typename": [ - 78 - ] - }, - "friends_sum_fields": { - "other_player_steam_id": [ - 180 + "event_id": [ + 4762 ], - "player_steam_id": [ - 180 + "match_id": [ + 4762 ], "__typename": [ 78 ] }, - "friends_update_column": {}, - "friends_updates": { - "_inc": [ - 1208 - ], + "event_match_links_update_column": {}, + "event_match_links_updates": { "_set": [ - 1217 + 1253 ], "where": [ - 1206 + 1243 ], "__typename": [ 78 ] }, - "friends_var_pop_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 + "event_media": { + "created_at": [ + 4324 ], - "__typename": [ - 78 - ] - }, - "friends_var_samp_fields": { - "other_player_steam_id": [ - 29 + "event": [ + 1471 ], - "player_steam_id": [ - 29 + "event_id": [ + 4762 ], - "__typename": [ + "external_url": [ 78 - ] - }, - "friends_variance_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 ], - "__typename": [ + "filename": [ 78 - ] - }, - "game_server_nodes": { - "available_server_count": [ - 38 - ], - "build_id": [ - 38 - ], - "cpu_cores_per_socket": [ - 38 - ], - "cpu_frequency_info": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "cpu_governor_info": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "cpu_sockets": [ - 38 - ], - "cpu_threads_per_core": [ - 38 - ], - "cs2_launch_options": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "cs2_video_settings": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "csgo_build_id": [ - 38 - ], - "demo_network_limiter": [ - 38 - ], - "disk_available_gb": [ - 38 - ], - "disk_used_percent": [ - 38 - ], - "e_region": [ - 3526 - ], - "e_status": [ - 566 - ], - "enabled": [ - 3 - ], - "enabled_for_match_making": [ - 3 - ], - "end_port_range": [ - 38 - ], - "gpu": [ - 3 - ], - "gpu_demos_enabled": [ - 3 - ], - "gpu_info": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "gpu_rendering_enabled": [ - 3 - ], - "gpu_streaming_enabled": [ - 3 ], "id": [ - 78 - ], - "label": [ - 78 - ], - "lan_ip": [ - 1348 - ], - "node_ip": [ - 1348 - ], - "offline_at": [ - 4024 - ], - "pin_build_id": [ - 38 - ], - "pin_plugin_runtime": [ - 78 - ], - "pin_plugin_version": [ - 78 - ], - "pinned_version": [ - 1280 - ], - "plugin_supported": [ - 3 - ], - "public_ip": [ - 1348 + 4762 ], - "region": [ + "mime_type": [ 78 ], - "servers": [ - 3553, + "players": [ + 1280, { "distinct_on": [ - 3577, - "[servers_select_column!]" + 1301, + "[event_media_players_select_column!]" ], "limit": [ 38 @@ -18059,20 +18270,20 @@ export default { 38 ], "order_by": [ - 3575, - "[servers_order_by!]" + 1299, + "[event_media_players_order_by!]" ], "where": [ - 3564 + 1289 ] } ], - "servers_aggregate": [ - 3554, + "players_aggregate": [ + 1281, { "distinct_on": [ - 3577, - "[servers_select_column!]" + 1301, + "[event_media_players_select_column!]" ], "limit": [ 38 @@ -18081,127 +18292,61 @@ export default { 38 ], "order_by": [ - 3575, - "[servers_order_by!]" + 1299, + "[event_media_players_order_by!]" ], "where": [ - 3564 + 1289 ] } ], - "shader_bake_progress": [ - 2479 - ], - "shader_bake_progress_stage": [ - 78 + "size": [ + 180 ], - "shader_bake_status": [ + "thumbnail_filename": [ 78 ], - "shader_bake_status_history": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "start_port_range": [ - 38 - ], - "status": [ - 571 - ], - "supports_cpu_pinning": [ - 3 - ], - "supports_low_latency": [ - 3 - ], - "token": [ + "title": [ 78 ], - "total_server_count": [ - 38 - ], - "update_status": [ - 78 + "uploader": [ + 3739 ], - "version": [ - 1280 + "uploader_steam_id": [ + 180 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate": { + "event_media_aggregate": { "aggregate": [ - 1235 + 1262 ], "nodes": [ - 1229 + 1258 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_bool_exp": { - "bool_and": [ - 1232 - ], - "bool_or": [ - 1233 - ], + "event_media_aggregate_bool_exp": { "count": [ - 1234 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_bool_exp_bool_and": { - "arguments": [ - 1259 - ], - "distinct": [ - 3 - ], - "filter": [ - 1241 - ], - "predicate": [ - 4 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_bool_exp_bool_or": { - "arguments": [ - 1260 - ], - "distinct": [ - 3 - ], - "filter": [ - 1241 - ], - "predicate": [ - 4 + 1261 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_bool_exp_count": { + "event_media_aggregate_bool_exp_count": { "arguments": [ - 1258 + 1321 ], "distinct": [ 3 ], "filter": [ - 1241 + 1267 ], "predicate": [ 39 @@ -18210,16 +18355,16 @@ export default { 78 ] }, - "game_server_nodes_aggregate_fields": { + "event_media_aggregate_fields": { "avg": [ - 1239 + 1265 ], "count": [ 38, { "columns": [ - 1258, - "[game_server_nodes_select_column!]" + 1321, + "[event_media_select_column!]" ], "distinct": [ 3 @@ -18227,292 +18372,4713 @@ export default { } ], "max": [ - 1248 + 1271 ], "min": [ - 1250 + 1273 ], "stddev": [ - 1262 + 1323 ], "stddev_pop": [ - 1264 + 1325 ], "stddev_samp": [ - 1266 + 1327 ], "sum": [ - 1270 + 1331 ], "var_pop": [ - 1274 + 1335 ], "var_samp": [ - 1276 + 1337 ], "variance": [ - 1278 + 1339 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_order_by": { + "event_media_aggregate_order_by": { "avg": [ - 1240 + 1266 ], "count": [ - 2481 + 2781 ], "max": [ - 1249 + 1272 ], "min": [ - 1251 + 1274 ], "stddev": [ - 1263 + 1324 ], "stddev_pop": [ - 1265 + 1326 ], "stddev_samp": [ - 1267 + 1328 ], "sum": [ - 1271 + 1332 ], "var_pop": [ - 1275 + 1336 ], "var_samp": [ - 1277 + 1338 ], "variance": [ - 1279 + 1340 ], "__typename": [ 78 ] }, - "game_server_nodes_append_input": { - "cpu_frequency_info": [ - 1352 - ], - "cpu_governor_info": [ - 1352 - ], - "cs2_launch_options": [ - 1352 + "event_media_arr_rel_insert_input": { + "data": [ + 1270 ], - "cs2_video_settings": [ - 1352 + "on_conflict": [ + 1277 ], - "gpu_info": [ - 1352 + "__typename": [ + 78 + ] + }, + "event_media_avg_fields": { + "size": [ + 29 ], - "shader_bake_status_history": [ - 1352 + "uploader_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "game_server_nodes_arr_rel_insert_input": { - "data": [ - 1247 + "event_media_avg_order_by": { + "size": [ + 2781 ], - "on_conflict": [ - 1254 + "uploader_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "game_server_nodes_avg_fields": { - "available_server_count": [ - 38 + "event_media_bool_exp": { + "_and": [ + 1267 ], - "build_id": [ - 29 + "_not": [ + 1267 ], - "cpu_cores_per_socket": [ - 29 + "_or": [ + 1267 ], - "cpu_sockets": [ - 29 + "created_at": [ + 4325 ], - "cpu_threads_per_core": [ - 29 + "event": [ + 1475 ], - "csgo_build_id": [ - 29 + "event_id": [ + 4764 ], - "demo_network_limiter": [ - 29 + "external_url": [ + 80 ], - "disk_available_gb": [ - 29 + "filename": [ + 80 ], - "disk_used_percent": [ - 29 + "id": [ + 4764 ], - "end_port_range": [ - 29 + "mime_type": [ + 80 ], - "pin_build_id": [ - 29 + "players": [ + 1289 ], - "shader_bake_progress": [ - 29 + "players_aggregate": [ + 1282 ], - "start_port_range": [ - 29 + "size": [ + 182 ], - "total_server_count": [ - 38 + "thumbnail_filename": [ + 80 + ], + "title": [ + 80 + ], + "uploader": [ + 3743 + ], + "uploader_steam_id": [ + 182 ], "__typename": [ 78 ] }, - "game_server_nodes_avg_order_by": { - "build_id": [ - 2481 + "event_media_constraint": {}, + "event_media_inc_input": { + "size": [ + 180 ], - "cpu_cores_per_socket": [ - 2481 + "uploader_steam_id": [ + 180 ], - "cpu_sockets": [ - 2481 + "__typename": [ + 78 + ] + }, + "event_media_insert_input": { + "created_at": [ + 4324 ], - "cpu_threads_per_core": [ - 2481 + "event": [ + 1482 ], - "csgo_build_id": [ - 2481 + "event_id": [ + 4762 ], - "demo_network_limiter": [ - 2481 + "external_url": [ + 78 ], - "disk_available_gb": [ - 2481 + "filename": [ + 78 ], - "disk_used_percent": [ - 2481 + "id": [ + 4762 ], - "end_port_range": [ - 2481 + "mime_type": [ + 78 ], - "pin_build_id": [ - 2481 + "players": [ + 1286 ], - "shader_bake_progress": [ - 2481 + "size": [ + 180 ], - "start_port_range": [ - 2481 + "thumbnail_filename": [ + 78 + ], + "title": [ + 78 + ], + "uploader": [ + 3750 + ], + "uploader_steam_id": [ + 180 ], "__typename": [ 78 ] }, - "game_server_nodes_bool_exp": { - "_and": [ - 1241 - ], - "_not": [ - 1241 - ], - "_or": [ - 1241 + "event_media_max_fields": { + "created_at": [ + 4324 ], - "available_server_count": [ - 39 + "event_id": [ + 4762 ], - "build_id": [ - 39 + "external_url": [ + 78 ], - "cpu_cores_per_socket": [ - 39 + "filename": [ + 78 ], - "cpu_frequency_info": [ - 1354 + "id": [ + 4762 ], - "cpu_governor_info": [ - 1354 + "mime_type": [ + 78 ], - "cpu_sockets": [ - 39 + "size": [ + 180 ], - "cpu_threads_per_core": [ - 39 + "thumbnail_filename": [ + 78 ], - "cs2_launch_options": [ - 1354 + "title": [ + 78 ], - "cs2_video_settings": [ - 1354 + "uploader_steam_id": [ + 180 ], - "csgo_build_id": [ - 39 + "__typename": [ + 78 + ] + }, + "event_media_max_order_by": { + "created_at": [ + 2781 ], - "demo_network_limiter": [ - 39 + "event_id": [ + 2781 ], - "disk_available_gb": [ - 39 + "external_url": [ + 2781 ], - "disk_used_percent": [ - 39 + "filename": [ + 2781 ], - "e_region": [ - 3530 + "id": [ + 2781 ], - "e_status": [ - 569 + "mime_type": [ + 2781 ], - "enabled": [ - 4 + "size": [ + 2781 ], - "enabled_for_match_making": [ - 4 + "thumbnail_filename": [ + 2781 ], - "end_port_range": [ - 39 + "title": [ + 2781 ], - "gpu": [ - 4 + "uploader_steam_id": [ + 2781 ], - "gpu_demos_enabled": [ - 4 + "__typename": [ + 78 + ] + }, + "event_media_min_fields": { + "created_at": [ + 4324 ], - "gpu_info": [ - 1354 + "event_id": [ + 4762 ], - "gpu_rendering_enabled": [ - 4 + "external_url": [ + 78 ], - "gpu_streaming_enabled": [ - 4 + "filename": [ + 78 ], "id": [ - 80 + 4762 ], - "label": [ - 80 + "mime_type": [ + 78 ], - "lan_ip": [ - 1349 + "size": [ + 180 ], - "node_ip": [ - 1349 + "thumbnail_filename": [ + 78 ], - "offline_at": [ - 4025 + "title": [ + 78 ], - "pin_build_id": [ - 39 + "uploader_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_min_order_by": { + "created_at": [ + 2781 + ], + "event_id": [ + 2781 + ], + "external_url": [ + 2781 + ], + "filename": [ + 2781 + ], + "id": [ + 2781 + ], + "mime_type": [ + 2781 + ], + "size": [ + 2781 + ], + "thumbnail_filename": [ + 2781 + ], + "title": [ + 2781 + ], + "uploader_steam_id": [ + 2781 + ], + "__typename": [ + 78 + ] + }, + "event_media_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1258 + ], + "__typename": [ + 78 + ] + }, + "event_media_obj_rel_insert_input": { + "data": [ + 1270 + ], + "on_conflict": [ + 1277 + ], + "__typename": [ + 78 + ] + }, + "event_media_on_conflict": { + "constraint": [ + 1268 + ], + "update_columns": [ + 1333 + ], + "where": [ + 1267 + ], + "__typename": [ + 78 + ] + }, + "event_media_order_by": { + "created_at": [ + 2781 + ], + "event": [ + 1484 + ], + "event_id": [ + 2781 + ], + "external_url": [ + 2781 + ], + "filename": [ + 2781 + ], + "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 + ], + "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 + ], + "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 + ], + "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 @@ -18521,25 +23087,25 @@ export default { 80 ], "pinned_version": [ - 1285 + 1584 ], "plugin_supported": [ 4 ], "public_ip": [ - 1349 + 1649 ], "region": [ 80 ], "servers": [ - 3564 + 3864 ], "servers_aggregate": [ - 3555 + 3855 ], "shader_bake_progress": [ - 2480 + 2780 ], "shader_bake_progress_stage": [ 80 @@ -18548,13 +23114,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1354 + 1654 ], "start_port_range": [ 39 ], "status": [ - 572 + 612 ], "supports_cpu_pinning": [ 4 @@ -18572,7 +23138,7 @@ export default { 80 ], "version": [ - 1285 + 1584 ], "__typename": [ 78 @@ -18680,7 +23246,7 @@ export default { 38 ], "shader_bake_progress": [ - 2479 + 2779 ], "start_port_range": [ 38 @@ -18697,10 +23263,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1352 + 1652 ], "cpu_governor_info": [ - 1352 + 1652 ], "cpu_sockets": [ 38 @@ -18709,10 +23275,10 @@ export default { 38 ], "cs2_launch_options": [ - 1352 + 1652 ], "cs2_video_settings": [ - 1352 + 1652 ], "csgo_build_id": [ 38 @@ -18727,10 +23293,10 @@ export default { 38 ], "e_region": [ - 3536 + 3836 ], "e_status": [ - 577 + 617 ], "enabled": [ 3 @@ -18748,7 +23314,7 @@ export default { 3 ], "gpu_info": [ - 1352 + 1652 ], "gpu_rendering_enabled": [ 3 @@ -18763,13 +23329,13 @@ export default { 78 ], "lan_ip": [ - 1348 + 1648 ], "node_ip": [ - 1348 + 1648 ], "offline_at": [ - 4024 + 4324 ], "pin_build_id": [ 38 @@ -18781,19 +23347,19 @@ export default { 78 ], "pinned_version": [ - 1295 + 1594 ], "public_ip": [ - 1348 + 1648 ], "region": [ 78 ], "servers": [ - 3561 + 3861 ], "shader_bake_progress": [ - 2479 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -18802,13 +23368,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1352 + 1652 ], "start_port_range": [ 38 ], "status": [ - 571 + 611 ], "supports_cpu_pinning": [ 3 @@ -18823,7 +23389,7 @@ export default { 78 ], "version": [ - 1295 + 1594 ], "__typename": [ 78 @@ -18867,7 +23433,7 @@ export default { 78 ], "offline_at": [ - 4024 + 4324 ], "pin_build_id": [ 38 @@ -18882,7 +23448,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -18908,70 +23474,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "offline_at": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "pin_plugin_runtime": [ - 2481 + 2781 ], "pin_plugin_version": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "shader_bake_progress_stage": [ - 2481 + 2781 ], "shader_bake_status": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "token": [ - 2481 + 2781 ], "update_status": [ - 2481 + 2781 ], "__typename": [ 78 @@ -19015,7 +23581,7 @@ export default { 78 ], "offline_at": [ - 4024 + 4324 ], "pin_build_id": [ 38 @@ -19030,7 +23596,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -19056,70 +23622,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "offline_at": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "pin_plugin_runtime": [ - 2481 + 2781 ], "pin_plugin_version": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "shader_bake_progress_stage": [ - 2481 + 2781 ], "shader_bake_status": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "token": [ - 2481 + 2781 ], "update_status": [ - 2481 + 2781 ], "__typename": [ 78 @@ -19130,7 +23696,7 @@ export default { 38 ], "returning": [ - 1229 + 1528 ], "__typename": [ 78 @@ -19138,10 +23704,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1247 + 1546 ], "on_conflict": [ - 1254 + 1553 ], "__typename": [ 78 @@ -19149,13 +23715,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1242 + 1541 ], "update_columns": [ - 1272 + 1571 ], "where": [ - 1241 + 1540 ], "__typename": [ 78 @@ -19163,148 +23729,148 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2481 + 2781 ], "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_frequency_info": [ - 2481 + 2781 ], "cpu_governor_info": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "cs2_launch_options": [ - 2481 + 2781 ], "cs2_video_settings": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "e_region": [ - 3538 + 3838 ], "e_status": [ - 579 + 619 ], "enabled": [ - 2481 + 2781 ], "enabled_for_match_making": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "gpu": [ - 2481 + 2781 ], "gpu_demos_enabled": [ - 2481 + 2781 ], "gpu_info": [ - 2481 + 2781 ], "gpu_rendering_enabled": [ - 2481 + 2781 ], "gpu_streaming_enabled": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "lan_ip": [ - 2481 + 2781 ], "node_ip": [ - 2481 + 2781 ], "offline_at": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "pin_plugin_runtime": [ - 2481 + 2781 ], "pin_plugin_version": [ - 2481 + 2781 ], "pinned_version": [ - 1297 + 1596 ], "plugin_supported": [ - 2481 + 2781 ], "public_ip": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "servers_aggregate": [ - 3560 + 3860 ], "shader_bake_progress": [ - 2481 + 2781 ], "shader_bake_progress_stage": [ - 2481 + 2781 ], "shader_bake_status": [ - 2481 + 2781 ], "shader_bake_status_history": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "supports_cpu_pinning": [ - 2481 + 2781 ], "supports_low_latency": [ - 2481 + 2781 ], "token": [ - 2481 + 2781 ], "total_server_count": [ - 2481 + 2781 ], "update_status": [ - 2481 + 2781 ], "version": [ - 1297 + 1596 ], "__typename": [ 78 @@ -19320,22 +23886,22 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1352 + 1652 ], "cpu_governor_info": [ - 1352 + 1652 ], "cs2_launch_options": [ - 1352 + 1652 ], "cs2_video_settings": [ - 1352 + 1652 ], "gpu_info": [ - 1352 + 1652 ], "shader_bake_status_history": [ - 1352 + 1652 ], "__typename": [ 78 @@ -19352,10 +23918,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1352 + 1652 ], "cpu_governor_info": [ - 1352 + 1652 ], "cpu_sockets": [ 38 @@ -19364,10 +23930,10 @@ export default { 38 ], "cs2_launch_options": [ - 1352 + 1652 ], "cs2_video_settings": [ - 1352 + 1652 ], "csgo_build_id": [ 38 @@ -19397,7 +23963,7 @@ export default { 3 ], "gpu_info": [ - 1352 + 1652 ], "gpu_rendering_enabled": [ 3 @@ -19412,13 +23978,13 @@ export default { 78 ], "lan_ip": [ - 1348 + 1648 ], "node_ip": [ - 1348 + 1648 ], "offline_at": [ - 4024 + 4324 ], "pin_build_id": [ 38 @@ -19430,13 +23996,13 @@ export default { 78 ], "public_ip": [ - 1348 + 1648 ], "region": [ 78 ], "shader_bake_progress": [ - 2479 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -19445,13 +24011,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1352 + 1652 ], "start_port_range": [ 38 ], "status": [ - 571 + 611 ], "supports_cpu_pinning": [ 3 @@ -19518,40 +24084,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "__typename": [ 78 @@ -19606,40 +24172,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "__typename": [ 78 @@ -19694,40 +24260,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "__typename": [ 78 @@ -19735,7 +24301,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1269 + 1568 ], "ordering": [ 236 @@ -19752,10 +24318,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1352 + 1652 ], "cpu_governor_info": [ - 1352 + 1652 ], "cpu_sockets": [ 38 @@ -19764,10 +24330,10 @@ export default { 38 ], "cs2_launch_options": [ - 1352 + 1652 ], "cs2_video_settings": [ - 1352 + 1652 ], "csgo_build_id": [ 38 @@ -19797,7 +24363,7 @@ export default { 3 ], "gpu_info": [ - 1352 + 1652 ], "gpu_rendering_enabled": [ 3 @@ -19812,13 +24378,13 @@ export default { 78 ], "lan_ip": [ - 1348 + 1648 ], "node_ip": [ - 1348 + 1648 ], "offline_at": [ - 4024 + 4324 ], "pin_build_id": [ 38 @@ -19830,13 +24396,13 @@ export default { 78 ], "public_ip": [ - 1348 + 1648 ], "region": [ 78 ], "shader_bake_progress": [ - 2479 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -19845,13 +24411,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1352 + 1652 ], "start_port_range": [ 38 ], "status": [ - 571 + 611 ], "supports_cpu_pinning": [ 3 @@ -19904,7 +24470,7 @@ export default { 38 ], "shader_bake_progress": [ - 2479 + 2779 ], "start_port_range": [ 38 @@ -19918,40 +24484,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "__typename": [ 78 @@ -19960,28 +24526,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1237 + 1536 ], "_delete_at_path": [ - 1243 + 1542 ], "_delete_elem": [ - 1244 + 1543 ], "_delete_key": [ - 1245 + 1544 ], "_inc": [ - 1246 + 1545 ], "_prepend": [ - 1257 + 1556 ], "_set": [ - 1261 + 1560 ], "where": [ - 1241 + 1540 ], "__typename": [ 78 @@ -20036,40 +24602,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "__typename": [ 78 @@ -20124,40 +24690,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "__typename": [ 78 @@ -20212,40 +24778,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2481 + 2781 ], "cpu_cores_per_socket": [ - 2481 + 2781 ], "cpu_sockets": [ - 2481 + 2781 ], "cpu_threads_per_core": [ - 2481 + 2781 ], "csgo_build_id": [ - 2481 + 2781 ], "demo_network_limiter": [ - 2481 + 2781 ], "disk_available_gb": [ - 2481 + 2781 ], "disk_used_percent": [ - 2481 + 2781 ], "end_port_range": [ - 2481 + 2781 ], "pin_build_id": [ - 2481 + 2781 ], "shader_bake_progress": [ - 2481 + 2781 ], "start_port_range": [ - 2481 + 2781 ], "__typename": [ 78 @@ -20265,7 +24831,7 @@ export default { 78 ], "downloads": [ - 1352, + 1652, { "path": [ 78 @@ -20273,7 +24839,7 @@ export default { } ], "updated_at": [ - 4024 + 4324 ], "version": [ 78 @@ -20284,10 +24850,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1282 + 1581 ], "nodes": [ - 1280 + 1579 ], "__typename": [ 78 @@ -20295,13 +24861,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1284 + 1583 ], "count": [ 38, { "columns": [ - 1300, + 1599, "[game_versions_select_column!]" ], "distinct": [ @@ -20310,31 +24876,31 @@ export default { } ], "max": [ - 1292 + 1591 ], "min": [ - 1293 + 1592 ], "stddev": [ - 1302 + 1601 ], "stddev_pop": [ - 1303 + 1602 ], "stddev_samp": [ - 1304 + 1603 ], "sum": [ - 1307 + 1606 ], "var_pop": [ - 1310 + 1609 ], "var_samp": [ - 1311 + 1610 ], "variance": [ - 1312 + 1611 ], "__typename": [ 78 @@ -20342,7 +24908,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1352 + 1652 ], "__typename": [ 78 @@ -20358,13 +24924,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1285 + 1584 ], "_not": [ - 1285 + 1584 ], "_or": [ - 1285 + 1584 ], "build_id": [ 39 @@ -20379,10 +24945,10 @@ export default { 80 ], "downloads": [ - 1354 + 1654 ], "updated_at": [ - 4025 + 4325 ], "version": [ 80 @@ -20438,10 +25004,10 @@ export default { 78 ], "downloads": [ - 1352 + 1652 ], "updated_at": [ - 4024 + 4324 ], "version": [ 78 @@ -20458,7 +25024,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "version": [ 78 @@ -20475,7 +25041,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "version": [ 78 @@ -20489,7 +25055,7 @@ export default { 38 ], "returning": [ - 1280 + 1579 ], "__typename": [ 78 @@ -20497,10 +25063,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1291 + 1590 ], "on_conflict": [ - 1296 + 1595 ], "__typename": [ 78 @@ -20508,13 +25074,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1286 + 1585 ], "update_columns": [ - 1308 + 1607 ], "where": [ - 1285 + 1584 ], "__typename": [ 78 @@ -20522,25 +25088,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2481 + 2781 ], "current": [ - 2481 + 2781 ], "cvars": [ - 2481 + 2781 ], "description": [ - 2481 + 2781 ], "downloads": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "version": [ - 2481 + 2781 ], "__typename": [ 78 @@ -20556,7 +25122,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1352 + 1652 ], "__typename": [ 78 @@ -20577,10 +25143,10 @@ export default { 78 ], "downloads": [ - 1352 + 1652 ], "updated_at": [ - 4024 + 4324 ], "version": [ 78 @@ -20615,7 +25181,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1306 + 1605 ], "ordering": [ 236 @@ -20638,10 +25204,10 @@ export default { 78 ], "downloads": [ - 1352 + 1652 ], "updated_at": [ - 4024 + 4324 ], "version": [ 78 @@ -20661,28 +25227,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1283 + 1582 ], "_delete_at_path": [ - 1287 + 1586 ], "_delete_elem": [ - 1288 + 1587 ], "_delete_key": [ - 1289 + 1588 ], "_inc": [ - 1290 + 1589 ], "_prepend": [ - 1299 + 1598 ], "_set": [ - 1301 + 1600 ], "where": [ - 1285 + 1584 ], "__typename": [ 78 @@ -20720,13 +25286,13 @@ export default { 38 ], "game_version": [ - 1280 + 1579 ], "id": [ - 4462 + 4762 ], "results": [ - 1352, + 1652, { "path": [ 78 @@ -20737,7 +25303,7 @@ export default { 78 ], "validated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -20745,10 +25311,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1315 + 1614 ], "nodes": [ - 1313 + 1612 ], "__typename": [ 78 @@ -20756,13 +25322,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1317 + 1616 ], "count": [ 38, { "columns": [ - 1332, + 1631, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -20771,31 +25337,31 @@ export default { } ], "max": [ - 1325 + 1624 ], "min": [ - 1326 + 1625 ], "stddev": [ - 1334 + 1633 ], "stddev_pop": [ - 1335 + 1634 ], "stddev_samp": [ - 1336 + 1635 ], "sum": [ - 1339 + 1638 ], "var_pop": [ - 1342 + 1641 ], "var_samp": [ - 1343 + 1642 ], "variance": [ - 1344 + 1643 ], "__typename": [ 78 @@ -20803,7 +25369,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1352 + 1652 ], "__typename": [ 78 @@ -20819,13 +25385,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1318 + 1617 ], "_not": [ - 1318 + 1617 ], "_or": [ - 1318 + 1617 ], "branch": [ 80 @@ -20834,19 +25400,19 @@ export default { 39 ], "game_version": [ - 1285 + 1584 ], "id": [ - 4464 + 4764 ], "results": [ - 1354 + 1654 ], "status": [ 80 ], "validated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -20893,19 +25459,19 @@ export default { 38 ], "game_version": [ - 1295 + 1594 ], "id": [ - 4462 + 4762 ], "results": [ - 1352 + 1652 ], "status": [ 78 ], "validated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -20919,13 +25485,13 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "status": [ 78 ], "validated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -20939,13 +25505,13 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "status": [ 78 ], "validated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -20956,7 +25522,7 @@ export default { 38 ], "returning": [ - 1313 + 1612 ], "__typename": [ 78 @@ -20964,13 +25530,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1319 + 1618 ], "update_columns": [ - 1340 + 1639 ], "where": [ - 1318 + 1617 ], "__typename": [ 78 @@ -20978,25 +25544,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2481 + 2781 ], "build_id": [ - 2481 + 2781 ], "game_version": [ - 1297 + 1596 ], "id": [ - 2481 + 2781 ], "results": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "validated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -21004,7 +25570,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -21012,7 +25578,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1352 + 1652 ], "__typename": [ 78 @@ -21027,16 +25593,16 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "results": [ - 1352 + 1652 ], "status": [ 78 ], "validated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -21068,7 +25634,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1338 + 1637 ], "ordering": [ 236 @@ -21085,16 +25651,16 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "results": [ - 1352 + 1652 ], "status": [ 78 ], "validated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -21111,28 +25677,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1316 + 1615 ], "_delete_at_path": [ - 1320 + 1619 ], "_delete_elem": [ - 1321 + 1620 ], "_delete_key": [ - 1322 + 1621 ], "_inc": [ - 1323 + 1622 ], "_prepend": [ - 1331 + 1630 ], "_set": [ - 1333 + 1632 ], "where": [ - 1318 + 1617 ], "__typename": [ 78 @@ -21162,6 +25728,23 @@ 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 @@ -21176,7 +25759,7 @@ export default { 78 ], "_season_id": [ - 4462 + 4762 ], "_window_days": [ 38 @@ -21190,7 +25773,7 @@ export default { 78 ], "_league_season_id": [ - 4462 + 4762 ], "_role": [ 78 @@ -21213,7 +25796,7 @@ export default { 78 ], "_season_id": [ - 4462 + 4762 ], "_window_days": [ 38 @@ -21225,31 +25808,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1348 + 1648 ], "_gt": [ - 1348 + 1648 ], "_gte": [ - 1348 + 1648 ], "_in": [ - 1348 + 1648 ], "_is_null": [ 3 ], "_lt": [ - 1348 + 1648 ], "_lte": [ - 1348 + 1648 ], "_neq": [ - 1348 + 1648 ], "_nin": [ - 1348 + 1648 ], "__typename": [ 78 @@ -21258,31 +25841,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1350 + 1650 ], "_gt": [ - 1350 + 1650 ], "_gte": [ - 1350 + 1650 ], "_in": [ - 1350 + 1650 ], "_is_null": [ 3 ], "_lt": [ - 1350 + 1650 ], "_lte": [ - 1350 + 1650 ], "_neq": [ - 1350 + 1650 ], "_nin": [ - 1350 + 1650 ], "__typename": [ 78 @@ -21299,22 +25882,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1353 + 1653 ], "_contained_in": [ - 1352 + 1652 ], "_contains": [ - 1352 + 1652 ], "_eq": [ - 1352 + 1652 ], "_gt": [ - 1352 + 1652 ], "_gte": [ - 1352 + 1652 ], "_has_key": [ 78 @@ -21326,22 +25909,22 @@ export default { 78 ], "_in": [ - 1352 + 1652 ], "_is_null": [ 3 ], "_lt": [ - 1352 + 1652 ], "_lte": [ - 1352 + 1652 ], "_neq": [ - 1352 + 1652 ], "_nin": [ - 1352 + 1652 ], "__typename": [ 78 @@ -21364,13 +25947,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21378,10 +25961,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1357 + 1657 ], "nodes": [ - 1355 + 1655 ], "__typename": [ 78 @@ -21389,13 +25972,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1358 + 1658 ], "count": [ 38, { "columns": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -21404,31 +25987,31 @@ export default { } ], "max": [ - 1362 + 1662 ], "min": [ - 1363 + 1663 ], "stddev": [ - 1368 + 1668 ], "stddev_pop": [ - 1369 + 1669 ], "stddev_samp": [ - 1370 + 1670 ], "sum": [ - 1373 + 1673 ], "var_pop": [ - 1375 + 1675 ], "var_samp": [ - 1376 + 1676 ], "variance": [ - 1377 + 1677 ], "__typename": [ 78 @@ -21453,13 +26036,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1359 + 1659 ], "_not": [ - 1359 + 1659 ], "_or": [ - 1359 + 1659 ], "matches_played": [ 39 @@ -21477,13 +26060,13 @@ export default { 80 ], "secondary_value": [ - 1201 + 1500 ], "tertiary_value": [ - 1201 + 1500 ], "value": [ - 1201 + 1500 ], "__typename": [ 78 @@ -21494,13 +26077,13 @@ export default { 38 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21523,13 +26106,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21552,13 +26135,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21581,13 +26164,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21598,7 +26181,7 @@ export default { 38 ], "returning": [ - 1355 + 1655 ], "__typename": [ 78 @@ -21606,28 +26189,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2481 + 2781 ], "player_avatar_url": [ - 2481 + 2781 ], "player_country": [ - 2481 + 2781 ], "player_name": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "secondary_value": [ - 2481 + 2781 ], "tertiary_value": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -21651,13 +26234,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21716,7 +26299,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1372 + 1672 ], "ordering": [ 236 @@ -21742,13 +26325,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21759,13 +26342,13 @@ export default { 38 ], "secondary_value": [ - 1200 + 1499 ], "tertiary_value": [ - 1200 + 1499 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -21773,13 +26356,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1360 + 1660 ], "_set": [ - 1367 + 1667 ], "where": [ - 1359 + 1659 ], "__typename": [ 78 @@ -21838,10 +26421,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4462 + 4762 ], "_winning_tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -21849,19 +26432,19 @@ export default { }, "league_divisions": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 ], "season_divisions": [ - 1530, + 1830, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -21871,19 +26454,19 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], "season_divisions_aggregate": [ - 1531, + 1831, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -21893,16 +26476,16 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -21910,10 +26493,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1381 + 1681 ], "nodes": [ - 1379 + 1679 ], "__typename": [ 78 @@ -21921,13 +26504,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1382 + 1682 ], "count": [ 38, { "columns": [ - 1394, + 1694, "[league_divisions_select_column!]" ], "distinct": [ @@ -21936,31 +26519,31 @@ export default { } ], "max": [ - 1387 + 1687 ], "min": [ - 1388 + 1688 ], "stddev": [ - 1396 + 1696 ], "stddev_pop": [ - 1397 + 1697 ], "stddev_samp": [ - 1398 + 1698 ], "sum": [ - 1401 + 1701 ], "var_pop": [ - 1404 + 1704 ], "var_samp": [ - 1405 + 1705 ], "variance": [ - 1406 + 1706 ], "__typename": [ 78 @@ -21976,31 +26559,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1383 + 1683 ], "_not": [ - 1383 + 1683 ], "_or": [ - 1383 + 1683 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "name": [ 80 ], "season_divisions": [ - 1537 + 1837 ], "season_divisions_aggregate": [ - 1532 + 1832 ], "tier": [ - 3618 + 3918 ], "__typename": [ 78 @@ -22009,7 +26592,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -22017,19 +26600,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 ], "season_divisions": [ - 1536 + 1836 ], "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -22037,16 +26620,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 ], "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -22054,16 +26637,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 ], "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -22074,7 +26657,7 @@ export default { 38 ], "returning": [ - 1379 + 1679 ], "__typename": [ 78 @@ -22082,10 +26665,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1386 + 1686 ], "on_conflict": [ - 1391 + 1691 ], "__typename": [ 78 @@ -22093,13 +26676,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1384 + 1684 ], "update_columns": [ - 1402 + 1702 ], "where": [ - 1383 + 1683 ], "__typename": [ 78 @@ -22107,19 +26690,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "season_divisions_aggregate": [ - 1535 + 1835 ], "tier": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22127,7 +26710,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -22136,16 +26719,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 ], "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -22177,7 +26760,7 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1400 + 1700 ], "ordering": [ 236 @@ -22188,16 +26771,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 ], "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -22205,7 +26788,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3617 + 3917 ], "__typename": [ 78 @@ -22214,13 +26797,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1385 + 1685 ], "_set": [ - 1395 + 1695 ], "where": [ - 1383 + 1683 ], "__typename": [ 78 @@ -22252,25 +26835,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "season": [ - 1555 + 1855 ], "week_number": [ 38 @@ -22281,10 +26864,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1411 + 1711 ], "nodes": [ - 1407 + 1707 ], "__typename": [ 78 @@ -22292,7 +26875,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1410 + 1710 ], "__typename": [ 78 @@ -22300,13 +26883,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1428 + 1728 ], "distinct": [ 3 ], "filter": [ - 1416 + 1716 ], "predicate": [ 39 @@ -22317,13 +26900,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1414 + 1714 ], "count": [ 38, { "columns": [ - 1428, + 1728, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -22332,31 +26915,31 @@ export default { } ], "max": [ - 1420 + 1720 ], "min": [ - 1422 + 1722 ], "stddev": [ - 1430 + 1730 ], "stddev_pop": [ - 1432 + 1732 ], "stddev_samp": [ - 1434 + 1734 ], "sum": [ - 1438 + 1738 ], "var_pop": [ - 1442 + 1742 ], "var_samp": [ - 1444 + 1744 ], "variance": [ - 1446 + 1746 ], "__typename": [ 78 @@ -22364,37 +26947,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1415 + 1715 ], "count": [ - 2481 + 2781 ], "max": [ - 1421 + 1721 ], "min": [ - 1423 + 1723 ], "stddev": [ - 1431 + 1731 ], "stddev_pop": [ - 1433 + 1733 ], "stddev_samp": [ - 1435 + 1735 ], "sum": [ - 1439 + 1739 ], "var_pop": [ - 1443 + 1743 ], "var_samp": [ - 1445 + 1745 ], "variance": [ - 1447 + 1747 ], "__typename": [ 78 @@ -22402,10 +26985,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1419 + 1719 ], "on_conflict": [ - 1425 + 1725 ], "__typename": [ 78 @@ -22421,7 +27004,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22429,34 +27012,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1416 + 1716 ], "_not": [ - 1416 + 1716 ], "_or": [ - 1416 + 1716 ], "closes_at": [ - 4025 + 4325 ], "created_at": [ - 4025 + 4325 ], "default_match_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "league_season_id": [ - 4464 + 4764 ], "opens_at": [ - 4025 + 4325 ], "season": [ - 1560 + 1860 ], "week_number": [ 39 @@ -22476,25 +27059,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "season": [ - 1570 + 1870 ], "week_number": [ 38 @@ -22505,22 +27088,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "week_number": [ 38 @@ -22531,25 +27114,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "default_match_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "opens_at": [ - 2481 + 2781 ], "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22557,22 +27140,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "week_number": [ 38 @@ -22583,25 +27166,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "default_match_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "opens_at": [ - 2481 + 2781 ], "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22612,7 +27195,7 @@ export default { 38 ], "returning": [ - 1407 + 1707 ], "__typename": [ 78 @@ -22620,13 +27203,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1417 + 1717 ], "update_columns": [ - 1440 + 1740 ], "where": [ - 1416 + 1716 ], "__typename": [ 78 @@ -22634,28 +27217,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "default_match_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "opens_at": [ - 2481 + 2781 ], "season": [ - 1572 + 1872 ], "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22663,7 +27246,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -22672,22 +27255,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "week_number": [ 38 @@ -22706,7 +27289,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22722,7 +27305,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22738,7 +27321,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22746,7 +27329,7 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1437 + 1737 ], "ordering": [ 236 @@ -22757,22 +27340,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "week_number": [ 38 @@ -22791,7 +27374,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22800,13 +27383,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1418 + 1718 ], "_set": [ - 1429 + 1729 ], "where": [ - 1416 + 1716 ], "__typename": [ 78 @@ -22822,7 +27405,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22838,7 +27421,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22854,7 +27437,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2481 + 2781 ], "__typename": [ 78 @@ -22862,40 +27445,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4024 + 4324 ], "higher_division": [ - 1379 + 1679 ], "higher_division_id": [ - 4462 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "lower_division": [ - 1379 + 1679 ], "lower_division_id": [ - 4462 + 4762 ], "resolved_at": [ - 4024 + 4324 ], "season": [ - 1555 + 1855 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -22903,10 +27486,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1452 + 1752 ], "nodes": [ - 1448 + 1748 ], "__typename": [ 78 @@ -22914,7 +27497,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1451 + 1751 ], "__typename": [ 78 @@ -22922,13 +27505,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1469 + 1769 ], "distinct": [ 3 ], "filter": [ - 1457 + 1757 ], "predicate": [ 39 @@ -22939,13 +27522,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1455 + 1755 ], "count": [ 38, { "columns": [ - 1469, + 1769, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -22954,31 +27537,31 @@ export default { } ], "max": [ - 1461 + 1761 ], "min": [ - 1463 + 1763 ], "stddev": [ - 1471 + 1771 ], "stddev_pop": [ - 1473 + 1773 ], "stddev_samp": [ - 1475 + 1775 ], "sum": [ - 1479 + 1779 ], "var_pop": [ - 1483 + 1783 ], "var_samp": [ - 1485 + 1785 ], "variance": [ - 1487 + 1787 ], "__typename": [ 78 @@ -22986,37 +27569,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1456 + 1756 ], "count": [ - 2481 + 2781 ], "max": [ - 1462 + 1762 ], "min": [ - 1464 + 1764 ], "stddev": [ - 1472 + 1772 ], "stddev_pop": [ - 1474 + 1774 ], "stddev_samp": [ - 1476 + 1776 ], "sum": [ - 1480 + 1780 ], "var_pop": [ - 1484 + 1784 ], "var_samp": [ - 1486 + 1786 ], "variance": [ - 1488 + 1788 ], "__typename": [ 78 @@ -23024,10 +27607,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1460 + 1760 ], "on_conflict": [ - 1466 + 1766 ], "__typename": [ 78 @@ -23043,7 +27626,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23051,49 +27634,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1457 + 1757 ], "_not": [ - 1457 + 1757 ], "_or": [ - 1457 + 1757 ], "created_at": [ - 4025 + 4325 ], "higher_division": [ - 1383 + 1683 ], "higher_division_id": [ - 4464 + 4764 ], "higher_slots": [ 39 ], "id": [ - 4464 + 4764 ], "league_season_id": [ - 4464 + 4764 ], "lower_division": [ - 1383 + 1683 ], "lower_division_id": [ - 4464 + 4764 ], "resolved_at": [ - 4025 + 4325 ], "season": [ - 1560 + 1860 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -23110,40 +27693,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4024 + 4324 ], "higher_division": [ - 1390 + 1690 ], "higher_division_id": [ - 4462 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "lower_division": [ - 1390 + 1690 ], "lower_division_id": [ - 4462 + 4762 ], "resolved_at": [ - 4024 + 4324 ], "season": [ - 1570 + 1870 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23151,28 +27734,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4024 + 4324 ], "higher_division_id": [ - 4462 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "lower_division_id": [ - 4462 + 4762 ], "resolved_at": [ - 4024 + 4324 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23180,28 +27763,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2481 + 2781 ], "higher_division_id": [ - 2481 + 2781 ], "higher_slots": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "lower_division_id": [ - 2481 + 2781 ], "resolved_at": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23209,28 +27792,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4024 + 4324 ], "higher_division_id": [ - 4462 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "lower_division_id": [ - 4462 + 4762 ], "resolved_at": [ - 4024 + 4324 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23238,28 +27821,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2481 + 2781 ], "higher_division_id": [ - 2481 + 2781 ], "higher_slots": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "lower_division_id": [ - 2481 + 2781 ], "resolved_at": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23270,7 +27853,7 @@ export default { 38 ], "returning": [ - 1448 + 1748 ], "__typename": [ 78 @@ -23278,13 +27861,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1458 + 1758 ], "update_columns": [ - 1481 + 1781 ], "where": [ - 1457 + 1757 ], "__typename": [ 78 @@ -23292,40 +27875,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2481 + 2781 ], "higher_division": [ - 1392 + 1692 ], "higher_division_id": [ - 2481 + 2781 ], "higher_slots": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "lower_division": [ - 1392 + 1692 ], "lower_division_id": [ - 2481 + 2781 ], "resolved_at": [ - 2481 + 2781 ], "season": [ - 1572 + 1872 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23333,7 +27916,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23342,28 +27925,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4024 + 4324 ], "higher_division_id": [ - 4462 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "lower_division_id": [ - 4462 + 4762 ], "resolved_at": [ - 4024 + 4324 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23379,7 +27962,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23395,7 +27978,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23411,7 +27994,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23419,7 +28002,7 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1478 + 1778 ], "ordering": [ 236 @@ -23430,28 +28013,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "higher_division_id": [ - 4462 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "lower_division_id": [ - 4462 + 4762 ], "resolved_at": [ - 4024 + 4324 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23467,7 +28050,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23476,13 +28059,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1459 + 1759 ], "_set": [ - 1470 + 1770 ], "where": [ - 1457 + 1757 ], "__typename": [ 78 @@ -23498,7 +28081,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23514,7 +28097,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23530,7 +28113,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23538,46 +28121,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4026 + 4326 ], "created_at": [ - 4024 + 4324 ], "e_proposal_status": [ - 608 + 648 ], "id": [ - 4462 + 4762 ], "message": [ 78 ], "proposed_by": [ - 3439 + 3739 ], "proposed_by_league_team_season_id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4324 ], "responded_by": [ - 3439 + 3739 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 653 ], "team_season": [ - 1670 + 1970 ], "tournament_bracket_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23585,10 +28168,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1493 + 1793 ], "nodes": [ - 1489 + 1789 ], "__typename": [ 78 @@ -23596,7 +28179,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1492 + 1792 ], "__typename": [ 78 @@ -23604,13 +28187,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1510 + 1810 ], "distinct": [ 3 ], "filter": [ - 1498 + 1798 ], "predicate": [ 39 @@ -23621,13 +28204,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1496 + 1796 ], "count": [ 38, { "columns": [ - 1510, + 1810, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -23636,31 +28219,31 @@ export default { } ], "max": [ - 1502 + 1802 ], "min": [ - 1504 + 1804 ], "stddev": [ - 1512 + 1812 ], "stddev_pop": [ - 1514 + 1814 ], "stddev_samp": [ - 1516 + 1816 ], "sum": [ - 1520 + 1820 ], "var_pop": [ - 1524 + 1824 ], "var_samp": [ - 1526 + 1826 ], "variance": [ - 1528 + 1828 ], "__typename": [ 78 @@ -23668,37 +28251,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1497 + 1797 ], "count": [ - 2481 + 2781 ], "max": [ - 1503 + 1803 ], "min": [ - 1505 + 1805 ], "stddev": [ - 1513 + 1813 ], "stddev_pop": [ - 1515 + 1815 ], "stddev_samp": [ - 1517 + 1817 ], "sum": [ - 1521 + 1821 ], "var_pop": [ - 1525 + 1825 ], "var_samp": [ - 1527 + 1827 ], "variance": [ - 1529 + 1829 ], "__typename": [ 78 @@ -23706,10 +28289,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1501 + 1801 ], "on_conflict": [ - 1507 + 1807 ], "__typename": [ 78 @@ -23728,10 +28311,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23739,55 +28322,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1498 + 1798 ], "_not": [ - 1498 + 1798 ], "_or": [ - 1498 + 1798 ], "bracket": [ - 4037 + 4337 ], "created_at": [ - 4025 + 4325 ], "e_proposal_status": [ - 611 + 651 ], "id": [ - 4464 + 4764 ], "message": [ 80 ], "proposed_by": [ - 3443 + 3743 ], "proposed_by_league_team_season_id": [ - 4464 + 4764 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4025 + 4325 ], "responded_by": [ - 3443 + 3743 ], "responded_by_steam_id": [ 182 ], "status": [ - 614 + 654 ], "team_season": [ - 1679 + 1979 ], "tournament_bracket_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -23807,46 +28390,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4046 + 4346 ], "created_at": [ - 4024 + 4324 ], "e_proposal_status": [ - 619 + 659 ], "id": [ - 4462 + 4762 ], "message": [ 78 ], "proposed_by": [ - 3450 + 3750 ], "proposed_by_league_team_season_id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4324 ], "responded_by": [ - 3450 + 3750 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 653 ], "team_season": [ - 1688 + 1988 ], "tournament_bracket_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23854,28 +28437,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4324 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23883,28 +28466,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "message": [ - 2481 + 2781 ], "proposed_by_league_team_season_id": [ - 2481 + 2781 ], "proposed_by_steam_id": [ - 2481 + 2781 ], "proposed_time": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "tournament_bracket_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23912,28 +28495,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4324 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -23941,28 +28524,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "message": [ - 2481 + 2781 ], "proposed_by_league_team_season_id": [ - 2481 + 2781 ], "proposed_by_steam_id": [ - 2481 + 2781 ], "proposed_time": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "tournament_bracket_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -23973,7 +28556,7 @@ export default { 38 ], "returning": [ - 1489 + 1789 ], "__typename": [ 78 @@ -23981,13 +28564,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1499 + 1799 ], "update_columns": [ - 1522 + 1822 ], "where": [ - 1498 + 1798 ], "__typename": [ 78 @@ -23995,46 +28578,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4048 + 4348 ], "created_at": [ - 2481 + 2781 ], "e_proposal_status": [ - 621 + 661 ], "id": [ - 2481 + 2781 ], "message": [ - 2481 + 2781 ], "proposed_by": [ - 3452 + 3752 ], "proposed_by_league_team_season_id": [ - 2481 + 2781 ], "proposed_by_steam_id": [ - 2481 + 2781 ], "proposed_time": [ - 2481 + 2781 ], "responded_by": [ - 3452 + 3752 ], "responded_by_steam_id": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "team_season": [ - 1690 + 1990 ], "tournament_bracket_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24042,7 +28625,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24051,31 +28634,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4324 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 653 ], "tournament_bracket_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24094,10 +28677,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24116,10 +28699,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24138,10 +28721,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24149,7 +28732,7 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1519 + 1819 ], "ordering": [ 236 @@ -24160,31 +28743,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4324 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 653 ], "tournament_bracket_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24203,10 +28786,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24215,13 +28798,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1500 + 1800 ], "_set": [ - 1511 + 1811 ], "where": [ - 1498 + 1798 ], "__typename": [ 78 @@ -24240,10 +28823,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24262,10 +28845,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24284,10 +28867,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "responded_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24295,28 +28878,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4024 + 4324 ], "division": [ - 1379 + 1679 ], "id": [ - 4462 + 4762 ], "league_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "season": [ - 1555 + 1855 ], "standings": [ - 4483, + 4834, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24326,19 +28909,19 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "standings_aggregate": [ - 4484, + 4835, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24348,19 +28931,19 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24368,10 +28951,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1534 + 1834 ], "nodes": [ - 1530 + 1830 ], "__typename": [ 78 @@ -24379,7 +28962,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1533 + 1833 ], "__typename": [ 78 @@ -24387,13 +28970,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1549 + 1849 ], "distinct": [ 3 ], "filter": [ - 1537 + 1837 ], "predicate": [ 39 @@ -24407,7 +28990,7 @@ export default { 38, { "columns": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -24416,10 +28999,10 @@ export default { } ], "max": [ - 1540 + 1840 ], "min": [ - 1542 + 1842 ], "__typename": [ 78 @@ -24427,13 +29010,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2481 + 2781 ], "max": [ - 1541 + 1841 ], "min": [ - 1543 + 1843 ], "__typename": [ 78 @@ -24441,10 +29024,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1539 + 1839 ], "on_conflict": [ - 1546 + 1846 ], "__typename": [ 78 @@ -24452,43 +29035,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 1537 + 1837 ], "_not": [ - 1537 + 1837 ], "_or": [ - 1537 + 1837 ], "created_at": [ - 4025 + 4325 ], "division": [ - 1383 + 1683 ], "id": [ - 4464 + 4764 ], "league_division_id": [ - 4464 + 4764 ], "league_season_id": [ - 4464 + 4764 ], "season": [ - 1560 + 1860 ], "standings": [ - 4492 + 4843 ], "standings_aggregate": [ - 4485 + 4836 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -24497,31 +29080,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4024 + 4324 ], "division": [ - 1390 + 1690 ], "id": [ - 4462 + 4762 ], "league_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "season": [ - 1570 + 1870 ], "standings": [ - 4489 + 4840 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24529,19 +29112,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24549,19 +29132,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24569,19 +29152,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24589,19 +29172,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24612,7 +29195,7 @@ export default { 38 ], "returning": [ - 1530 + 1830 ], "__typename": [ 78 @@ -24620,10 +29203,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1539 + 1839 ], "on_conflict": [ - 1546 + 1846 ], "__typename": [ 78 @@ -24631,13 +29214,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 1538 + 1838 ], "update_columns": [ - 1553 + 1853 ], "where": [ - 1537 + 1837 ], "__typename": [ 78 @@ -24645,31 +29228,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2481 + 2781 ], "division": [ - 1392 + 1692 ], "id": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "season": [ - 1572 + 1872 ], "standings_aggregate": [ - 4488 + 4839 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -24677,7 +29260,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24686,19 +29269,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24706,7 +29289,7 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1552 + 1852 ], "ordering": [ 236 @@ -24717,19 +29300,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "league_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -24738,10 +29321,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1550 + 1850 ], "where": [ - 1537 + 1837 ], "__typename": [ 78 @@ -24755,7 +29338,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "created_by_steam_id": [ 180 @@ -24770,13 +29353,13 @@ export default { 38 ], "e_league_season_status": [ - 650 + 690 ], "games_per_week": [ 38 ], "id": [ - 4462 + 4762 ], "is_league_admin": [ 3 @@ -24785,13 +29368,13 @@ export default { 3 ], "match_options_id": [ - 4462 + 4762 ], "match_weeks": [ - 1407, + 1707, { "distinct_on": [ - 1428, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -24801,19 +29384,19 @@ export default { 38 ], "order_by": [ - 1426, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1716 ] } ], "match_weeks_aggregate": [ - 1408, + 1708, { "distinct_on": [ - 1428, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -24823,11 +29406,11 @@ export default { 38 ], "order_by": [ - 1426, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1716 ] } ], @@ -24841,10 +29424,10 @@ export default { 38 ], "movements": [ - 1588, + 1888, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -24854,19 +29437,19 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "movements_aggregate": [ - 1589, + 1889, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -24876,19 +29459,19 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "my_registration": [ - 1670, + 1970, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -24898,11 +29481,11 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], @@ -24910,13 +29493,13 @@ export default { 78 ], "options": [ - 2176 + 2476 ], "player_stats": [ - 4516, + 4867, { "distinct_on": [ - 4542, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24926,19 +29509,19 @@ export default { 38 ], "order_by": [ - 4541, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4886 ] } ], "player_stats_aggregate": [ - 4517, + 4868, { "distinct_on": [ - 4542, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24948,11 +29531,11 @@ export default { 38 ], "order_by": [ - 4541, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4886 ] } ], @@ -24960,7 +29543,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1352, + 1652, { "path": [ 78 @@ -24971,7 +29554,7 @@ export default { 38 ], "playoff_stage_type": [ - 1103 + 1143 ], "playoff_third_place_match": [ 3 @@ -24980,7 +29563,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1143 ], "relegate_count": [ 38 @@ -24989,10 +29572,10 @@ export default { 38 ], "relegation_playoffs": [ - 1448, + 1748, { "distinct_on": [ - 1469, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -25002,19 +29585,19 @@ export default { 38 ], "order_by": [ - 1467, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1757 ] } ], "relegation_playoffs_aggregate": [ - 1449, + 1749, { "distinct_on": [ - 1469, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -25024,11 +29607,11 @@ export default { 38 ], "order_by": [ - 1467, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1757 ] } ], @@ -25036,13 +29619,13 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4324 ], "season_divisions": [ - 1530, + 1830, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -25052,19 +29635,19 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], "season_divisions_aggregate": [ - 1531, + 1831, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -25074,11 +29657,11 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], @@ -25086,16 +29669,16 @@ export default { 38 ], "signup_closes_at": [ - 4024 + 4324 ], "signup_opens_at": [ - 4024 + 4324 ], "standings": [ - 4483, + 4834, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -25105,19 +29688,19 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "standings_aggregate": [ - 4484, + 4835, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -25127,25 +29710,25 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "starts_at": [ - 4024 + 4324 ], "status": [ - 655 + 695 ], "team_seasons": [ - 1670, + 1970, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -25155,19 +29738,19 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], "team_seasons_aggregate": [ - 1671, + 1971, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -25177,16 +29760,16 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], "week_best_of": [ - 1352, + 1652, { "path": [ 78 @@ -25199,10 +29782,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 1557 + 1857 ], "nodes": [ - 1555 + 1855 ], "__typename": [ 78 @@ -25210,13 +29793,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 1559 + 1859 ], "count": [ 38, { "columns": [ - 1575, + 1875, "[league_seasons_select_column!]" ], "distinct": [ @@ -25225,31 +29808,31 @@ export default { } ], "max": [ - 1567 + 1867 ], "min": [ - 1568 + 1868 ], "stddev": [ - 1577 + 1877 ], "stddev_pop": [ - 1578 + 1878 ], "stddev_samp": [ - 1579 + 1879 ], "sum": [ - 1582 + 1882 ], "var_pop": [ - 1585 + 1885 ], "var_samp": [ - 1586 + 1886 ], "variance": [ - 1587 + 1887 ], "__typename": [ 78 @@ -25257,10 +29840,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1352 + 1652 ], "week_best_of": [ - 1352 + 1652 ], "__typename": [ 78 @@ -25318,13 +29901,13 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 1560 + 1860 ], "_not": [ - 1560 + 1860 ], "_or": [ - 1560 + 1860 ], "auto_regular_season_format": [ 4 @@ -25333,7 +29916,7 @@ export default { 4 ], "created_at": [ - 4025 + 4325 ], "created_by_steam_id": [ 182 @@ -25348,13 +29931,13 @@ export default { 39 ], "e_league_season_status": [ - 653 + 693 ], "games_per_week": [ 39 ], "id": [ - 4464 + 4764 ], "is_league_admin": [ 4 @@ -25363,13 +29946,13 @@ export default { 4 ], "match_options_id": [ - 4464 + 4764 ], "match_weeks": [ - 1416 + 1716 ], "match_weeks_aggregate": [ - 1409 + 1709 ], "match_weeks_count": [ 39 @@ -25381,37 +29964,37 @@ export default { 39 ], "movements": [ - 1597 + 1897 ], "movements_aggregate": [ - 1590 + 1890 ], "my_registration": [ - 1679 + 1979 ], "name": [ 80 ], "options": [ - 2180 + 2480 ], "player_stats": [ - 4535 + 4886 ], "player_stats_aggregate": [ - 4518 + 4869 ], "playoff_best_of": [ 39 ], "playoff_round_best_of": [ - 1354 + 1654 ], "playoff_seats": [ 39 ], "playoff_stage_type": [ - 1104 + 1144 ], "playoff_third_place_match": [ 4 @@ -25420,7 +30003,7 @@ export default { 39 ], "regular_season_stage_type": [ - 1104 + 1144 ], "relegate_count": [ 39 @@ -25429,52 +30012,52 @@ export default { 39 ], "relegation_playoffs": [ - 1457 + 1757 ], "relegation_playoffs_aggregate": [ - 1450 + 1750 ], "relegation_up_count": [ 39 ], "roster_lock_at": [ - 4025 + 4325 ], "season_divisions": [ - 1537 + 1837 ], "season_divisions_aggregate": [ - 1532 + 1832 ], "season_number": [ 39 ], "signup_closes_at": [ - 4025 + 4325 ], "signup_opens_at": [ - 4025 + 4325 ], "standings": [ - 4492 + 4843 ], "standings_aggregate": [ - 4485 + 4836 ], "starts_at": [ - 4025 + 4325 ], "status": [ - 656 + 696 ], "team_seasons": [ - 1679 + 1979 ], "team_seasons_aggregate": [ - 1672 + 1972 ], "week_best_of": [ - 1354 + 1654 ], "__typename": [ 78 @@ -25569,7 +30152,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "created_by_steam_id": [ 180 @@ -25584,19 +30167,19 @@ export default { 38 ], "e_league_season_status": [ - 661 + 701 ], "games_per_week": [ 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_weeks": [ - 1413 + 1713 ], "match_weeks_count": [ 38 @@ -25608,28 +30191,28 @@ export default { 38 ], "movements": [ - 1594 + 1894 ], "name": [ 78 ], "options": [ - 2187 + 2487 ], "player_stats": [ - 4532 + 4883 ], "playoff_best_of": [ 38 ], "playoff_round_best_of": [ - 1352 + 1652 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1103 + 1143 ], "playoff_third_place_match": [ 3 @@ -25638,7 +30221,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1143 ], "relegate_count": [ 38 @@ -25647,40 +30230,40 @@ export default { 38 ], "relegation_playoffs": [ - 1454 + 1754 ], "relegation_up_count": [ 38 ], "roster_lock_at": [ - 4024 + 4324 ], "season_divisions": [ - 1536 + 1836 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4324 ], "signup_opens_at": [ - 4024 + 4324 ], "standings": [ - 4489 + 4840 ], "starts_at": [ - 4024 + 4324 ], "status": [ - 655 + 695 ], "team_seasons": [ - 1676 + 1976 ], "week_best_of": [ - 1352 + 1652 ], "__typename": [ 78 @@ -25688,7 +30271,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4024 + 4324 ], "created_by_steam_id": [ 180 @@ -25706,10 +30289,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_weeks_count": [ 38 @@ -25742,19 +30325,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4324 ], "signup_opens_at": [ - 4024 + 4324 ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -25762,7 +30345,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4024 + 4324 ], "created_by_steam_id": [ 180 @@ -25780,10 +30363,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_weeks_count": [ 38 @@ -25816,19 +30399,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4324 ], "signup_opens_at": [ - 4024 + 4324 ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -25839,7 +30422,7 @@ export default { 38 ], "returning": [ - 1555 + 1855 ], "__typename": [ 78 @@ -25847,10 +30430,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 1566 + 1866 ], "on_conflict": [ - 1571 + 1871 ], "__typename": [ 78 @@ -25858,13 +30441,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 1561 + 1861 ], "update_columns": [ - 1583 + 1883 ], "where": [ - 1560 + 1860 ], "__typename": [ 78 @@ -25872,133 +30455,133 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2481 + 2781 ], "can_register": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "created_by_steam_id": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "direct_promote_count": [ - 2481 + 2781 ], "direct_relegate_count": [ - 2481 + 2781 ], "e_league_season_status": [ - 663 + 703 ], "games_per_week": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "is_league_admin": [ - 2481 + 2781 ], "is_roster_locked": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "match_weeks_aggregate": [ - 1412 + 1712 ], "match_weeks_count": [ - 2481 + 2781 ], "max_roster_size": [ - 2481 + 2781 ], "min_roster_size": [ - 2481 + 2781 ], "movements_aggregate": [ - 1593 + 1893 ], "my_registration_aggregate": [ - 1675 + 1975 ], "name": [ - 2481 + 2781 ], "options": [ - 2189 + 2489 ], "player_stats_aggregate": [ - 4531 + 4882 ], "playoff_best_of": [ - 2481 + 2781 ], "playoff_round_best_of": [ - 2481 + 2781 ], "playoff_seats": [ - 2481 + 2781 ], "playoff_stage_type": [ - 2481 + 2781 ], "playoff_third_place_match": [ - 2481 + 2781 ], "promote_count": [ - 2481 + 2781 ], "regular_season_stage_type": [ - 2481 + 2781 ], "relegate_count": [ - 2481 + 2781 ], "relegation_down_count": [ - 2481 + 2781 ], "relegation_playoffs_aggregate": [ - 1453 + 1753 ], "relegation_up_count": [ - 2481 + 2781 ], "roster_lock_at": [ - 2481 + 2781 ], "season_divisions_aggregate": [ - 1535 + 1835 ], "season_number": [ - 2481 + 2781 ], "signup_closes_at": [ - 2481 + 2781 ], "signup_opens_at": [ - 2481 + 2781 ], "standings_aggregate": [ - 4488 + 4839 ], "starts_at": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "team_seasons_aggregate": [ - 1675 + 1975 ], "week_best_of": [ - 2481 + 2781 ], "__typename": [ 78 @@ -26006,7 +30589,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -26014,10 +30597,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1352 + 1652 ], "week_best_of": [ - 1352 + 1652 ], "__typename": [ 78 @@ -26029,7 +30612,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "created_by_steam_id": [ 180 @@ -26047,10 +30630,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_weeks_count": [ 38 @@ -26068,13 +30651,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1352 + 1652 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1103 + 1143 ], "playoff_third_place_match": [ 3 @@ -26083,7 +30666,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1143 ], "relegate_count": [ 38 @@ -26095,25 +30678,25 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4324 ], "signup_opens_at": [ - 4024 + 4324 ], "starts_at": [ - 4024 + 4324 ], "status": [ - 655 + 695 ], "week_best_of": [ - 1352 + 1652 ], "__typename": [ 78 @@ -26271,7 +30854,7 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1581 + 1881 ], "ordering": [ 236 @@ -26285,7 +30868,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "created_by_steam_id": [ 180 @@ -26303,10 +30886,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_weeks_count": [ 38 @@ -26324,13 +30907,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1352 + 1652 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1103 + 1143 ], "playoff_third_place_match": [ 3 @@ -26339,7 +30922,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1143 ], "relegate_count": [ 38 @@ -26351,25 +30934,25 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4324 ], "signup_opens_at": [ - 4024 + 4324 ], "starts_at": [ - 4024 + 4324 ], "status": [ - 655 + 695 ], "week_best_of": [ - 1352 + 1652 ], "__typename": [ 78 @@ -26428,28 +31011,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1558 + 1858 ], "_delete_at_path": [ - 1562 + 1862 ], "_delete_elem": [ - 1563 + 1863 ], "_delete_key": [ - 1564 + 1864 ], "_inc": [ - 1565 + 1865 ], "_prepend": [ - 1574 + 1874 ], "_set": [ - 1576 + 1876 ], "where": [ - 1560 + 1860 ], "__typename": [ 78 @@ -26607,58 +31190,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4024 + 4324 ], "approved_by": [ - 3439 + 3739 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1379 + 1679 ], "computed_to_division_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "e_movement_type": [ - 587 + 627 ], "final_rank": [ 38 ], "final_to_division": [ - 1379 + 1679 ], "final_to_division_id": [ - 4462 + 4762 ], "from_division": [ - 1379 + 1679 ], "from_division_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1712 + 2012 ], "league_team_id": [ - 4462 + 4762 ], "season": [ - 1555 + 1855 ], "type": [ - 592 + 632 ], "__typename": [ 78 @@ -26666,10 +31249,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 1592 + 1892 ], "nodes": [ - 1588 + 1888 ], "__typename": [ 78 @@ -26677,7 +31260,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1591 + 1891 ], "__typename": [ 78 @@ -26685,13 +31268,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1609 + 1909 ], "distinct": [ 3 ], "filter": [ - 1597 + 1897 ], "predicate": [ 39 @@ -26702,13 +31285,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 1595 + 1895 ], "count": [ 38, { "columns": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "distinct": [ @@ -26717,31 +31300,31 @@ export default { } ], "max": [ - 1601 + 1901 ], "min": [ - 1603 + 1903 ], "stddev": [ - 1611 + 1911 ], "stddev_pop": [ - 1613 + 1913 ], "stddev_samp": [ - 1615 + 1915 ], "sum": [ - 1619 + 1919 ], "var_pop": [ - 1623 + 1923 ], "var_samp": [ - 1625 + 1925 ], "variance": [ - 1627 + 1927 ], "__typename": [ 78 @@ -26749,37 +31332,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 1596 + 1896 ], "count": [ - 2481 + 2781 ], "max": [ - 1602 + 1902 ], "min": [ - 1604 + 1904 ], "stddev": [ - 1612 + 1912 ], "stddev_pop": [ - 1614 + 1914 ], "stddev_samp": [ - 1616 + 1916 ], "sum": [ - 1620 + 1920 ], "var_pop": [ - 1624 + 1924 ], "var_samp": [ - 1626 + 1926 ], "variance": [ - 1628 + 1928 ], "__typename": [ 78 @@ -26787,10 +31370,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1600 + 1900 ], "on_conflict": [ - 1606 + 1906 ], "__typename": [ 78 @@ -26809,10 +31392,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -26820,67 +31403,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 1597 + 1897 ], "_not": [ - 1597 + 1897 ], "_or": [ - 1597 + 1897 ], "approved_at": [ - 4025 + 4325 ], "approved_by": [ - 3443 + 3743 ], "approved_by_steam_id": [ 182 ], "computed_to_division": [ - 1383 + 1683 ], "computed_to_division_id": [ - 4464 + 4764 ], "created_at": [ - 4025 + 4325 ], "e_movement_type": [ - 590 + 630 ], "final_rank": [ 39 ], "final_to_division": [ - 1383 + 1683 ], "final_to_division_id": [ - 4464 + 4764 ], "from_division": [ - 1383 + 1683 ], "from_division_id": [ - 4464 + 4764 ], "id": [ - 4464 + 4764 ], "league_season_id": [ - 4464 + 4764 ], "league_team": [ - 1715 + 2015 ], "league_team_id": [ - 4464 + 4764 ], "season": [ - 1560 + 1860 ], "type": [ - 593 + 633 ], "__typename": [ 78 @@ -26900,58 +31483,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4024 + 4324 ], "approved_by": [ - 3450 + 3750 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1390 + 1690 ], "computed_to_division_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "e_movement_type": [ - 598 + 638 ], "final_rank": [ 38 ], "final_to_division": [ - 1390 + 1690 ], "final_to_division_id": [ - 4462 + 4762 ], "from_division": [ - 1390 + 1690 ], "from_division_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1721 + 2021 ], "league_team_id": [ - 4462 + 4762 ], "season": [ - 1570 + 1870 ], "type": [ - 592 + 632 ], "__typename": [ 78 @@ -26959,34 +31542,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4024 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4762 ], "from_division_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -26994,34 +31577,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2481 + 2781 ], "approved_by_steam_id": [ - 2481 + 2781 ], "computed_to_division_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "final_to_division_id": [ - 2481 + 2781 ], "from_division_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27029,34 +31612,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4024 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4762 ], "from_division_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -27064,34 +31647,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2481 + 2781 ], "approved_by_steam_id": [ - 2481 + 2781 ], "computed_to_division_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "final_to_division_id": [ - 2481 + 2781 ], "from_division_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27102,7 +31685,7 @@ export default { 38 ], "returning": [ - 1588 + 1888 ], "__typename": [ 78 @@ -27110,13 +31693,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 1598 + 1898 ], "update_columns": [ - 1621 + 1921 ], "where": [ - 1597 + 1897 ], "__typename": [ 78 @@ -27124,58 +31707,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2481 + 2781 ], "approved_by": [ - 3452 + 3752 ], "approved_by_steam_id": [ - 2481 + 2781 ], "computed_to_division": [ - 1392 + 1692 ], "computed_to_division_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "e_movement_type": [ - 600 + 640 ], "final_rank": [ - 2481 + 2781 ], "final_to_division": [ - 1392 + 1692 ], "final_to_division_id": [ - 2481 + 2781 ], "from_division": [ - 1392 + 1692 ], "from_division_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team": [ - 1723 + 2023 ], "league_team_id": [ - 2481 + 2781 ], "season": [ - 1572 + 1872 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27183,7 +31766,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -27192,37 +31775,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4024 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4762 ], "from_division_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "type": [ - 592 + 632 ], "__typename": [ 78 @@ -27241,10 +31824,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27263,10 +31846,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27285,10 +31868,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27296,7 +31879,7 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1618 + 1918 ], "ordering": [ 236 @@ -27307,37 +31890,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4024 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4762 ], "from_division_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "type": [ - 592 + 632 ], "__typename": [ 78 @@ -27356,10 +31939,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27368,13 +31951,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1599 + 1899 ], "_set": [ - 1610 + 1910 ], "where": [ - 1597 + 1897 ], "__typename": [ 78 @@ -27393,10 +31976,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27415,10 +31998,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27437,10 +32020,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2481 + 2781 ], "final_rank": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27448,28 +32031,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4024 + 4324 ], "league_team_season_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4324 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1103 ], "team_season": [ - 1670 + 1970 ], "__typename": [ 78 @@ -27477,10 +32060,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 1633 + 1933 ], "nodes": [ - 1629 + 1929 ], "__typename": [ 78 @@ -27488,7 +32071,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1632 + 1932 ], "__typename": [ 78 @@ -27496,13 +32079,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1650 + 1950 ], "distinct": [ 3 ], "filter": [ - 1638 + 1938 ], "predicate": [ 39 @@ -27513,13 +32096,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 1636 + 1936 ], "count": [ 38, { "columns": [ - 1650, + 1950, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -27528,31 +32111,31 @@ export default { } ], "max": [ - 1642 + 1942 ], "min": [ - 1644 + 1944 ], "stddev": [ - 1652 + 1952 ], "stddev_pop": [ - 1654 + 1954 ], "stddev_samp": [ - 1656 + 1956 ], "sum": [ - 1660 + 1960 ], "var_pop": [ - 1664 + 1964 ], "var_samp": [ - 1666 + 1966 ], "variance": [ - 1668 + 1968 ], "__typename": [ 78 @@ -27560,37 +32143,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1637 + 1937 ], "count": [ - 2481 + 2781 ], "max": [ - 1643 + 1943 ], "min": [ - 1645 + 1945 ], "stddev": [ - 1653 + 1953 ], "stddev_pop": [ - 1655 + 1955 ], "stddev_samp": [ - 1657 + 1957 ], "sum": [ - 1661 + 1961 ], "var_pop": [ - 1665 + 1965 ], "var_samp": [ - 1667 + 1967 ], "variance": [ - 1669 + 1969 ], "__typename": [ 78 @@ -27598,10 +32181,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1641 + 1941 ], "on_conflict": [ - 1647 + 1947 ], "__typename": [ 78 @@ -27617,7 +32200,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27625,37 +32208,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 1638 + 1938 ], "_not": [ - 1638 + 1938 ], "_or": [ - 1638 + 1938 ], "added_at": [ - 4025 + 4325 ], "league_team_season_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 ], "removed_at": [ - 4025 + 4325 ], "removed_reason": [ 80 ], "status": [ - 1064 + 1104 ], "team_season": [ - 1679 + 1979 ], "__typename": [ 78 @@ -27672,28 +32255,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4024 + 4324 ], "league_team_season_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4324 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1103 ], "team_season": [ - 1688 + 1988 ], "__typename": [ 78 @@ -27701,16 +32284,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4024 + 4324 ], "league_team_season_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4324 ], "removed_reason": [ 78 @@ -27721,19 +32304,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "removed_at": [ - 2481 + 2781 ], "removed_reason": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27741,16 +32324,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4024 + 4324 ], "league_team_season_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4324 ], "removed_reason": [ 78 @@ -27761,19 +32344,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "removed_at": [ - 2481 + 2781 ], "removed_reason": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27784,7 +32367,7 @@ export default { 38 ], "returning": [ - 1629 + 1929 ], "__typename": [ 78 @@ -27792,13 +32375,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 1639 + 1939 ], "update_columns": [ - 1662 + 1962 ], "where": [ - 1638 + 1938 ], "__typename": [ 78 @@ -27806,28 +32389,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "removed_at": [ - 2481 + 2781 ], "removed_reason": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "team_season": [ - 1690 + 1990 ], "__typename": [ 78 @@ -27835,7 +32418,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -27847,22 +32430,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4024 + 4324 ], "league_team_season_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4324 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1103 ], "__typename": [ 78 @@ -27878,7 +32461,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27894,7 +32477,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27910,7 +32493,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27918,7 +32501,7 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 1659 + 1959 ], "ordering": [ 236 @@ -27929,22 +32512,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4024 + 4324 ], "league_team_season_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4324 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1103 ], "__typename": [ 78 @@ -27960,7 +32543,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -27969,13 +32552,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1640 + 1940 ], "_set": [ - 1651 + 1951 ], "where": [ - 1638 + 1938 ], "__typename": [ 78 @@ -27991,7 +32574,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28007,7 +32590,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28023,7 +32606,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28031,55 +32614,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1379 + 1679 ], "assigned_division_id": [ - 4462 + 4762 ], "captain": [ - 3439 + 3739 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "decline_reason": [ 78 ], "e_registration_status": [ - 629 + 669 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1712 + 2012 ], "league_team_id": [ - 4462 + 4762 ], "registered_by": [ - 3439 + 3739 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1379 + 1679 ], "requested_division_id": [ - 4462 + 4762 ], "roster": [ - 1629, + 1929, { "distinct_on": [ - 1650, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -28089,19 +32672,19 @@ export default { 38 ], "order_by": [ - 1648, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1938 ] } ], "roster_aggregate": [ - 1630, + 1930, { "distinct_on": [ - 1650, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -28111,28 +32694,28 @@ export default { 38 ], "order_by": [ - 1648, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1938 ] } ], "season": [ - 1555 + 1855 ], "seed": [ 38 ], "status": [ - 634 + 674 ], "tournament_team": [ - 4287 + 4587 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -28140,10 +32723,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 1674 + 1974 ], "nodes": [ - 1670 + 1970 ], "__typename": [ 78 @@ -28151,7 +32734,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 1673 + 1973 ], "__typename": [ 78 @@ -28159,13 +32742,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 1692 + 1992 ], "distinct": [ 3 ], "filter": [ - 1679 + 1979 ], "predicate": [ 39 @@ -28176,13 +32759,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 1677 + 1977 ], "count": [ 38, { "columns": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -28191,31 +32774,31 @@ export default { } ], "max": [ - 1683 + 1983 ], "min": [ - 1685 + 1985 ], "stddev": [ - 1694 + 1994 ], "stddev_pop": [ - 1696 + 1996 ], "stddev_samp": [ - 1698 + 1998 ], "sum": [ - 1702 + 2002 ], "var_pop": [ - 1706 + 2006 ], "var_samp": [ - 1708 + 2008 ], "variance": [ - 1710 + 2010 ], "__typename": [ 78 @@ -28223,37 +32806,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 1678 + 1978 ], "count": [ - 2481 + 2781 ], "max": [ - 1684 + 1984 ], "min": [ - 1686 + 1986 ], "stddev": [ - 1695 + 1995 ], "stddev_pop": [ - 1697 + 1997 ], "stddev_samp": [ - 1699 + 1999 ], "sum": [ - 1703 + 2003 ], "var_pop": [ - 1707 + 2007 ], "var_samp": [ - 1709 + 2009 ], "variance": [ - 1711 + 2011 ], "__typename": [ 78 @@ -28261,10 +32844,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 1682 + 1982 ], "on_conflict": [ - 1689 + 1989 ], "__typename": [ 78 @@ -28286,13 +32869,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28300,79 +32883,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 1679 + 1979 ], "_not": [ - 1679 + 1979 ], "_or": [ - 1679 + 1979 ], "assigned_division": [ - 1383 + 1683 ], "assigned_division_id": [ - 4464 + 4764 ], "captain": [ - 3443 + 3743 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4325 ], "decline_reason": [ 80 ], "e_registration_status": [ - 632 + 672 ], "id": [ - 4464 + 4764 ], "league_season_id": [ - 4464 + 4764 ], "league_team": [ - 1715 + 2015 ], "league_team_id": [ - 4464 + 4764 ], "registered_by": [ - 3443 + 3743 ], "registered_by_steam_id": [ 182 ], "requested_division": [ - 1383 + 1683 ], "requested_division_id": [ - 4464 + 4764 ], "roster": [ - 1638 + 1938 ], "roster_aggregate": [ - 1631 + 1931 ], "season": [ - 1560 + 1860 ], "seed": [ 39 ], "status": [ - 635 + 675 ], "tournament_team": [ - 4296 + 4596 ], "tournament_team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -28395,67 +32978,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1390 + 1690 ], "assigned_division_id": [ - 4462 + 4762 ], "captain": [ - 3450 + 3750 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "decline_reason": [ 78 ], "e_registration_status": [ - 640 + 680 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1721 + 2021 ], "league_team_id": [ - 4462 + 4762 ], "registered_by": [ - 3450 + 3750 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1390 + 1690 ], "requested_division_id": [ - 4462 + 4762 ], "roster": [ - 1635 + 1935 ], "season": [ - 1570 + 1870 ], "seed": [ 38 ], "status": [ - 634 + 674 ], "tournament_team": [ - 4305 + 4605 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -28463,37 +33046,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4462 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4762 ], "seed": [ 38 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -28501,37 +33084,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2481 + 2781 ], "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "decline_reason": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "requested_division_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28539,37 +33122,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4462 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4762 ], "seed": [ 38 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -28577,37 +33160,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2481 + 2781 ], "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "decline_reason": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "requested_division_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28618,7 +33201,7 @@ export default { 38 ], "returning": [ - 1670 + 1970 ], "__typename": [ 78 @@ -28626,10 +33209,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 1682 + 1982 ], "on_conflict": [ - 1689 + 1989 ], "__typename": [ 78 @@ -28637,13 +33220,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 1680 + 1980 ], "update_columns": [ - 1704 + 2004 ], "where": [ - 1679 + 1979 ], "__typename": [ 78 @@ -28651,67 +33234,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1392 + 1692 ], "assigned_division_id": [ - 2481 + 2781 ], "captain": [ - 3452 + 3752 ], "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "decline_reason": [ - 2481 + 2781 ], "e_registration_status": [ - 642 + 682 ], "id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team": [ - 1723 + 2023 ], "league_team_id": [ - 2481 + 2781 ], "registered_by": [ - 3452 + 3752 ], "registered_by_steam_id": [ - 2481 + 2781 ], "requested_division": [ - 1392 + 1692 ], "requested_division_id": [ - 2481 + 2781 ], "roster_aggregate": [ - 1634 + 1934 ], "season": [ - 1572 + 1872 ], "seed": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "tournament_team": [ - 4307 + 4607 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28719,7 +33302,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -28728,40 +33311,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4462 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4762 ], "seed": [ 38 ], "status": [ - 634 + 674 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -28783,13 +33366,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28811,13 +33394,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28839,13 +33422,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28853,7 +33436,7 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 1701 + 2001 ], "ordering": [ 236 @@ -28864,40 +33447,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4462 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4762 ], "seed": [ 38 ], "status": [ - 634 + 674 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -28919,13 +33502,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28934,13 +33517,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 1681 + 1981 ], "_set": [ - 1693 + 1993 ], "where": [ - 1679 + 1979 ], "__typename": [ 78 @@ -28962,13 +33545,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -28990,13 +33573,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -29018,13 +33601,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "registered_by_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -29032,16 +33615,16 @@ export default { }, "league_teams": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "movements": [ - 1588, + 1888, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -29051,19 +33634,19 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "movements_aggregate": [ - 1589, + 1889, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -29073,25 +33656,25 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "team_seasons": [ - 1670, + 1970, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29101,19 +33684,19 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], "team_seasons_aggregate": [ - 1671, + 1971, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29123,11 +33706,11 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], @@ -29137,10 +33720,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 1714 + 2014 ], "nodes": [ - 1712 + 2012 ], "__typename": [ 78 @@ -29151,7 +33734,7 @@ export default { 38, { "columns": [ - 1725, + 2025, "[league_teams_select_column!]" ], "distinct": [ @@ -29160,10 +33743,10 @@ export default { } ], "max": [ - 1718 + 2018 ], "min": [ - 1719 + 2019 ], "__typename": [ 78 @@ -29171,37 +33754,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 1715 + 2015 ], "_not": [ - 1715 + 2015 ], "_or": [ - 1715 + 2015 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "movements": [ - 1597 + 1897 ], "movements_aggregate": [ - 1590 + 1890 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "team_seasons": [ - 1679 + 1979 ], "team_seasons_aggregate": [ - 1672 + 1972 ], "__typename": [ 78 @@ -29210,22 +33793,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "movements": [ - 1594 + 1894 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "team_seasons": [ - 1676 + 1976 ], "__typename": [ 78 @@ -29233,13 +33816,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29247,13 +33830,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29264,7 +33847,7 @@ export default { 38 ], "returning": [ - 1712 + 2012 ], "__typename": [ 78 @@ -29272,10 +33855,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 1717 + 2017 ], "on_conflict": [ - 1722 + 2022 ], "__typename": [ 78 @@ -29283,13 +33866,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 1716 + 2016 ], "update_columns": [ - 1729 + 2029 ], "where": [ - 1715 + 2015 ], "__typename": [ 78 @@ -29297,22 +33880,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "movements_aggregate": [ - 1593 + 1893 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "team_seasons_aggregate": [ - 1675 + 1975 ], "__typename": [ 78 @@ -29320,7 +33903,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29329,13 +33912,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29343,7 +33926,7 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 1728 + 2028 ], "ordering": [ 236 @@ -29354,13 +33937,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29369,10 +33952,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 1726 + 2026 ], "where": [ - 1715 + 2015 ], "__typename": [ 78 @@ -29380,22 +33963,22 @@ export default { }, "lobbies": { "access": [ - 676 + 716 ], "created_at": [ - 4024 + 4324 ], "e_lobby_access": [ - 671 + 711 ], "id": [ - 4462 + 4762 ], "players": [ - 1750, + 2050, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -29405,19 +33988,19 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], "players_aggregate": [ - 1751, + 2051, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -29427,11 +34010,11 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], @@ -29441,10 +34024,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 1733 + 2033 ], "nodes": [ - 1731 + 2031 ], "__typename": [ 78 @@ -29455,7 +34038,7 @@ export default { 38, { "columns": [ - 1744, + 2044, "[lobbies_select_column!]" ], "distinct": [ @@ -29464,10 +34047,10 @@ export default { } ], "max": [ - 1737 + 2037 ], "min": [ - 1738 + 2038 ], "__typename": [ 78 @@ -29475,31 +34058,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 1734 + 2034 ], "_not": [ - 1734 + 2034 ], "_or": [ - 1734 + 2034 ], "access": [ - 677 + 717 ], "created_at": [ - 4025 + 4325 ], "e_lobby_access": [ - 674 + 714 ], "id": [ - 4464 + 4764 ], "players": [ - 1761 + 2061 ], "players_aggregate": [ - 1752 + 2052 ], "__typename": [ 78 @@ -29508,19 +34091,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 676 + 716 ], "created_at": [ - 4024 + 4324 ], "e_lobby_access": [ - 682 + 722 ], "id": [ - 4462 + 4762 ], "players": [ - 1758 + 2058 ], "__typename": [ 78 @@ -29528,10 +34111,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29539,10 +34122,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29553,7 +34136,7 @@ export default { 38 ], "returning": [ - 1731 + 2031 ], "__typename": [ 78 @@ -29561,10 +34144,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 1736 + 2036 ], "on_conflict": [ - 1741 + 2041 ], "__typename": [ 78 @@ -29572,13 +34155,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 1735 + 2035 ], "update_columns": [ - 1748 + 2048 ], "where": [ - 1734 + 2034 ], "__typename": [ 78 @@ -29586,19 +34169,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "e_lobby_access": [ - 684 + 724 ], "id": [ - 2481 + 2781 ], "players_aggregate": [ - 1757 + 2057 ], "__typename": [ 78 @@ -29606,7 +34189,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29615,13 +34198,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 676 + 716 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29629,7 +34212,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 1747 + 2047 ], "ordering": [ 236 @@ -29640,13 +34223,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 676 + 716 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -29655,10 +34238,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 1745 + 2045 ], "where": [ - 1734 + 2034 ], "__typename": [ 78 @@ -29672,16 +34255,16 @@ export default { 180 ], "lobby": [ - 1731 + 2031 ], "lobby_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "status": [ - 697 + 737 ], "steam_id": [ 180 @@ -29692,10 +34275,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 1756 + 2056 ], "nodes": [ - 1750 + 2050 ], "__typename": [ 78 @@ -29703,13 +34286,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 1753 + 2053 ], "bool_or": [ - 1754 + 2054 ], "count": [ - 1755 + 2055 ], "__typename": [ 78 @@ -29717,13 +34300,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1774 + 2074 ], "distinct": [ 3 ], "filter": [ - 1761 + 2061 ], "predicate": [ 4 @@ -29734,13 +34317,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1775 + 2075 ], "distinct": [ 3 ], "filter": [ - 1761 + 2061 ], "predicate": [ 4 @@ -29751,13 +34334,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1773 + 2073 ], "distinct": [ 3 ], "filter": [ - 1761 + 2061 ], "predicate": [ 39 @@ -29768,13 +34351,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 1759 + 2059 ], "count": [ 38, { "columns": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "distinct": [ @@ -29783,31 +34366,31 @@ export default { } ], "max": [ - 1765 + 2065 ], "min": [ - 1767 + 2067 ], "stddev": [ - 1777 + 2077 ], "stddev_pop": [ - 1779 + 2079 ], "stddev_samp": [ - 1781 + 2081 ], "sum": [ - 1785 + 2085 ], "var_pop": [ - 1789 + 2089 ], "var_samp": [ - 1791 + 2091 ], "variance": [ - 1793 + 2093 ], "__typename": [ 78 @@ -29815,37 +34398,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 1760 + 2060 ], "count": [ - 2481 + 2781 ], "max": [ - 1766 + 2066 ], "min": [ - 1768 + 2068 ], "stddev": [ - 1778 + 2078 ], "stddev_pop": [ - 1780 + 2080 ], "stddev_samp": [ - 1782 + 2082 ], "sum": [ - 1786 + 2086 ], "var_pop": [ - 1790 + 2090 ], "var_samp": [ - 1792 + 2092 ], "variance": [ - 1794 + 2094 ], "__typename": [ 78 @@ -29853,10 +34436,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 1764 + 2064 ], "on_conflict": [ - 1770 + 2070 ], "__typename": [ 78 @@ -29875,10 +34458,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -29886,13 +34469,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 1761 + 2061 ], "_not": [ - 1761 + 2061 ], "_or": [ - 1761 + 2061 ], "captain": [ 4 @@ -29901,16 +34484,16 @@ export default { 182 ], "lobby": [ - 1734 + 2034 ], "lobby_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "status": [ - 698 + 738 ], "steam_id": [ 182 @@ -29939,16 +34522,16 @@ export default { 180 ], "lobby": [ - 1740 + 2040 ], "lobby_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "status": [ - 697 + 737 ], "steam_id": [ 180 @@ -29962,7 +34545,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -29973,13 +34556,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "lobby_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -29990,7 +34573,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -30001,13 +34584,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "lobby_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30018,7 +34601,7 @@ export default { 38 ], "returning": [ - 1750 + 2050 ], "__typename": [ 78 @@ -30026,13 +34609,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 1762 + 2062 ], "update_columns": [ - 1787 + 2087 ], "where": [ - 1761 + 2061 ], "__typename": [ 78 @@ -30040,25 +34623,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "lobby": [ - 1742 + 2042 ], "lobby_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "status": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30066,7 +34649,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -30086,10 +34669,10 @@ export default { 180 ], "lobby_id": [ - 4462 + 4762 ], "status": [ - 697 + 737 ], "steam_id": [ 180 @@ -30111,10 +34694,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30133,10 +34716,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30155,10 +34738,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30166,7 +34749,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1784 + 2084 ], "ordering": [ 236 @@ -30183,10 +34766,10 @@ export default { 180 ], "lobby_id": [ - 4462 + 4762 ], "status": [ - 697 + 737 ], "steam_id": [ 180 @@ -30208,10 +34791,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30220,13 +34803,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1763 + 2063 ], "_set": [ - 1776 + 2076 ], "where": [ - 1761 + 2061 ], "__typename": [ 78 @@ -30245,10 +34828,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30267,10 +34850,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30289,10 +34872,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30300,19 +34883,19 @@ export default { }, "map_pools": { "e_type": [ - 712 + 752 ], "enabled": [ 3 ], "id": [ - 4462 + 4762 ], "maps": [ - 5053, + 5404, { "distinct_on": [ - 5070, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30322,19 +34905,19 @@ export default { 38 ], "order_by": [ - 5069, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5413 ] } ], "maps_aggregate": [ - 5054, + 5405, { "distinct_on": [ - 5070, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30344,11 +34927,11 @@ export default { 38 ], "order_by": [ - 5069, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5413 ] } ], @@ -30356,7 +34939,7 @@ export default { 3 ], "type": [ - 717 + 757 ], "__typename": [ 78 @@ -30364,10 +34947,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 1797 + 2097 ], "nodes": [ - 1795 + 2095 ], "__typename": [ 78 @@ -30378,7 +34961,7 @@ export default { 38, { "columns": [ - 1808, + 2108, "[map_pools_select_column!]" ], "distinct": [ @@ -30387,10 +34970,10 @@ export default { } ], "max": [ - 1801 + 2101 ], "min": [ - 1802 + 2102 ], "__typename": [ 78 @@ -30398,34 +34981,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 1798 + 2098 ], "_not": [ - 1798 + 2098 ], "_or": [ - 1798 + 2098 ], "e_type": [ - 715 + 755 ], "enabled": [ 4 ], "id": [ - 4464 + 4764 ], "maps": [ - 5062 + 5413 ], "maps_aggregate": [ - 5055 + 5406 ], "seed": [ 4 ], "type": [ - 718 + 758 ], "__typename": [ 78 @@ -30434,22 +35017,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 723 + 763 ], "enabled": [ 3 ], "id": [ - 4462 + 4762 ], "maps": [ - 5061 + 5412 ], "seed": [ 3 ], "type": [ - 717 + 757 ], "__typename": [ 78 @@ -30457,7 +35040,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -30465,7 +35048,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -30476,7 +35059,7 @@ export default { 38 ], "returning": [ - 1795 + 2095 ], "__typename": [ 78 @@ -30484,10 +35067,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 1800 + 2100 ], "on_conflict": [ - 1805 + 2105 ], "__typename": [ 78 @@ -30495,13 +35078,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 1799 + 2099 ], "update_columns": [ - 1812 + 2112 ], "where": [ - 1798 + 2098 ], "__typename": [ 78 @@ -30509,22 +35092,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 725 + 765 ], "enabled": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "maps_aggregate": [ - 5060 + 5411 ], "seed": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30532,7 +35115,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -30544,13 +35127,13 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "seed": [ 3 ], "type": [ - 717 + 757 ], "__typename": [ 78 @@ -30558,7 +35141,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 1811 + 2111 ], "ordering": [ 236 @@ -30572,13 +35155,13 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "seed": [ 3 ], "type": [ - 717 + 757 ], "__typename": [ 78 @@ -30587,10 +35170,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1809 + 2109 ], "where": [ - 1798 + 2098 ], "__typename": [ 78 @@ -30601,22 +35184,22 @@ export default { 3 ], "e_match_type": [ - 815 + 855 ], "enabled": [ 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "match_maps": [ - 2134, + 2434, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -30626,19 +35209,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_maps_aggregate": [ - 2135, + 2435, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -30648,19 +35231,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_veto_picks": [ - 2110, + 2410, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -30670,19 +35253,19 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "match_veto_picks_aggregate": [ - 2111, + 2411, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -30692,11 +35275,11 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], @@ -30710,7 +35293,7 @@ export default { 78 ], "type": [ - 820 + 860 ], "workshop_map_id": [ 78 @@ -30721,10 +35304,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 1820 + 2120 ], "nodes": [ - 1814 + 2114 ], "__typename": [ 78 @@ -30732,13 +35315,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 1817 + 2117 ], "bool_or": [ - 1818 + 2118 ], "count": [ - 1819 + 2119 ], "__typename": [ 78 @@ -30746,13 +35329,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1836 + 2136 ], "distinct": [ 3 ], "filter": [ - 1823 + 2123 ], "predicate": [ 4 @@ -30763,13 +35346,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1837 + 2137 ], "distinct": [ 3 ], "filter": [ - 1823 + 2123 ], "predicate": [ 4 @@ -30780,13 +35363,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1835 + 2135 ], "distinct": [ 3 ], "filter": [ - 1823 + 2123 ], "predicate": [ 39 @@ -30800,7 +35383,7 @@ export default { 38, { "columns": [ - 1835, + 2135, "[maps_select_column!]" ], "distinct": [ @@ -30809,10 +35392,10 @@ export default { } ], "max": [ - 1826 + 2126 ], "min": [ - 1828 + 2128 ], "__typename": [ 78 @@ -30820,13 +35403,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2481 + 2781 ], "max": [ - 1827 + 2127 ], "min": [ - 1829 + 2129 ], "__typename": [ 78 @@ -30834,10 +35417,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 1825 + 2125 ], "on_conflict": [ - 1832 + 2132 ], "__typename": [ 78 @@ -30845,40 +35428,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 1823 + 2123 ], "_not": [ - 1823 + 2123 ], "_or": [ - 1823 + 2123 ], "active_pool": [ 4 ], "e_match_type": [ - 818 + 858 ], "enabled": [ 4 ], "id": [ - 4464 + 4764 ], "label": [ 80 ], "match_maps": [ - 2143 + 2443 ], "match_maps_aggregate": [ - 2136 + 2436 ], "match_veto_picks": [ - 2117 + 2417 ], "match_veto_picks_aggregate": [ - 2112 + 2412 ], "name": [ 80 @@ -30890,7 +35473,7 @@ export default { 80 ], "type": [ - 821 + 861 ], "workshop_map_id": [ 80 @@ -30905,22 +35488,22 @@ export default { 3 ], "e_match_type": [ - 826 + 866 ], "enabled": [ 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "match_maps": [ - 2140 + 2440 ], "match_veto_picks": [ - 2116 + 2416 ], "name": [ 78 @@ -30932,7 +35515,7 @@ export default { 78 ], "type": [ - 820 + 860 ], "workshop_map_id": [ 78 @@ -30943,7 +35526,7 @@ export default { }, "maps_max_fields": { "id": [ - 4462 + 4762 ], "label": [ 78 @@ -30966,22 +35549,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "patch": [ - 2481 + 2781 ], "poster": [ - 2481 + 2781 ], "workshop_map_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -30989,7 +35572,7 @@ export default { }, "maps_min_fields": { "id": [ - 4462 + 4762 ], "label": [ 78 @@ -31012,22 +35595,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "patch": [ - 2481 + 2781 ], "poster": [ - 2481 + 2781 ], "workshop_map_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -31038,7 +35621,7 @@ export default { 38 ], "returning": [ - 1814 + 2114 ], "__typename": [ 78 @@ -31046,10 +35629,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 1825 + 2125 ], "on_conflict": [ - 1832 + 2132 ], "__typename": [ 78 @@ -31057,13 +35640,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 1824 + 2124 ], "update_columns": [ - 1841 + 2141 ], "where": [ - 1823 + 2123 ], "__typename": [ 78 @@ -31071,40 +35654,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2481 + 2781 ], "e_match_type": [ - 828 + 868 ], "enabled": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "match_maps_aggregate": [ - 2139 + 2439 ], "match_veto_picks_aggregate": [ - 2115 + 2415 ], "name": [ - 2481 + 2781 ], "patch": [ - 2481 + 2781 ], "poster": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "workshop_map_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -31112,7 +35695,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -31129,7 +35712,7 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 @@ -31144,7 +35727,7 @@ export default { 78 ], "type": [ - 820 + 860 ], "workshop_map_id": [ 78 @@ -31155,7 +35738,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 1840 + 2140 ], "ordering": [ 236 @@ -31172,7 +35755,7 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 @@ -31187,7 +35770,7 @@ export default { 78 ], "type": [ - 820 + 860 ], "workshop_map_id": [ 78 @@ -31199,10 +35782,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 1838 + 2138 ], "where": [ - 1823 + 2123 ], "__typename": [ 78 @@ -31210,7 +35793,7 @@ export default { }, "match_clips": { "created_at": [ - 4024 + 4324 ], "download_url": [ 78 @@ -31222,22 +35805,22 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "kills_count": [ 38 ], "match_map": [ - 2134 + 2434 ], "match_map_demo": [ - 2018 + 2318 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "render_jobs": [ 185, @@ -31290,7 +35873,7 @@ export default { 180 ], "target": [ - 3439 + 3739 ], "target_steam_id": [ 180 @@ -31305,7 +35888,7 @@ export default { 78 ], "user": [ - 3439 + 3739 ], "user_steam_id": [ 180 @@ -31314,7 +35897,7 @@ export default { 38 ], "visibility": [ - 738 + 778 ], "__typename": [ 78 @@ -31322,10 +35905,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 1847 + 2147 ], "nodes": [ - 1843 + 2143 ], "__typename": [ 78 @@ -31333,7 +35916,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 1846 + 2146 ], "__typename": [ 78 @@ -31341,13 +35924,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1865 + 2165 ], "distinct": [ 3 ], "filter": [ - 1852 + 2152 ], "predicate": [ 39 @@ -31358,13 +35941,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 1850 + 2150 ], "count": [ 38, { "columns": [ - 1865, + 2165, "[match_clips_select_column!]" ], "distinct": [ @@ -31373,31 +35956,31 @@ export default { } ], "max": [ - 1856 + 2156 ], "min": [ - 1858 + 2158 ], "stddev": [ - 1867 + 2167 ], "stddev_pop": [ - 1869 + 2169 ], "stddev_samp": [ - 1871 + 2171 ], "sum": [ - 1875 + 2175 ], "var_pop": [ - 1879 + 2179 ], "var_samp": [ - 1881 + 2181 ], "variance": [ - 1883 + 2183 ], "__typename": [ 78 @@ -31405,37 +35988,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 1851 + 2151 ], "count": [ - 2481 + 2781 ], "max": [ - 1857 + 2157 ], "min": [ - 1859 + 2159 ], "stddev": [ - 1868 + 2168 ], "stddev_pop": [ - 1870 + 2170 ], "stddev_samp": [ - 1872 + 2172 ], "sum": [ - 1876 + 2176 ], "var_pop": [ - 1880 + 2180 ], "var_samp": [ - 1882 + 2182 ], "variance": [ - 1884 + 2184 ], "__typename": [ 78 @@ -31443,10 +36026,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 1855 + 2155 ], "on_conflict": [ - 1862 + 2162 ], "__typename": [ 78 @@ -31480,25 +36063,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -31506,16 +36089,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 1852 + 2152 ], "_not": [ - 1852 + 2152 ], "_or": [ - 1852 + 2152 ], "created_at": [ - 4025 + 4325 ], "download_url": [ 80 @@ -31527,22 +36110,22 @@ export default { 80 ], "id": [ - 4464 + 4764 ], "kills_count": [ 39 ], "match_map": [ - 2143 + 2443 ], "match_map_demo": [ - 2030 + 2330 ], "match_map_demo_id": [ - 4464 + 4764 ], "match_map_id": [ - 4464 + 4764 ], "render_jobs": [ 197 @@ -31557,7 +36140,7 @@ export default { 182 ], "target": [ - 3443 + 3743 ], "target_steam_id": [ 182 @@ -31572,7 +36155,7 @@ export default { 80 ], "user": [ - 3443 + 3743 ], "user_steam_id": [ 182 @@ -31581,7 +36164,7 @@ export default { 39 ], "visibility": [ - 739 + 779 ], "__typename": [ 78 @@ -31616,7 +36199,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4024 + 4324 ], "duration_ms": [ 38 @@ -31625,22 +36208,22 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "kills_count": [ 38 ], "match_map": [ - 2152 + 2452 ], "match_map_demo": [ - 2042 + 2342 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "render_jobs": [ 194 @@ -31652,7 +36235,7 @@ export default { 180 ], "target": [ - 3450 + 3750 ], "target_steam_id": [ 180 @@ -31664,7 +36247,7 @@ export default { 78 ], "user": [ - 3450 + 3750 ], "user_steam_id": [ 180 @@ -31673,7 +36256,7 @@ export default { 38 ], "visibility": [ - 738 + 778 ], "__typename": [ 78 @@ -31681,7 +36264,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4024 + 4324 ], "download_url": [ 78 @@ -31693,16 +36276,16 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -31734,46 +36317,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2481 + 2781 ], "duration_ms": [ - 2481 + 2781 ], "file": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "thumbnail_url": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -31781,7 +36364,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4024 + 4324 ], "download_url": [ 78 @@ -31793,16 +36376,16 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -31834,46 +36417,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2481 + 2781 ], "duration_ms": [ - 2481 + 2781 ], "file": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "thumbnail_url": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -31884,7 +36467,7 @@ export default { 38 ], "returning": [ - 1843 + 2143 ], "__typename": [ 78 @@ -31892,10 +36475,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 1855 + 2155 ], "on_conflict": [ - 1862 + 2162 ], "__typename": [ 78 @@ -31903,13 +36486,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 1853 + 2153 ], "update_columns": [ - 1877 + 2177 ], "where": [ - 1852 + 2152 ], "__typename": [ 78 @@ -31917,70 +36500,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2481 + 2781 ], "download_url": [ - 2481 + 2781 ], "duration_ms": [ - 2481 + 2781 ], "file": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_demo": [ - 2044 + 2344 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target": [ - 3452 + 3752 ], "target_steam_id": [ - 2481 + 2781 ], "thumbnail_download_url": [ - 2481 + 2781 ], "thumbnail_url": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "user": [ - 3452 + 3752 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "visibility": [ - 2481 + 2781 ], "__typename": [ 78 @@ -31988,7 +36571,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -31997,7 +36580,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4024 + 4324 ], "duration_ms": [ 38 @@ -32006,16 +36589,16 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -32039,7 +36622,7 @@ export default { 38 ], "visibility": [ - 738 + 778 ], "__typename": [ 78 @@ -32073,25 +36656,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32125,25 +36708,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32177,25 +36760,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32203,7 +36786,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 1874 + 2174 ], "ordering": [ 236 @@ -32214,7 +36797,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "duration_ms": [ 38 @@ -32223,16 +36806,16 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -32256,7 +36839,7 @@ export default { 38 ], "visibility": [ - 738 + 778 ], "__typename": [ 78 @@ -32290,25 +36873,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32317,13 +36900,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1854 + 2154 ], "_set": [ - 1866 + 2166 ], "where": [ - 1852 + 2152 ], "__typename": [ 78 @@ -32357,25 +36940,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32409,25 +36992,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32461,25 +37044,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2481 + 2781 ], "kills_count": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "target_steam_id": [ - 2481 + 2781 ], "user_steam_id": [ - 2481 + 2781 ], "views_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32487,52 +37070,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4024 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1229 + 1528 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4324 ], "last_status_at": [ - 4024 + 4324 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_demo": [ - 2018 + 2318 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "status": [ 78 ], "status_history": [ - 1352, + 1652, { "path": [ 78 @@ -32543,7 +37126,7 @@ export default { 78 ], "watcher": [ - 3439 + 3739 ], "watcher_steam_id": [ 180 @@ -32554,10 +37137,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 1889 + 2189 ], "nodes": [ - 1885 + 2185 ], "__typename": [ 78 @@ -32565,7 +37148,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1888 + 2188 ], "__typename": [ 78 @@ -32573,13 +37156,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1911 + 2211 ], "distinct": [ 3 ], "filter": [ - 1895 + 2195 ], "predicate": [ 39 @@ -32590,13 +37173,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1893 + 2193 ], "count": [ 38, { "columns": [ - 1911, + 2211, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -32605,31 +37188,31 @@ export default { } ], "max": [ - 1902 + 2202 ], "min": [ - 1904 + 2204 ], "stddev": [ - 1913 + 2213 ], "stddev_pop": [ - 1915 + 2215 ], "stddev_samp": [ - 1917 + 2217 ], "sum": [ - 1921 + 2221 ], "var_pop": [ - 1925 + 2225 ], "var_samp": [ - 1927 + 2227 ], "variance": [ - 1929 + 2229 ], "__typename": [ 78 @@ -32637,37 +37220,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1894 + 2194 ], "count": [ - 2481 + 2781 ], "max": [ - 1903 + 2203 ], "min": [ - 1905 + 2205 ], "stddev": [ - 1914 + 2214 ], "stddev_pop": [ - 1916 + 2216 ], "stddev_samp": [ - 1918 + 2218 ], "sum": [ - 1922 + 2222 ], "var_pop": [ - 1926 + 2226 ], "var_samp": [ - 1928 + 2228 ], "variance": [ - 1930 + 2230 ], "__typename": [ 78 @@ -32675,7 +37258,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1352 + 1652 ], "__typename": [ 78 @@ -32683,10 +37266,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1901 + 2201 ], "on_conflict": [ - 1907 + 2207 ], "__typename": [ 78 @@ -32702,7 +37285,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32710,67 +37293,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 1895 + 2195 ], "_not": [ - 1895 + 2195 ], "_or": [ - 1895 + 2195 ], "created_at": [ - 4025 + 4325 ], "error_message": [ 80 ], "game_server_node": [ - 1241 + 1540 ], "game_server_node_id": [ 80 ], "id": [ - 4464 + 4764 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4025 + 4325 ], "last_status_at": [ - 4025 + 4325 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_demo": [ - 2030 + 2330 ], "match_map_demo_id": [ - 4464 + 4764 ], "match_map_id": [ - 4464 + 4764 ], "status": [ 80 ], "status_history": [ - 1354 + 1654 ], "stream_url": [ 80 ], "watcher": [ - 3443 + 3743 ], "watcher_steam_id": [ 182 @@ -32814,58 +37397,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4024 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1253 + 1552 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4324 ], "last_status_at": [ - 4024 + 4324 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_demo": [ - 2042 + 2342 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "status": [ 78 ], "status_history": [ - 1352 + 1652 ], "stream_url": [ 78 ], "watcher": [ - 3450 + 3750 ], "watcher_steam_id": [ 180 @@ -32876,7 +37459,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -32885,25 +37468,25 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4324 ], "last_status_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "status": [ 78 @@ -32920,43 +37503,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2481 + 2781 ], "error_message": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "last_activity_at": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "stream_url": [ - 2481 + 2781 ], "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -32964,7 +37547,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -32973,25 +37556,25 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4324 ], "last_status_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "status": [ 78 @@ -33008,43 +37591,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2481 + 2781 ], "error_message": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "last_activity_at": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "stream_url": [ - 2481 + 2781 ], "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33055,7 +37638,7 @@ export default { 38 ], "returning": [ - 1885 + 2185 ], "__typename": [ 78 @@ -33063,13 +37646,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 1896 + 2196 ], "update_columns": [ - 1923 + 2223 ], "where": [ - 1895 + 2195 ], "__typename": [ 78 @@ -33077,61 +37660,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2481 + 2781 ], "error_message": [ - 2481 + 2781 ], "game_server_node": [ - 1255 + 1554 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "last_activity_at": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_demo": [ - 2044 + 2344 ], "match_map_demo_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "status_history": [ - 2481 + 2781 ], "stream_url": [ - 2481 + 2781 ], "watcher": [ - 3452 + 3752 ], "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33139,7 +37722,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -33147,7 +37730,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1352 + 1652 ], "__typename": [ 78 @@ -33156,7 +37739,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -33165,31 +37748,31 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4324 ], "last_status_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "status": [ 78 ], "status_history": [ - 1352 + 1652 ], "stream_url": [ 78 @@ -33211,7 +37794,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33227,7 +37810,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33243,7 +37826,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33251,7 +37834,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1920 + 2220 ], "ordering": [ 236 @@ -33262,7 +37845,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "error_message": [ 78 @@ -33271,31 +37854,31 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4324 ], "last_status_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "status": [ 78 ], "status_history": [ - 1352 + 1652 ], "stream_url": [ 78 @@ -33317,7 +37900,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33326,28 +37909,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1891 + 2191 ], "_delete_at_path": [ - 1897 + 2197 ], "_delete_elem": [ - 1898 + 2198 ], "_delete_key": [ - 1899 + 2199 ], "_inc": [ - 1900 + 2200 ], "_prepend": [ - 1910 + 2210 ], "_set": [ - 1912 + 2212 ], "where": [ - 1895 + 2195 ], "__typename": [ 78 @@ -33363,7 +37946,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33379,7 +37962,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33395,7 +37978,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33412,19 +37995,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3439 + 3739 ], "steam_id": [ 180 @@ -33435,10 +38018,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 1937 + 2237 ], "nodes": [ - 1931 + 2231 ], "__typename": [ 78 @@ -33446,13 +38029,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1934 + 2234 ], "bool_or": [ - 1935 + 2235 ], "count": [ - 1936 + 2236 ], "__typename": [ 78 @@ -33460,13 +38043,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1955 + 2255 ], "distinct": [ 3 ], "filter": [ - 1942 + 2242 ], "predicate": [ 4 @@ -33477,13 +38060,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1956 + 2256 ], "distinct": [ 3 ], "filter": [ - 1942 + 2242 ], "predicate": [ 4 @@ -33494,13 +38077,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1954 + 2254 ], "distinct": [ 3 ], "filter": [ - 1942 + 2242 ], "predicate": [ 39 @@ -33511,13 +38094,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 1940 + 2240 ], "count": [ 38, { "columns": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -33526,31 +38109,31 @@ export default { } ], "max": [ - 1946 + 2246 ], "min": [ - 1948 + 2248 ], "stddev": [ - 1958 + 2258 ], "stddev_pop": [ - 1960 + 2260 ], "stddev_samp": [ - 1962 + 2262 ], "sum": [ - 1966 + 2266 ], "var_pop": [ - 1970 + 2270 ], "var_samp": [ - 1972 + 2272 ], "variance": [ - 1974 + 2274 ], "__typename": [ 78 @@ -33558,37 +38141,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1941 + 2241 ], "count": [ - 2481 + 2781 ], "max": [ - 1947 + 2247 ], "min": [ - 1949 + 2249 ], "stddev": [ - 1959 + 2259 ], "stddev_pop": [ - 1961 + 2261 ], "stddev_samp": [ - 1963 + 2263 ], "sum": [ - 1967 + 2267 ], "var_pop": [ - 1971 + 2271 ], "var_samp": [ - 1973 + 2273 ], "variance": [ - 1975 + 2275 ], "__typename": [ 78 @@ -33596,10 +38179,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1945 + 2245 ], "on_conflict": [ - 1951 + 2251 ], "__typename": [ 78 @@ -33615,7 +38198,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33623,13 +38206,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 1942 + 2242 ], "_not": [ - 1942 + 2242 ], "_or": [ - 1942 + 2242 ], "captain": [ 4 @@ -33641,19 +38224,19 @@ export default { 80 ], "id": [ - 4464 + 4764 ], "lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "placeholder_name": [ 80 ], "player": [ - 3443 + 3743 ], "steam_id": [ 182 @@ -33682,19 +38265,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "lineup": [ - 1994 + 2294 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3450 + 3750 ], "steam_id": [ 180 @@ -33708,10 +38291,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -33725,19 +38308,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "placeholder_name": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33748,10 +38331,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -33765,19 +38348,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "placeholder_name": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33788,7 +38371,7 @@ export default { 38 ], "returning": [ - 1931 + 2231 ], "__typename": [ 78 @@ -33796,13 +38379,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 1943 + 2243 ], "update_columns": [ - 1968 + 2268 ], "where": [ - 1942 + 2242 ], "__typename": [ 78 @@ -33810,31 +38393,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2481 + 2781 ], "checked_in": [ - 2481 + 2781 ], "discord_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "placeholder_name": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33842,7 +38425,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -33862,10 +38445,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -33887,7 +38470,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33903,7 +38486,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33919,7 +38502,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33927,7 +38510,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1965 + 2265 ], "ordering": [ 236 @@ -33947,10 +38530,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -33972,7 +38555,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -33981,13 +38564,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1944 + 2244 ], "_set": [ - 1957 + 2257 ], "where": [ - 1942 + 2242 ], "__typename": [ 78 @@ -34003,7 +38586,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34019,7 +38602,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34035,7 +38618,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34052,16 +38635,16 @@ export default { 3 ], "captain": [ - 4567 + 4918 ], "coach": [ - 3439 + 3739 ], "coach_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "is_on_lineup": [ 3 @@ -34076,10 +38659,10 @@ export default { 3 ], "lineup_players": [ - 1931, + 2231, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -34089,19 +38672,19 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "lineup_players_aggregate": [ - 1932, + 2232, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -34111,25 +38694,25 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_veto_picks": [ - 2110, + 2410, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -34139,19 +38722,19 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "match_veto_picks_aggregate": [ - 2111, + 2411, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -34161,11 +38744,11 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], @@ -34173,10 +38756,10 @@ export default { 78 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "team_name": [ 78 @@ -34187,10 +38770,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 1980 + 2280 ], "nodes": [ - 1976 + 2276 ], "__typename": [ 78 @@ -34198,7 +38781,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 1979 + 2279 ], "__typename": [ 78 @@ -34206,13 +38789,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1998 + 2298 ], "distinct": [ 3 ], "filter": [ - 1985 + 2285 ], "predicate": [ 39 @@ -34223,13 +38806,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 1983 + 2283 ], "count": [ 38, { "columns": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "distinct": [ @@ -34238,31 +38821,31 @@ export default { } ], "max": [ - 1989 + 2289 ], "min": [ - 1991 + 2291 ], "stddev": [ - 2000 + 2300 ], "stddev_pop": [ - 2002 + 2302 ], "stddev_samp": [ - 2004 + 2304 ], "sum": [ - 2008 + 2308 ], "var_pop": [ - 2012 + 2312 ], "var_samp": [ - 2014 + 2314 ], "variance": [ - 2016 + 2316 ], "__typename": [ 78 @@ -34270,37 +38853,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 1984 + 2284 ], "count": [ - 2481 + 2781 ], "max": [ - 1990 + 2290 ], "min": [ - 1992 + 2292 ], "stddev": [ - 2001 + 2301 ], "stddev_pop": [ - 2003 + 2303 ], "stddev_samp": [ - 2005 + 2305 ], "sum": [ - 2009 + 2309 ], "var_pop": [ - 2013 + 2313 ], "var_samp": [ - 2015 + 2315 ], "variance": [ - 2017 + 2317 ], "__typename": [ 78 @@ -34308,10 +38891,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 1988 + 2288 ], "on_conflict": [ - 1995 + 2295 ], "__typename": [ 78 @@ -34327,7 +38910,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34335,13 +38918,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 1985 + 2285 ], "_not": [ - 1985 + 2285 ], "_or": [ - 1985 + 2285 ], "can_pick_map_veto": [ 4 @@ -34353,16 +38936,16 @@ export default { 4 ], "captain": [ - 4571 + 4922 ], "coach": [ - 3443 + 3743 ], "coach_steam_id": [ 182 ], "id": [ - 4464 + 4764 ], "is_on_lineup": [ 4 @@ -34377,31 +38960,31 @@ export default { 4 ], "lineup_players": [ - 1942 + 2242 ], "lineup_players_aggregate": [ - 1933 + 2233 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_veto_picks": [ - 2117 + 2417 ], "match_veto_picks_aggregate": [ - 2112 + 2412 ], "name": [ 80 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "team_name": [ 80 @@ -34421,34 +39004,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4577 + 4928 ], "coach": [ - 3450 + 3750 ], "coach_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "lineup_players": [ - 1939 + 2239 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_veto_picks": [ - 2116 + 2416 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "team_name": [ 78 @@ -34462,16 +39045,16 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "name": [ 78 ], "team_id": [ - 4462 + 4762 ], "team_name": [ 78 @@ -34482,19 +39065,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "team_name": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34505,16 +39088,16 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "name": [ 78 ], "team_id": [ - 4462 + 4762 ], "team_name": [ 78 @@ -34525,19 +39108,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "team_name": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34548,7 +39131,7 @@ export default { 38 ], "returning": [ - 1976 + 2276 ], "__typename": [ 78 @@ -34556,10 +39139,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 1988 + 2288 ], "on_conflict": [ - 1995 + 2295 ], "__typename": [ 78 @@ -34567,13 +39150,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 1986 + 2286 ], "update_columns": [ - 2010 + 2310 ], "where": [ - 1985 + 2285 ], "__typename": [ 78 @@ -34581,61 +39164,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2481 + 2781 ], "can_pick_region_veto": [ - 2481 + 2781 ], "can_update_lineup": [ - 2481 + 2781 ], "captain": [ - 4578 + 4929 ], "coach": [ - 3452 + 3752 ], "coach_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "is_on_lineup": [ - 2481 + 2781 ], "is_picking_map_veto": [ - 2481 + 2781 ], "is_picking_region_veto": [ - 2481 + 2781 ], "is_ready": [ - 2481 + 2781 ], "lineup_players_aggregate": [ - 1938 + 2238 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_veto_picks_aggregate": [ - 2115 + 2415 ], "name": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "team_name": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34643,7 +39226,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -34655,13 +39238,13 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "team_id": [ - 4462 + 4762 ], "team_name": [ 78 @@ -34680,7 +39263,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34696,7 +39279,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34712,7 +39295,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34720,7 +39303,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2007 + 2307 ], "ordering": [ 236 @@ -34734,13 +39317,13 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "team_id": [ - 4462 + 4762 ], "team_name": [ 78 @@ -34759,7 +39342,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34768,13 +39351,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1987 + 2287 ], "_set": [ - 1999 + 2299 ], "where": [ - 1985 + 2285 ], "__typename": [ 78 @@ -34790,7 +39373,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34806,7 +39389,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34822,7 +39405,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -34830,7 +39413,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1352, + 1652, { "path": [ 78 @@ -34882,16 +39465,16 @@ export default { } ], "created_at": [ - 4024 + 4324 ], "cs2_build": [ 78 ], "demo_sessions": [ - 1885, + 2185, { "distinct_on": [ - 1911, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -34901,19 +39484,19 @@ export default { 38 ], "order_by": [ - 1908, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2195 ] } ], "demo_sessions_aggregate": [ - 1886, + 2186, { "distinct_on": [ - 1911, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -34923,11 +39506,11 @@ export default { 38 ], "order_by": [ - 1908, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2195 ] } ], @@ -34944,10 +39527,10 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "kills": [ - 1352, + 1652, { "path": [ 78 @@ -34958,13 +39541,13 @@ export default { 78 ], "match": [ - 2296 + 2596 ], "match_clips": [ - 1843, + 2143, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -34974,19 +39557,19 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_clips_aggregate": [ - 1844, + 2144, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -34996,25 +39579,25 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "metadata_parsed_at": [ - 4024 + 4324 ], "playback_file": [ 78 @@ -35026,7 +39609,7 @@ export default { 78 ], "players": [ - 1352, + 1652, { "path": [ 78 @@ -35034,7 +39617,7 @@ export default { } ], "round_ticks": [ - 1352, + 1652, { "path": [ 78 @@ -35059,10 +39642,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2024 + 2324 ], "nodes": [ - 2018 + 2318 ], "__typename": [ 78 @@ -35070,13 +39653,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2021 + 2321 ], "bool_or": [ - 2022 + 2322 ], "count": [ - 2023 + 2323 ], "__typename": [ 78 @@ -35084,13 +39667,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2048 + 2348 ], "distinct": [ 3 ], "filter": [ - 2030 + 2330 ], "predicate": [ 4 @@ -35101,13 +39684,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2049 + 2349 ], "distinct": [ 3 ], "filter": [ - 2030 + 2330 ], "predicate": [ 4 @@ -35118,13 +39701,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2047 + 2347 ], "distinct": [ 3 ], "filter": [ - 2030 + 2330 ], "predicate": [ 39 @@ -35135,13 +39718,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2028 + 2328 ], "count": [ 38, { "columns": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "distinct": [ @@ -35150,31 +39733,31 @@ export default { } ], "max": [ - 2037 + 2337 ], "min": [ - 2039 + 2339 ], "stddev": [ - 2051 + 2351 ], "stddev_pop": [ - 2053 + 2353 ], "stddev_samp": [ - 2055 + 2355 ], "sum": [ - 2059 + 2359 ], "var_pop": [ - 2063 + 2363 ], "var_samp": [ - 2065 + 2365 ], "variance": [ - 2067 + 2367 ], "__typename": [ 78 @@ -35182,37 +39765,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2029 + 2329 ], "count": [ - 2481 + 2781 ], "max": [ - 2038 + 2338 ], "min": [ - 2040 + 2340 ], "stddev": [ - 2052 + 2352 ], "stddev_pop": [ - 2054 + 2354 ], "stddev_samp": [ - 2056 + 2356 ], "sum": [ - 2060 + 2360 ], "var_pop": [ - 2064 + 2364 ], "var_samp": [ - 2066 + 2366 ], "variance": [ - 2068 + 2368 ], "__typename": [ 78 @@ -35220,16 +39803,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1352 + 1652 ], "kills": [ - 1352 + 1652 ], "players": [ - 1352 + 1652 ], "round_ticks": [ - 1352 + 1652 ], "__typename": [ 78 @@ -35237,10 +39820,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2036 + 2336 ], "on_conflict": [ - 2043 + 2343 ], "__typename": [ 78 @@ -35268,19 +39851,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -35288,16 +39871,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2030 + 2330 ], "_not": [ - 2030 + 2330 ], "_or": [ - 2030 + 2330 ], "bombs": [ - 1354 + 1654 ], "clip_render_jobs": [ 197 @@ -35306,16 +39889,16 @@ export default { 187 ], "created_at": [ - 4025 + 4325 ], "cs2_build": [ 80 ], "demo_sessions": [ - 1895 + 2195 ], "demo_sessions_aggregate": [ - 1887 + 2187 ], "download_url": [ 80 @@ -35330,34 +39913,34 @@ export default { 4 ], "id": [ - 4464 + 4764 ], "kills": [ - 1354 + 1654 ], "map_name": [ 80 ], "match": [ - 2305 + 2605 ], "match_clips": [ - 1852 + 2152 ], "match_clips_aggregate": [ - 1845 + 2145 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "metadata_parsed_at": [ - 4025 + 4325 ], "playback_file": [ 80 @@ -35369,10 +39952,10 @@ export default { 80 ], "players": [ - 1354 + 1654 ], "round_ticks": [ - 1354 + 1654 ], "size": [ 39 @@ -35461,19 +40044,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1352 + 1652 ], "clip_render_jobs": [ 194 ], "created_at": [ - 4024 + 4324 ], "cs2_build": [ 78 ], "demo_sessions": [ - 1892 + 2192 ], "file": [ 78 @@ -35482,31 +40065,31 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "kills": [ - 1352 + 1652 ], "map_name": [ 78 ], "match": [ - 2314 + 2614 ], "match_clips": [ - 1849 + 2149 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "metadata_parsed_at": [ - 4024 + 4324 ], "playback_file": [ 78 @@ -35515,10 +40098,10 @@ export default { 38 ], "players": [ - 1352 + 1652 ], "round_ticks": [ - 1352 + 1652 ], "size": [ 38 @@ -35538,7 +40121,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4024 + 4324 ], "cs2_build": [ 78 @@ -35553,19 +40136,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "metadata_parsed_at": [ - 4024 + 4324 ], "playback_file": [ 78 @@ -35594,49 +40177,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2481 + 2781 ], "cs2_build": [ - 2481 + 2781 ], "duration_seconds": [ - 2481 + 2781 ], "file": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "map_name": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "metadata_parsed_at": [ - 2481 + 2781 ], "playback_file": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "workshop_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -35644,7 +40227,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4024 + 4324 ], "cs2_build": [ 78 @@ -35659,19 +40242,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "metadata_parsed_at": [ - 4024 + 4324 ], "playback_file": [ 78 @@ -35700,49 +40283,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2481 + 2781 ], "cs2_build": [ - 2481 + 2781 ], "duration_seconds": [ - 2481 + 2781 ], "file": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "map_name": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "metadata_parsed_at": [ - 2481 + 2781 ], "playback_file": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "workshop_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -35753,7 +40336,7 @@ export default { 38 ], "returning": [ - 2018 + 2318 ], "__typename": [ 78 @@ -35761,10 +40344,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2036 + 2336 ], "on_conflict": [ - 2043 + 2343 ], "__typename": [ 78 @@ -35772,13 +40355,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2031 + 2331 ], "update_columns": [ - 2061 + 2361 ], "where": [ - 2030 + 2330 ], "__typename": [ 78 @@ -35786,85 +40369,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2481 + 2781 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2481 + 2781 ], "cs2_build": [ - 2481 + 2781 ], "demo_sessions_aggregate": [ - 1890 + 2190 ], "download_url": [ - 2481 + 2781 ], "duration_seconds": [ - 2481 + 2781 ], "file": [ - 2481 + 2781 ], "geometry_validated": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_name": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_clips_aggregate": [ - 1848 + 2148 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "metadata_parsed_at": [ - 2481 + 2781 ], "playback_file": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "playback_url": [ - 2481 + 2781 ], "players": [ - 2481 + 2781 ], "round_ticks": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "workshop_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -35872,7 +40455,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -35880,16 +40463,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1352 + 1652 ], "kills": [ - 1352 + 1652 ], "players": [ - 1352 + 1652 ], "round_ticks": [ - 1352 + 1652 ], "__typename": [ 78 @@ -35900,10 +40483,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1352 + 1652 ], "created_at": [ - 4024 + 4324 ], "cs2_build": [ 78 @@ -35915,22 +40498,22 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "kills": [ - 1352 + 1652 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "metadata_parsed_at": [ - 4024 + 4324 ], "playback_file": [ 78 @@ -35939,10 +40522,10 @@ export default { 38 ], "players": [ - 1352 + 1652 ], "round_ticks": [ - 1352 + 1652 ], "size": [ 38 @@ -35982,19 +40565,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36022,19 +40605,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36062,19 +40645,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36082,7 +40665,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2058 + 2358 ], "ordering": [ 236 @@ -36093,10 +40676,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1352 + 1652 ], "created_at": [ - 4024 + 4324 ], "cs2_build": [ 78 @@ -36111,22 +40694,22 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "kills": [ - 1352 + 1652 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "metadata_parsed_at": [ - 4024 + 4324 ], "playback_file": [ 78 @@ -36135,10 +40718,10 @@ export default { 38 ], "players": [ - 1352 + 1652 ], "round_ticks": [ - 1352 + 1652 ], "size": [ 38 @@ -36178,19 +40761,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36199,28 +40782,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2026 + 2326 ], "_delete_at_path": [ - 2032 + 2332 ], "_delete_elem": [ - 2033 + 2333 ], "_delete_key": [ - 2034 + 2334 ], "_inc": [ - 2035 + 2335 ], "_prepend": [ - 2046 + 2346 ], "_set": [ - 2050 + 2350 ], "where": [ - 2030 + 2330 ], "__typename": [ 78 @@ -36248,19 +40831,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36288,19 +40871,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36328,19 +40911,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2481 + 2781 ], "playback_size": [ - 2481 + 2781 ], "size": [ - 2481 + 2781 ], "tick_rate": [ - 2481 + 2781 ], "total_ticks": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36348,10 +40931,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2619, + 2919, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -36361,19 +40944,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "assists_aggregate": [ - 2620, + 2920, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -36383,11 +40966,11 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], @@ -36395,22 +40978,22 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "has_backup_file": [ 3 ], "id": [ - 4462 + 4762 ], "kills": [ - 2836, + 3136, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -36420,19 +41003,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "kills_aggregate": [ - 2837, + 3137, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -36442,11 +41025,11 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], @@ -36457,7 +41040,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -36469,25 +41052,25 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "winning_reason": [ - 1185 + 1225 ], "winning_side": [ 78 @@ -36498,10 +41081,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2073 + 2373 ], "nodes": [ - 2069 + 2369 ], "__typename": [ 78 @@ -36509,7 +41092,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2072 + 2372 ], "__typename": [ 78 @@ -36517,13 +41100,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2090 + 2390 ], "distinct": [ 3 ], "filter": [ - 2078 + 2378 ], "predicate": [ 39 @@ -36534,13 +41117,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2076 + 2376 ], "count": [ 38, { "columns": [ - 2090, + 2390, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -36549,31 +41132,31 @@ export default { } ], "max": [ - 2082 + 2382 ], "min": [ - 2084 + 2384 ], "stddev": [ - 2092 + 2392 ], "stddev_pop": [ - 2094 + 2394 ], "stddev_samp": [ - 2096 + 2396 ], "sum": [ - 2100 + 2400 ], "var_pop": [ - 2104 + 2404 ], "var_samp": [ - 2106 + 2406 ], "variance": [ - 2108 + 2408 ], "__typename": [ 78 @@ -36581,37 +41164,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2077 + 2377 ], "count": [ - 2481 + 2781 ], "max": [ - 2083 + 2383 ], "min": [ - 2085 + 2385 ], "stddev": [ - 2093 + 2393 ], "stddev_pop": [ - 2095 + 2395 ], "stddev_samp": [ - 2097 + 2397 ], "sum": [ - 2101 + 2401 ], "var_pop": [ - 2105 + 2405 ], "var_samp": [ - 2107 + 2407 ], "variance": [ - 2109 + 2409 ], "__typename": [ 78 @@ -36619,10 +41202,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2081 + 2381 ], "on_conflict": [ - 2087 + 2387 ], "__typename": [ 78 @@ -36656,25 +41239,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36682,40 +41265,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2078 + 2378 ], "_not": [ - 2078 + 2378 ], "_or": [ - 2078 + 2378 ], "assists": [ - 2630 + 2930 ], "assists_aggregate": [ - 2621 + 2921 ], "backup_file": [ 80 ], "created_at": [ - 4025 + 4325 ], "deleted_at": [ - 4025 + 4325 ], "has_backup_file": [ 4 ], "id": [ - 4464 + 4764 ], "kills": [ - 2847 + 3147 ], "kills_aggregate": [ - 2838 + 3138 ], "lineup_1_money": [ 39 @@ -36724,7 +41307,7 @@ export default { 39 ], "lineup_1_side": [ - 1003 + 1043 ], "lineup_1_timeouts_available": [ 39 @@ -36736,25 +41319,25 @@ export default { 39 ], "lineup_2_side": [ - 1003 + 1043 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "round": [ 39 ], "time": [ - 4025 + 4325 ], "winning_reason": [ - 1186 + 1226 ], "winning_side": [ 80 @@ -36792,22 +41375,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2627 + 2927 ], "backup_file": [ 78 ], "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "kills": [ - 2844 + 3144 ], "lineup_1_money": [ 38 @@ -36816,7 +41399,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -36828,25 +41411,25 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "winning_reason": [ - 1185 + 1225 ], "winning_side": [ 78 @@ -36860,13 +41443,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "lineup_1_money": [ 38 @@ -36887,13 +41470,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "winning_side": [ 78 @@ -36904,46 +41487,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "winning_side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -36954,13 +41537,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "lineup_1_money": [ 38 @@ -36981,13 +41564,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "winning_side": [ 78 @@ -36998,46 +41581,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "winning_side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37048,7 +41631,7 @@ export default { 38 ], "returning": [ - 2069 + 2369 ], "__typename": [ 78 @@ -37056,13 +41639,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2079 + 2379 ], "update_columns": [ - 2102 + 2402 ], "where": [ - 2078 + 2378 ], "__typename": [ 78 @@ -37070,67 +41653,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2626 + 2926 ], "backup_file": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "has_backup_file": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "kills_aggregate": [ - 2843 + 3143 ], "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_side": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_side": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "winning_reason": [ - 2481 + 2781 ], "winning_side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37138,7 +41721,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -37150,13 +41733,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "lineup_1_money": [ 38 @@ -37165,7 +41748,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -37177,22 +41760,22 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "winning_reason": [ - 1185 + 1225 ], "winning_side": [ 78 @@ -37229,25 +41812,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37281,25 +41864,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37333,25 +41916,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37359,7 +41942,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2099 + 2399 ], "ordering": [ 236 @@ -37373,13 +41956,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "lineup_1_money": [ 38 @@ -37388,7 +41971,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -37400,22 +41983,22 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "winning_reason": [ - 1185 + 1225 ], "winning_side": [ 78 @@ -37452,25 +42035,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37479,13 +42062,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2080 + 2380 ], "_set": [ - 2091 + 2391 ], "where": [ - 2078 + 2378 ], "__typename": [ 78 @@ -37519,25 +42102,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37571,25 +42154,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37623,25 +42206,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_money": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37649,34 +42232,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "map": [ - 1814 + 2114 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "side": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -37684,10 +42267,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2114 + 2414 ], "nodes": [ - 2110 + 2410 ], "__typename": [ 78 @@ -37695,7 +42278,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2113 + 2413 ], "__typename": [ 78 @@ -37703,13 +42286,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2128 + 2428 ], "distinct": [ 3 ], "filter": [ - 2117 + 2417 ], "predicate": [ 39 @@ -37723,7 +42306,7 @@ export default { 38, { "columns": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -37732,10 +42315,10 @@ export default { } ], "max": [ - 2120 + 2420 ], "min": [ - 2122 + 2422 ], "__typename": [ 78 @@ -37743,13 +42326,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2481 + 2781 ], "max": [ - 2121 + 2421 ], "min": [ - 2123 + 2423 ], "__typename": [ 78 @@ -37757,10 +42340,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2119 + 2419 ], "on_conflict": [ - 2125 + 2425 ], "__typename": [ 78 @@ -37768,43 +42351,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2117 + 2417 ], "_not": [ - 2117 + 2417 ], "_or": [ - 2117 + 2417 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "map": [ - 1823 + 2123 ], "map_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "side": [ 80 ], "type": [ - 1166 + 1206 ], "__typename": [ 78 @@ -37813,34 +42396,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "map": [ - 1831 + 2131 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1994 + 2294 ], "match_lineup_id": [ - 4462 + 4762 ], "side": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -37848,19 +42431,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "side": [ 78 @@ -37871,22 +42454,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "map_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37894,19 +42477,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "side": [ 78 @@ -37917,22 +42500,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "map_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -37943,7 +42526,7 @@ export default { 38 ], "returning": [ - 2110 + 2410 ], "__typename": [ 78 @@ -37951,13 +42534,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2118 + 2418 ], "update_columns": [ - 2132 + 2432 ], "where": [ - 2117 + 2417 ], "__typename": [ 78 @@ -37965,34 +42548,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "map": [ - 1833 + 2133 ], "map_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -38000,7 +42583,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -38009,25 +42592,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "side": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -38035,7 +42618,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2131 + 2431 ], "ordering": [ 236 @@ -38046,25 +42629,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "side": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -38073,10 +42656,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2129 + 2429 ], "where": [ - 2117 + 2417 ], "__typename": [ 78 @@ -38087,13 +42670,13 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "demos": [ - 2018, + 2318, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -38103,19 +42686,19 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], "demos_aggregate": [ - 2019, + 2319, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -38125,11 +42708,11 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], @@ -38140,16 +42723,16 @@ export default { 38 ], "e_match_map_status": [ - 753 + 793 ], "ended_at": [ - 4024 + 4324 ], "flashes": [ - 2791, + 3091, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -38159,19 +42742,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "flashes_aggregate": [ - 2792, + 3092, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -38181,28 +42764,28 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "id": [ - 4462 + 4762 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4024 + 4324 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -38211,25 +42794,25 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1814 + 2114 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_clips": [ - 1843, + 2143, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -38239,19 +42822,19 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_clips_aggregate": [ - 1844, + 2144, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -38261,22 +42844,22 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_id": [ - 4462 + 4762 ], "objectives": [ - 3037, + 3337, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -38286,19 +42869,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "objectives_aggregate": [ - 3038, + 3338, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -38308,11 +42891,11 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], @@ -38320,10 +42903,10 @@ export default { 38 ], "player_assists": [ - 2619, + 2919, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -38333,19 +42916,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_assists_aggregate": [ - 2620, + 2920, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -38355,19 +42938,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_damages": [ - 2682, + 2982, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -38377,19 +42960,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_damages_aggregate": [ - 2683, + 2983, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -38399,19 +42982,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_kills": [ - 2836, + 3136, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -38421,19 +43004,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_kills_aggregate": [ - 2837, + 3137, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -38443,19 +43026,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_unused_utilities": [ - 3324, + 3624, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38465,19 +43048,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3625, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38487,11 +43070,11 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], @@ -38499,13 +43082,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4324 ], "rounds": [ - 2069, + 2369, { "distinct_on": [ - 2090, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -38515,19 +43098,19 @@ export default { 38 ], "order_by": [ - 2088, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2378 ] } ], "rounds_aggregate": [ - 2070, + 2370, { "distinct_on": [ - 2090, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -38537,25 +43120,25 @@ export default { 38 ], "order_by": [ - 2088, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2378 ] } ], "started_at": [ - 4024 + 4324 ], "status": [ - 758 + 798 ], "utility": [ - 3365, + 3665, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -38565,19 +43148,19 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "utility_aggregate": [ - 3366, + 3666, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -38587,19 +43170,19 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "vetos": [ - 2110, + 2410, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38609,19 +43192,19 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "vetos_aggregate": [ - 2111, + 2411, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38631,16 +43214,16 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -38648,10 +43231,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2138 + 2438 ], "nodes": [ - 2134 + 2434 ], "__typename": [ 78 @@ -38659,7 +43242,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2137 + 2437 ], "__typename": [ 78 @@ -38667,13 +43250,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2156 + 2456 ], "distinct": [ 3 ], "filter": [ - 2143 + 2443 ], "predicate": [ 39 @@ -38684,13 +43267,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2141 + 2441 ], "count": [ 38, { "columns": [ - 2156, + 2456, "[match_maps_select_column!]" ], "distinct": [ @@ -38699,31 +43282,31 @@ export default { } ], "max": [ - 2147 + 2447 ], "min": [ - 2149 + 2449 ], "stddev": [ - 2158 + 2458 ], "stddev_pop": [ - 2160 + 2460 ], "stddev_samp": [ - 2162 + 2462 ], "sum": [ - 2166 + 2466 ], "var_pop": [ - 2170 + 2470 ], "var_samp": [ - 2172 + 2472 ], "variance": [ - 2174 + 2474 ], "__typename": [ 78 @@ -38731,37 +43314,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2142 + 2442 ], "count": [ - 2481 + 2781 ], "max": [ - 2148 + 2448 ], "min": [ - 2150 + 2450 ], "stddev": [ - 2159 + 2459 ], "stddev_pop": [ - 2161 + 2461 ], "stddev_samp": [ - 2163 + 2463 ], "sum": [ - 2167 + 2467 ], "var_pop": [ - 2171 + 2471 ], "var_samp": [ - 2173 + 2473 ], "variance": [ - 2175 + 2475 ], "__typename": [ 78 @@ -38769,10 +43352,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2146 + 2446 ], "on_conflict": [ - 2153 + 2453 ], "__typename": [ 78 @@ -38809,19 +43392,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -38829,25 +43412,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2143 + 2443 ], "_not": [ - 2143 + 2443 ], "_or": [ - 2143 + 2443 ], "clips_count": [ 39 ], "created_at": [ - 4025 + 4325 ], "demos": [ - 2030 + 2330 ], "demos_aggregate": [ - 2020 + 2320 ], "demos_download_url": [ 80 @@ -38856,31 +43439,31 @@ export default { 39 ], "e_match_map_status": [ - 756 + 796 ], "ended_at": [ - 4025 + 4325 ], "flashes": [ - 2802 + 3102 ], "flashes_aggregate": [ - 2793 + 3093 ], "id": [ - 4464 + 4764 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4025 + 4325 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 1003 + 1043 ], "lineup_1_timeouts_available": [ 39 @@ -38889,94 +43472,94 @@ export default { 39 ], "lineup_2_side": [ - 1003 + 1043 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 1823 + 2123 ], "map_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_clips": [ - 1852 + 2152 ], "match_clips_aggregate": [ - 1845 + 2145 ], "match_id": [ - 4464 + 4764 ], "objectives": [ - 3046 + 3346 ], "objectives_aggregate": [ - 3039 + 3339 ], "order": [ 39 ], "player_assists": [ - 2630 + 2930 ], "player_assists_aggregate": [ - 2621 + 2921 ], "player_damages": [ - 2691 + 2991 ], "player_damages_aggregate": [ - 2684 + 2984 ], "player_kills": [ - 2847 + 3147 ], "player_kills_aggregate": [ - 2838 + 3138 ], "player_unused_utilities": [ - 3333 + 3633 ], "player_unused_utilities_aggregate": [ - 3326 + 3626 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4025 + 4325 ], "rounds": [ - 2078 + 2378 ], "rounds_aggregate": [ - 2071 + 2371 ], "started_at": [ - 4025 + 4325 ], "status": [ - 759 + 799 ], "utility": [ - 3374 + 3674 ], "utility_aggregate": [ - 3367 + 3667 ], "vetos": [ - 2117 + 2417 ], "vetos_aggregate": [ - 2112 + 2412 ], "winning_lineup_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -39008,94 +43591,94 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "demos": [ - 2027 + 2327 ], "e_match_map_status": [ - 764 + 804 ], "ended_at": [ - 4024 + 4324 ], "flashes": [ - 2799 + 3099 ], "id": [ - 4462 + 4762 ], "latest_clip_at": [ - 4024 + 4324 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1831 + 2131 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_clips": [ - 1849 + 2149 ], "match_id": [ - 4462 + 4762 ], "objectives": [ - 3043 + 3343 ], "order": [ 38 ], "player_assists": [ - 2627 + 2927 ], "player_damages": [ - 2688 + 2988 ], "player_kills": [ - 2844 + 3144 ], "player_unused_utilities": [ - 3330 + 3630 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4024 + 4324 ], "rounds": [ - 2075 + 2375 ], "started_at": [ - 4024 + 4324 ], "status": [ - 758 + 798 ], "utility": [ - 3371 + 3671 ], "vetos": [ - 2116 + 2416 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -39106,7 +43689,7 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "demos_download_url": [ 78 @@ -39115,13 +43698,13 @@ export default { 38 ], "ended_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "latest_clip_at": [ - 4024 + 4324 ], "lineup_1_score": [ 38 @@ -39136,10 +43719,10 @@ export default { 38 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "order": [ 38 @@ -39148,13 +43731,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4324 ], "started_at": [ - 4024 + 4324 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -39162,46 +43745,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "ended_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "latest_clip_at": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "map_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "public_latest_clip_at": [ - 2481 + 2781 ], "started_at": [ - 2481 + 2781 ], "winning_lineup_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39212,7 +43795,7 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "demos_download_url": [ 78 @@ -39221,13 +43804,13 @@ export default { 38 ], "ended_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "latest_clip_at": [ - 4024 + 4324 ], "lineup_1_score": [ 38 @@ -39242,10 +43825,10 @@ export default { 38 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "order": [ 38 @@ -39254,13 +43837,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4324 ], "started_at": [ - 4024 + 4324 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -39268,46 +43851,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "ended_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "latest_clip_at": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "map_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "public_latest_clip_at": [ - 2481 + 2781 ], "started_at": [ - 2481 + 2781 ], "winning_lineup_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39318,7 +43901,7 @@ export default { 38 ], "returning": [ - 2134 + 2434 ], "__typename": [ 78 @@ -39326,10 +43909,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2146 + 2446 ], "on_conflict": [ - 2153 + 2453 ], "__typename": [ 78 @@ -39337,13 +43920,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2144 + 2444 ], "update_columns": [ - 2168 + 2468 ], "where": [ - 2143 + 2443 ], "__typename": [ 78 @@ -39351,112 +43934,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "demos_aggregate": [ - 2025 + 2325 ], "demos_download_url": [ - 2481 + 2781 ], "demos_total_size": [ - 2481 + 2781 ], "e_match_map_status": [ - 766 + 806 ], "ended_at": [ - 2481 + 2781 ], "flashes_aggregate": [ - 2798 + 3098 ], "id": [ - 2481 + 2781 ], "is_current_map": [ - 2481 + 2781 ], "latest_clip_at": [ - 2481 + 2781 ], "lineup_1_score": [ - 2481 + 2781 ], "lineup_1_side": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_score": [ - 2481 + 2781 ], "lineup_2_side": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "map": [ - 1833 + 2133 ], "map_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_clips_aggregate": [ - 1848 + 2148 ], "match_id": [ - 2481 + 2781 ], "objectives_aggregate": [ - 3042 + 3342 ], "order": [ - 2481 + 2781 ], "player_assists_aggregate": [ - 2626 + 2926 ], "player_damages_aggregate": [ - 2687 + 2987 ], "player_kills_aggregate": [ - 2843 + 3143 ], "player_unused_utilities_aggregate": [ - 3329 + 3629 ], "public_clips_count": [ - 2481 + 2781 ], "public_latest_clip_at": [ - 2481 + 2781 ], "rounds_aggregate": [ - 2074 + 2374 ], "started_at": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "utility_aggregate": [ - 3370 + 3670 ], "vetos_aggregate": [ - 2115 + 2415 ], "winning_lineup_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39464,7 +44047,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -39476,34 +44059,34 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "ended_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "latest_clip_at": [ - 4024 + 4324 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "order": [ 38 @@ -39512,16 +44095,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4324 ], "started_at": [ - 4024 + 4324 ], "status": [ - 758 + 798 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -39558,19 +44141,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39607,19 +44190,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39656,19 +44239,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39676,7 +44259,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2165 + 2465 ], "ordering": [ 236 @@ -39690,34 +44273,34 @@ export default { 38 ], "created_at": [ - 4024 + 4324 ], "ended_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "latest_clip_at": [ - 4024 + 4324 ], "lineup_1_side": [ - 1002 + 1042 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1002 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "order": [ 38 @@ -39726,16 +44309,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4324 ], "started_at": [ - 4024 + 4324 ], "status": [ - 758 + 798 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -39772,19 +44355,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39793,13 +44376,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2145 + 2445 ], "_set": [ - 2157 + 2457 ], "where": [ - 2143 + 2443 ], "__typename": [ 78 @@ -39836,19 +44419,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39885,19 +44468,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39934,19 +44517,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2481 + 2781 ], "lineup_1_timeouts_available": [ - 2481 + 2781 ], "lineup_2_timeouts_available": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "public_clips_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -39975,7 +44558,7 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -39987,22 +44570,22 @@ export default { 38 ], "map_pool": [ - 1795 + 2095 ], "map_pool_id": [ - 4462 + 4762 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 819 ], "matches": [ - 2296, + 2596, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -40012,19 +44595,19 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matches_aggregate": [ - 2297, + 2597, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -40034,11 +44617,11 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], @@ -40055,7 +44638,7 @@ export default { 3 ], "ready_setting": [ - 921 + 961 ], "region_veto": [ 3 @@ -40064,25 +44647,25 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1123 ], "timeout_setting": [ - 1083 + 1123 ], "tournament": [ - 4416 + 4716 ], "tournament_bracket": [ - 4026 + 4326 ], "tournament_stage": [ - 4154 + 4454 ], "tv_delay": [ 38 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -40090,10 +44673,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2178 + 2478 ], "nodes": [ - 2176 + 2476 ], "__typename": [ 78 @@ -40101,13 +44684,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2179 + 2479 ], "count": [ 38, { "columns": [ - 2191, + 2491, "[match_options_select_column!]" ], "distinct": [ @@ -40116,31 +44699,31 @@ export default { } ], "max": [ - 2184 + 2484 ], "min": [ - 2185 + 2485 ], "stddev": [ - 2193 + 2493 ], "stddev_pop": [ - 2194 + 2494 ], "stddev_samp": [ - 2195 + 2495 ], "sum": [ - 2198 + 2498 ], "var_pop": [ - 2201 + 2501 ], "var_samp": [ - 2202 + 2502 ], "variance": [ - 2203 + 2503 ], "__typename": [ 78 @@ -40171,13 +44754,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2180 + 2480 ], "_not": [ - 2180 + 2480 ], "_or": [ - 2180 + 2480 ], "auto_cancel_duration": [ 39 @@ -40201,7 +44784,7 @@ export default { 4 ], "id": [ - 4464 + 4764 ], "invite_code": [ 80 @@ -40213,22 +44796,22 @@ export default { 39 ], "map_pool": [ - 1798 + 2098 ], "map_pool_id": [ - 4464 + 4764 ], "map_veto": [ 4 ], "match_mode": [ - 780 + 820 ], "matches": [ - 2305 + 2605 ], "matches_aggregate": [ - 2298 + 2598 ], "mr": [ 39 @@ -40243,7 +44826,7 @@ export default { 4 ], "ready_setting": [ - 922 + 962 ], "region_veto": [ 4 @@ -40252,25 +44835,25 @@ export default { 79 ], "tech_timeout_setting": [ - 1084 + 1124 ], "timeout_setting": [ - 1084 + 1124 ], "tournament": [ - 4427 + 4727 ], "tournament_bracket": [ - 4037 + 4337 ], "tournament_stage": [ - 4166 + 4466 ], "tv_delay": [ 39 ], "type": [ - 821 + 861 ], "__typename": [ 78 @@ -40320,7 +44903,7 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -40332,19 +44915,19 @@ export default { 38 ], "map_pool": [ - 1804 + 2104 ], "map_pool_id": [ - 4462 + 4762 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 819 ], "matches": [ - 2302 + 2602 ], "mr": [ 38 @@ -40359,7 +44942,7 @@ export default { 3 ], "ready_setting": [ - 921 + 961 ], "region_veto": [ 3 @@ -40368,25 +44951,25 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1123 ], "timeout_setting": [ - 1083 + 1123 ], "tournament": [ - 4436 + 4736 ], "tournament_bracket": [ - 4046 + 4346 ], "tournament_stage": [ - 4178 + 4478 ], "tv_delay": [ 38 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -40400,7 +44983,7 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -40409,7 +44992,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4762 ], "mr": [ 38 @@ -40435,7 +45018,7 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -40444,7 +45027,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4762 ], "mr": [ 38 @@ -40467,7 +45050,7 @@ export default { 38 ], "returning": [ - 2176 + 2476 ], "__typename": [ 78 @@ -40475,10 +45058,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2183 + 2483 ], "on_conflict": [ - 2188 + 2488 ], "__typename": [ 78 @@ -40486,13 +45069,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2181 + 2481 ], "update_columns": [ - 2199 + 2499 ], "where": [ - 2180 + 2480 ], "__typename": [ 78 @@ -40500,94 +45083,94 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2481 + 2781 ], "auto_cancellation": [ - 2481 + 2781 ], "best_of": [ - 2481 + 2781 ], "check_in_setting": [ - 2481 + 2781 ], "coaches": [ - 2481 + 2781 ], "default_models": [ - 2481 + 2781 ], "has_active_matches": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invite_code": [ - 2481 + 2781 ], "knife_round": [ - 2481 + 2781 ], "live_match_timeout": [ - 2481 + 2781 ], "map_pool": [ - 1806 + 2106 ], "map_pool_id": [ - 2481 + 2781 ], "map_veto": [ - 2481 + 2781 ], "match_mode": [ - 2481 + 2781 ], "matches_aggregate": [ - 2301 + 2601 ], "mr": [ - 2481 + 2781 ], "number_of_substitutes": [ - 2481 + 2781 ], "overtime": [ - 2481 + 2781 ], "prefer_dedicated_server": [ - 2481 + 2781 ], "ready_setting": [ - 2481 + 2781 ], "region_veto": [ - 2481 + 2781 ], "regions": [ - 2481 + 2781 ], "tech_timeout_setting": [ - 2481 + 2781 ], "timeout_setting": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_bracket": [ - 4048 + 4348 ], "tournament_stage": [ - 4180 + 4480 ], "tv_delay": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -40595,7 +45178,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -40622,7 +45205,7 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -40634,13 +45217,13 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4762 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 819 ], "mr": [ 38 @@ -40655,7 +45238,7 @@ export default { 3 ], "ready_setting": [ - 921 + 961 ], "region_veto": [ 3 @@ -40664,16 +45247,16 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1123 ], "timeout_setting": [ - 1083 + 1123 ], "tv_delay": [ 38 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -40750,7 +45333,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2197 + 2497 ], "ordering": [ 236 @@ -40779,7 +45362,7 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -40791,13 +45374,13 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4762 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 819 ], "mr": [ 38 @@ -40812,7 +45395,7 @@ export default { 3 ], "ready_setting": [ - 921 + 961 ], "region_veto": [ 3 @@ -40821,16 +45404,16 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1123 ], "timeout_setting": [ - 1083 + 1123 ], "tv_delay": [ 38 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -40862,13 +45445,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2182 + 2482 ], "_set": [ - 2192 + 2492 ], "where": [ - 2180 + 2480 ], "__typename": [ 78 @@ -40945,28 +45528,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "region": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -40974,10 +45557,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2208 + 2508 ], "nodes": [ - 2204 + 2504 ], "__typename": [ 78 @@ -40985,7 +45568,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2207 + 2507 ], "__typename": [ 78 @@ -40993,13 +45576,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2222 + 2522 ], "distinct": [ 3 ], "filter": [ - 2211 + 2511 ], "predicate": [ 39 @@ -41013,7 +45596,7 @@ export default { 38, { "columns": [ - 2222, + 2522, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -41022,10 +45605,10 @@ export default { } ], "max": [ - 2214 + 2514 ], "min": [ - 2216 + 2516 ], "__typename": [ 78 @@ -41033,13 +45616,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2481 + 2781 ], "max": [ - 2215 + 2515 ], "min": [ - 2217 + 2517 ], "__typename": [ 78 @@ -41047,10 +45630,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2213 + 2513 ], "on_conflict": [ - 2219 + 2519 ], "__typename": [ 78 @@ -41058,37 +45641,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2211 + 2511 ], "_not": [ - 2211 + 2511 ], "_or": [ - 2211 + 2511 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "region": [ 80 ], "type": [ - 1166 + 1206 ], "__typename": [ 78 @@ -41097,28 +45680,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1994 + 2294 ], "match_lineup_id": [ - 4462 + 4762 ], "region": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -41126,16 +45709,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "region": [ 78 @@ -41146,19 +45729,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "__typename": [ 78 @@ -41166,16 +45749,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "region": [ 78 @@ -41186,19 +45769,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "__typename": [ 78 @@ -41209,7 +45792,7 @@ export default { 38 ], "returning": [ - 2204 + 2504 ], "__typename": [ 78 @@ -41217,13 +45800,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2212 + 2512 ], "update_columns": [ - 2226 + 2526 ], "where": [ - 2211 + 2511 ], "__typename": [ 78 @@ -41231,28 +45814,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -41260,7 +45843,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -41269,22 +45852,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "region": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -41292,7 +45875,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2225 + 2525 ], "ordering": [ 236 @@ -41303,22 +45886,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "region": [ 78 ], "type": [ - 1165 + 1205 ], "__typename": [ 78 @@ -41327,10 +45910,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2223 + 2523 ], "where": [ - 2211 + 2511 ], "__typename": [ 78 @@ -41344,13 +45927,13 @@ export default { 78 ], "game_server_node": [ - 1229 + 1528 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4762 ], "is_game_streamer": [ 3 @@ -41362,16 +45945,16 @@ export default { 78 ], "last_status_at": [ - 4024 + 4324 ], "link": [ 78 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "mode": [ 78 @@ -41383,7 +45966,7 @@ export default { 78 ], "status_history": [ - 1352, + 1652, { "path": [ 78 @@ -41402,10 +45985,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2234 + 2534 ], "nodes": [ - 2228 + 2528 ], "__typename": [ 78 @@ -41413,13 +45996,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2231 + 2531 ], "bool_or": [ - 2232 + 2532 ], "count": [ - 2233 + 2533 ], "__typename": [ 78 @@ -41427,13 +46010,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2257 + 2557 ], "distinct": [ 3 ], "filter": [ - 2240 + 2540 ], "predicate": [ 4 @@ -41444,13 +46027,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2258 + 2558 ], "distinct": [ 3 ], "filter": [ - 2240 + 2540 ], "predicate": [ 4 @@ -41461,13 +46044,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2256 + 2556 ], "distinct": [ 3 ], "filter": [ - 2240 + 2540 ], "predicate": [ 39 @@ -41478,13 +46061,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2238 + 2538 ], "count": [ 38, { "columns": [ - 2256, + 2556, "[match_streams_select_column!]" ], "distinct": [ @@ -41493,31 +46076,31 @@ export default { } ], "max": [ - 2247 + 2547 ], "min": [ - 2249 + 2549 ], "stddev": [ - 2260 + 2560 ], "stddev_pop": [ - 2262 + 2562 ], "stddev_samp": [ - 2264 + 2564 ], "sum": [ - 2268 + 2568 ], "var_pop": [ - 2272 + 2572 ], "var_samp": [ - 2274 + 2574 ], "variance": [ - 2276 + 2576 ], "__typename": [ 78 @@ -41525,37 +46108,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2239 + 2539 ], "count": [ - 2481 + 2781 ], "max": [ - 2248 + 2548 ], "min": [ - 2250 + 2550 ], "stddev": [ - 2261 + 2561 ], "stddev_pop": [ - 2263 + 2563 ], "stddev_samp": [ - 2265 + 2565 ], "sum": [ - 2269 + 2569 ], "var_pop": [ - 2273 + 2573 ], "var_samp": [ - 2275 + 2575 ], "variance": [ - 2277 + 2577 ], "__typename": [ 78 @@ -41563,7 +46146,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1352 + 1652 ], "__typename": [ 78 @@ -41571,10 +46154,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2246 + 2546 ], "on_conflict": [ - 2252 + 2552 ], "__typename": [ 78 @@ -41590,7 +46173,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -41598,13 +46181,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2240 + 2540 ], "_not": [ - 2240 + 2540 ], "_or": [ - 2240 + 2540 ], "autodirector": [ 4 @@ -41613,13 +46196,13 @@ export default { 80 ], "game_server_node": [ - 1241 + 1540 ], "game_server_node_id": [ 80 ], "id": [ - 4464 + 4764 ], "is_game_streamer": [ 4 @@ -41631,16 +46214,16 @@ export default { 80 ], "last_status_at": [ - 4025 + 4325 ], "link": [ 80 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "mode": [ 80 @@ -41652,7 +46235,7 @@ export default { 80 ], "status_history": [ - 1354 + 1654 ], "stream_url": [ 80 @@ -41705,13 +46288,13 @@ export default { 78 ], "game_server_node": [ - 1253 + 1552 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4762 ], "is_game_streamer": [ 3 @@ -41723,16 +46306,16 @@ export default { 78 ], "last_status_at": [ - 4024 + 4324 ], "link": [ 78 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "mode": [ 78 @@ -41744,7 +46327,7 @@ export default { 78 ], "status_history": [ - 1352 + 1652 ], "stream_url": [ 78 @@ -41764,19 +46347,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "link": [ 78 ], "match_id": [ - 4462 + 4762 ], "mode": [ 78 @@ -41799,40 +46382,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_service_name": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "link": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "mode": [ - 2481 + 2781 ], "priority": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "stream_url": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "__typename": [ 78 @@ -41846,19 +46429,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4024 + 4324 ], "link": [ 78 ], "match_id": [ - 4462 + 4762 ], "mode": [ 78 @@ -41881,40 +46464,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_service_name": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "link": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "mode": [ - 2481 + 2781 ], "priority": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "stream_url": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "__typename": [ 78 @@ -41925,7 +46508,7 @@ export default { 38 ], "returning": [ - 2228 + 2528 ], "__typename": [ 78 @@ -41933,13 +46516,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2241 + 2541 ], "update_columns": [ - 2270 + 2570 ], "where": [ - 2240 + 2540 ], "__typename": [ 78 @@ -41947,58 +46530,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2481 + 2781 ], "error_message": [ - 2481 + 2781 ], "game_server_node": [ - 1255 + 1554 ], "game_server_node_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "is_game_streamer": [ - 2481 + 2781 ], "is_live": [ - 2481 + 2781 ], "k8s_service_name": [ - 2481 + 2781 ], "last_status_at": [ - 2481 + 2781 ], "link": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "mode": [ - 2481 + 2781 ], "priority": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "status_history": [ - 2481 + 2781 ], "stream_url": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42006,7 +46589,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -42014,7 +46597,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1352 + 1652 ], "__typename": [ 78 @@ -42034,7 +46617,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "is_game_streamer": [ 3 @@ -42046,13 +46629,13 @@ export default { 78 ], "last_status_at": [ - 4024 + 4324 ], "link": [ 78 ], "match_id": [ - 4462 + 4762 ], "mode": [ 78 @@ -42064,7 +46647,7 @@ export default { 78 ], "status_history": [ - 1352 + 1652 ], "stream_url": [ 78 @@ -42086,7 +46669,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42102,7 +46685,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42118,7 +46701,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42126,7 +46709,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2267 + 2567 ], "ordering": [ 236 @@ -42146,7 +46729,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "is_game_streamer": [ 3 @@ -42158,13 +46741,13 @@ export default { 78 ], "last_status_at": [ - 4024 + 4324 ], "link": [ 78 ], "match_id": [ - 4462 + 4762 ], "mode": [ 78 @@ -42176,7 +46759,7 @@ export default { 78 ], "status_history": [ - 1352 + 1652 ], "stream_url": [ 78 @@ -42198,7 +46781,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42207,28 +46790,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2236 + 2536 ], "_delete_at_path": [ - 2242 + 2542 ], "_delete_elem": [ - 2243 + 2543 ], "_delete_key": [ - 2244 + 2544 ], "_inc": [ - 2245 + 2545 ], "_prepend": [ - 2255 + 2555 ], "_set": [ - 2259 + 2559 ], "where": [ - 2240 + 2540 ], "__typename": [ 78 @@ -42244,7 +46827,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42260,7 +46843,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42276,7 +46859,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42287,7 +46870,7 @@ export default { 78 ], "type": [ - 551 + 591 ], "__typename": [ 78 @@ -42295,10 +46878,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2280 + 2580 ], "nodes": [ - 2278 + 2578 ], "__typename": [ 78 @@ -42309,7 +46892,7 @@ export default { 38, { "columns": [ - 2290, + 2590, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -42318,10 +46901,10 @@ export default { } ], "max": [ - 2284 + 2584 ], "min": [ - 2285 + 2585 ], "__typename": [ 78 @@ -42329,19 +46912,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2281 + 2581 ], "_not": [ - 2281 + 2581 ], "_or": [ - 2281 + 2581 ], "cfg": [ 80 ], "type": [ - 552 + 592 ], "__typename": [ 78 @@ -42353,7 +46936,7 @@ export default { 78 ], "type": [ - 551 + 591 ], "__typename": [ 78 @@ -42380,7 +46963,7 @@ export default { 38 ], "returning": [ - 2278 + 2578 ], "__typename": [ 78 @@ -42388,13 +46971,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2282 + 2582 ], "update_columns": [ - 2294 + 2594 ], "where": [ - 2281 + 2581 ], "__typename": [ 78 @@ -42402,10 +46985,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -42413,7 +46996,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 551 + 591 ], "__typename": [ 78 @@ -42425,7 +47008,7 @@ export default { 78 ], "type": [ - 551 + 591 ], "__typename": [ 78 @@ -42433,7 +47016,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2293 + 2593 ], "ordering": [ 236 @@ -42447,7 +47030,7 @@ export default { 78 ], "type": [ - 551 + 591 ], "__typename": [ 78 @@ -42456,10 +47039,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2291 + 2591 ], "where": [ - 2281 + 2581 ], "__typename": [ 78 @@ -42491,13 +47074,13 @@ export default { 3 ], "cancels_at": [ - 4024 + 4324 ], "clutches": [ - 4591, + 4942, { "distinct_on": [ - 4607, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42507,19 +47090,19 @@ export default { 38 ], "order_by": [ - 4606, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4951 ] } ], "clutches_aggregate": [ - 4592, + 4943, { "distinct_on": [ - 4607, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42529,11 +47112,11 @@ export default { 38 ], "order_by": [ - 4606, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4951 ] } ], @@ -42544,16 +47127,16 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "current_match_map_id": [ - 4462 + 4762 ], "demos": [ - 2018, + 2318, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -42563,19 +47146,19 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], "demos_aggregate": [ - 2019, + 2319, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -42585,11 +47168,11 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], @@ -42638,19 +47221,19 @@ export default { } ], "e_match_status": [ - 794 + 834 ], "e_region": [ - 3526 + 3826 ], "effective_at": [ - 4024 + 4324 ], "elo_changes": [ - 4788, + 5139, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -42660,19 +47243,19 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], "elo_changes_aggregate": [ - 4789, + 5140, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -42682,22 +47265,22 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], "ended_at": [ - 4024 + 4324 ], "external_id": [ 78 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -42730,19 +47313,19 @@ export default { 78 ], "lineup_1": [ - 1976 + 2276 ], "lineup_1_id": [ - 4462 + 4762 ], "lineup_2": [ - 1976 + 2276 ], "lineup_2_id": [ - 4462 + 4762 ], "lineup_counts": [ - 1350, + 1650, { "path": [ 78 @@ -42750,13 +47333,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4462 + 4762 ], "map_veto_picks": [ - 2110, + 2410, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42766,19 +47349,19 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "map_veto_picks_aggregate": [ - 2111, + 2411, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42788,11 +47371,11 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], @@ -42800,10 +47383,10 @@ export default { 78 ], "match_maps": [ - 2134, + 2434, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -42813,19 +47396,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_maps_aggregate": [ - 2135, + 2435, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -42835,16 +47418,16 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_options_id": [ - 4462 + 4762 ], "max_players_per_lineup": [ 38 @@ -42853,10 +47436,10 @@ export default { 38 ], "opening_duels": [ - 4719, + 5070, { "distinct_on": [ - 4735, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42866,19 +47449,19 @@ export default { 38 ], "order_by": [ - 4734, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 5079 ] } ], "opening_duels_aggregate": [ - 4720, + 5071, { "distinct_on": [ - 4735, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42888,19 +47471,19 @@ export default { 38 ], "order_by": [ - 4734, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 5079 ] } ], "options": [ - 2176 + 2476 ], "organizer": [ - 3439 + 3739 ], "organizer_steam_id": [ 180 @@ -42909,10 +47492,10 @@ export default { 78 ], "player_assists": [ - 2619, + 2919, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -42922,19 +47505,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_assists_aggregate": [ - 2620, + 2920, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -42944,19 +47527,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_damages": [ - 2682, + 2982, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -42966,19 +47549,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_damages_aggregate": [ - 2683, + 2983, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -42988,19 +47571,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_flashes": [ - 2791, + 3091, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -43010,19 +47593,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "player_flashes_aggregate": [ - 2792, + 3092, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -43032,19 +47615,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "player_kills": [ - 2836, + 3136, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -43054,19 +47637,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_kills_aggregate": [ - 2837, + 3137, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -43076,19 +47659,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_objectives": [ - 3037, + 3337, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -43098,19 +47681,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "player_objectives_aggregate": [ - 3038, + 3338, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -43120,19 +47703,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "player_unused_utilities": [ - 3324, + 3624, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43142,19 +47725,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3625, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43164,19 +47747,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_utility": [ - 3365, + 3665, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -43186,19 +47769,19 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "player_utility_aggregate": [ - 3366, + 3666, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -43208,11 +47791,11 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], @@ -43220,13 +47803,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4762 ], "region_veto_picks": [ - 2204, + 2504, { "distinct_on": [ - 2222, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43236,19 +47819,19 @@ export default { 38 ], "order_by": [ - 2220, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2511 ] } ], "region_veto_picks_aggregate": [ - 2205, + 2505, { "distinct_on": [ - 2222, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43258,11 +47841,11 @@ export default { 38 ], "order_by": [ - 2220, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2511 ] } ], @@ -43270,16 +47853,19 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4324 ], "server": [ - 3553 + 3853 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4762 + ], + "server_plugin_runtime": [ + 78 ], "server_region": [ 78 @@ -43291,16 +47877,16 @@ export default { 78 ], "started_at": [ - 4024 + 4324 ], "status": [ - 799 + 839 ], "streams": [ - 2228, + 2528, { "distinct_on": [ - 2256, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -43310,19 +47896,19 @@ export default { 38 ], "order_by": [ - 2253, + 2553, "[match_streams_order_by!]" ], "where": [ - 2240 + 2540 ] } ], "streams_aggregate": [ - 2229, + 2529, { "distinct_on": [ - 2256, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -43332,19 +47918,19 @@ export default { 38 ], "order_by": [ - 2253, + 2553, "[match_streams_order_by!]" ], "where": [ - 2240 + 2540 ] } ], "teams": [ - 3981, + 4281, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -43354,19 +47940,19 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], "tournament_brackets": [ - 4026, + 4326, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43376,19 +47962,19 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4327, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43398,11 +47984,11 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], @@ -43410,10 +47996,10 @@ export default { 78 ], "winner": [ - 1976 + 2276 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -43421,10 +48007,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2300 + 2600 ], "nodes": [ - 2296 + 2596 ], "__typename": [ 78 @@ -43432,7 +48018,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2299 + 2599 ], "__typename": [ 78 @@ -43440,13 +48026,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2318 + 2618 ], "distinct": [ 3 ], "filter": [ - 2305 + 2605 ], "predicate": [ 39 @@ -43457,13 +48043,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2303 + 2603 ], "count": [ 38, { "columns": [ - 2318, + 2618, "[matches_select_column!]" ], "distinct": [ @@ -43472,31 +48058,31 @@ export default { } ], "max": [ - 2309 + 2609 ], "min": [ - 2311 + 2611 ], "stddev": [ - 2320 + 2620 ], "stddev_pop": [ - 2322 + 2622 ], "stddev_samp": [ - 2324 + 2624 ], "sum": [ - 2328 + 2628 ], "var_pop": [ - 2332 + 2632 ], "var_samp": [ - 2334 + 2634 ], "variance": [ - 2336 + 2636 ], "__typename": [ 78 @@ -43504,37 +48090,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2304 + 2604 ], "count": [ - 2481 + 2781 ], "max": [ - 2310 + 2610 ], "min": [ - 2312 + 2612 ], "stddev": [ - 2321 + 2621 ], "stddev_pop": [ - 2323 + 2623 ], "stddev_samp": [ - 2325 + 2625 ], "sum": [ - 2329 + 2629 ], "var_pop": [ - 2333 + 2633 ], "var_samp": [ - 2335 + 2635 ], "variance": [ - 2337 + 2637 ], "__typename": [ 78 @@ -43542,10 +48128,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2308 + 2608 ], "on_conflict": [ - 2315 + 2615 ], "__typename": [ 78 @@ -43567,7 +48153,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -43575,13 +48161,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2305 + 2605 ], "_not": [ - 2305 + 2605 ], "_or": [ - 2305 + 2605 ], "can_assign_server": [ 4 @@ -43608,13 +48194,13 @@ export default { 4 ], "cancels_at": [ - 4025 + 4325 ], "clutches": [ - 4600 + 4951 ], "clutches_aggregate": [ - 4593 + 4944 ], "connection_link": [ 80 @@ -43623,16 +48209,16 @@ export default { 80 ], "created_at": [ - 4025 + 4325 ], "current_match_map_id": [ - 4464 + 4764 ], "demos": [ - 2030 + 2330 ], "demos_aggregate": [ - 2020 + 2320 ], "draft_games": [ 365 @@ -43641,28 +48227,28 @@ export default { 356 ], "e_match_status": [ - 797 + 837 ], "e_region": [ - 3530 + 3830 ], "effective_at": [ - 4025 + 4325 ], "elo_changes": [ - 4807 + 5158 ], "elo_changes_aggregate": [ - 4790 + 5141 ], "ended_at": [ - 4025 + 4325 ], "external_id": [ 80 ], "id": [ - 4464 + 4764 ], "invite_code": [ 80 @@ -43695,40 +48281,40 @@ export default { 80 ], "lineup_1": [ - 1985 + 2285 ], "lineup_1_id": [ - 4464 + 4764 ], "lineup_2": [ - 1985 + 2285 ], "lineup_2_id": [ - 4464 + 4764 ], "lineup_counts": [ - 1351 + 1651 ], "map_veto_picking_lineup_id": [ - 4464 + 4764 ], "map_veto_picks": [ - 2117 + 2417 ], "map_veto_picks_aggregate": [ - 2112 + 2412 ], "map_veto_type": [ 80 ], "match_maps": [ - 2143 + 2443 ], "match_maps_aggregate": [ - 2136 + 2436 ], "match_options_id": [ - 4464 + 4764 ], "max_players_per_lineup": [ 39 @@ -43737,16 +48323,16 @@ export default { 39 ], "opening_duels": [ - 4728 + 5079 ], "opening_duels_aggregate": [ - 4721 + 5072 ], "options": [ - 2180 + 2480 ], "organizer": [ - 3443 + 3743 ], "organizer_steam_id": [ 182 @@ -43755,73 +48341,76 @@ export default { 80 ], "player_assists": [ - 2630 + 2930 ], "player_assists_aggregate": [ - 2621 + 2921 ], "player_damages": [ - 2691 + 2991 ], "player_damages_aggregate": [ - 2684 + 2984 ], "player_flashes": [ - 2802 + 3102 ], "player_flashes_aggregate": [ - 2793 + 3093 ], "player_kills": [ - 2847 + 3147 ], "player_kills_aggregate": [ - 2838 + 3138 ], "player_objectives": [ - 3046 + 3346 ], "player_objectives_aggregate": [ - 3039 + 3339 ], "player_unused_utilities": [ - 3333 + 3633 ], "player_unused_utilities_aggregate": [ - 3326 + 3626 ], "player_utility": [ - 3374 + 3674 ], "player_utility_aggregate": [ - 3367 + 3667 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4464 + 4764 ], "region_veto_picks": [ - 2211 + 2511 ], "region_veto_picks_aggregate": [ - 2206 + 2506 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4025 + 4325 ], "server": [ - 3564 + 3864 ], "server_error": [ 80 ], "server_id": [ - 4464 + 4764 + ], + "server_plugin_runtime": [ + 80 ], "server_region": [ 80 @@ -43833,34 +48422,34 @@ export default { 80 ], "started_at": [ - 4025 + 4325 ], "status": [ - 800 + 840 ], "streams": [ - 2240 + 2540 ], "streams_aggregate": [ - 2230 + 2530 ], "teams": [ - 3990 + 4290 ], "tournament_brackets": [ - 4037 + 4337 ], "tournament_brackets_aggregate": [ - 4028 + 4328 ], "tv_connection_string": [ 80 ], "winner": [ - 1985 + 2285 ], "winning_lineup_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -43877,70 +48466,70 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4024 + 4324 ], "clutches": [ - 4597 + 4948 ], "created_at": [ - 4024 + 4324 ], "demos": [ - 2027 + 2327 ], "draft_games": [ 362 ], "e_match_status": [ - 805 + 845 ], "e_region": [ - 3536 + 3836 ], "elo_changes": [ - 4804 + 5155 ], "ended_at": [ - 4024 + 4324 ], "external_id": [ 78 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "lineup_1": [ - 1994 + 2294 ], "lineup_1_id": [ - 4462 + 4762 ], "lineup_2": [ - 1994 + 2294 ], "lineup_2_id": [ - 4462 + 4762 ], "map_veto_picks": [ - 2116 + 2416 ], "match_maps": [ - 2140 + 2440 ], "match_options_id": [ - 4462 + 4762 ], "opening_duels": [ - 4725 + 5076 ], "options": [ - 2187 + 2487 ], "organizer": [ - 3450 + 3750 ], "organizer_steam_id": [ 180 @@ -43949,64 +48538,64 @@ export default { 78 ], "player_assists": [ - 2627 + 2927 ], "player_damages": [ - 2688 + 2988 ], "player_flashes": [ - 2799 + 3099 ], "player_kills": [ - 2844 + 3144 ], "player_objectives": [ - 3043 + 3343 ], "player_unused_utilities": [ - 3330 + 3630 ], "player_utility": [ - 3371 + 3671 ], "region": [ 78 ], "region_veto_picks": [ - 2210 + 2510 ], "scheduled_at": [ - 4024 + 4324 ], "server": [ - 3573 + 3873 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4762 ], "source": [ 78 ], "started_at": [ - 4024 + 4324 ], "status": [ - 799 + 839 ], "streams": [ - 2237 + 2537 ], "tournament_brackets": [ - 4034 + 4334 ], "winner": [ - 1994 + 2294 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -44014,7 +48603,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4024 + 4324 ], "connection_link": [ 78 @@ -44023,22 +48612,22 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "current_match_map_id": [ - 4462 + 4762 ], "effective_at": [ - 4024 + 4324 ], "ended_at": [ - 4024 + 4324 ], "external_id": [ 78 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -44047,19 +48636,19 @@ export default { 78 ], "lineup_1_id": [ - 4462 + 4762 ], "lineup_2_id": [ - 4462 + 4762 ], "map_veto_picking_lineup_id": [ - 4462 + 4762 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4462 + 4762 ], "max_players_per_lineup": [ 38 @@ -44077,16 +48666,19 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4762 ], "scheduled_at": [ - 4024 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4762 + ], + "server_plugin_runtime": [ + 78 ], "server_region": [ 78 @@ -44098,13 +48690,13 @@ export default { 78 ], "started_at": [ - 4024 + 4324 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -44112,61 +48704,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "effective_at": [ - 2481 + 2781 ], "ended_at": [ - 2481 + 2781 ], "external_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "lineup_1_id": [ - 2481 + 2781 ], "lineup_2_id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "organizer_steam_id": [ - 2481 + 2781 ], "password": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "server_error": [ - 2481 + 2781 ], "server_id": [ - 2481 + 2781 ], "source": [ - 2481 + 2781 ], "started_at": [ - 2481 + 2781 ], "winning_lineup_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44174,7 +48766,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4024 + 4324 ], "connection_link": [ 78 @@ -44183,22 +48775,22 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "current_match_map_id": [ - 4462 + 4762 ], "effective_at": [ - 4024 + 4324 ], "ended_at": [ - 4024 + 4324 ], "external_id": [ 78 ], "id": [ - 4462 + 4762 ], "invite_code": [ 78 @@ -44207,19 +48799,19 @@ export default { 78 ], "lineup_1_id": [ - 4462 + 4762 ], "lineup_2_id": [ - 4462 + 4762 ], "map_veto_picking_lineup_id": [ - 4462 + 4762 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4462 + 4762 ], "max_players_per_lineup": [ 38 @@ -44237,16 +48829,19 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4762 ], "scheduled_at": [ - 4024 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4762 + ], + "server_plugin_runtime": [ + 78 ], "server_region": [ 78 @@ -44258,13 +48853,13 @@ export default { 78 ], "started_at": [ - 4024 + 4324 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -44272,61 +48867,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "effective_at": [ - 2481 + 2781 ], "ended_at": [ - 2481 + 2781 ], "external_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "lineup_1_id": [ - 2481 + 2781 ], "lineup_2_id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "organizer_steam_id": [ - 2481 + 2781 ], "password": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "server_error": [ - 2481 + 2781 ], "server_id": [ - 2481 + 2781 ], "source": [ - 2481 + 2781 ], "started_at": [ - 2481 + 2781 ], "winning_lineup_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44337,7 +48932,7 @@ export default { 38 ], "returning": [ - 2296 + 2596 ], "__typename": [ 78 @@ -44345,10 +48940,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2308 + 2608 ], "on_conflict": [ - 2315 + 2615 ], "__typename": [ 78 @@ -44356,13 +48951,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2306 + 2606 ], "update_columns": [ - 2330 + 2630 ], "where": [ - 2305 + 2605 ], "__typename": [ 78 @@ -44370,232 +48965,235 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2481 + 2781 ], "can_cancel": [ - 2481 + 2781 ], "can_check_in": [ - 2481 + 2781 ], "can_reassign_winner": [ - 2481 + 2781 ], "can_schedule": [ - 2481 + 2781 ], "can_start": [ - 2481 + 2781 ], "can_stream_live": [ - 2481 + 2781 ], "can_stream_tv": [ - 2481 + 2781 ], "cancels_at": [ - 2481 + 2781 ], "clutches_aggregate": [ - 4596 + 4947 ], "connection_link": [ - 2481 + 2781 ], "connection_string": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "current_match_map_id": [ - 2481 + 2781 ], "demos_aggregate": [ - 2025 + 2325 ], "draft_games_aggregate": [ 361 ], "e_match_status": [ - 807 + 847 ], "e_region": [ - 3538 + 3838 ], "effective_at": [ - 2481 + 2781 ], "elo_changes_aggregate": [ - 4803 + 5154 ], "ended_at": [ - 2481 + 2781 ], "external_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invite_code": [ - 2481 + 2781 ], "is_captain": [ - 2481 + 2781 ], "is_coach": [ - 2481 + 2781 ], "is_friend_in_match_lineup": [ - 2481 + 2781 ], "is_in_lineup": [ - 2481 + 2781 ], "is_match_server_available": [ - 2481 + 2781 ], "is_organizer": [ - 2481 + 2781 ], "is_server_online": [ - 2481 + 2781 ], "is_tournament_match": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "lineup_1": [ - 1996 + 2296 ], "lineup_1_id": [ - 2481 + 2781 ], "lineup_2": [ - 1996 + 2296 ], "lineup_2_id": [ - 2481 + 2781 ], "lineup_counts": [ - 2481 + 2781 ], "map_veto_picking_lineup_id": [ - 2481 + 2781 ], "map_veto_picks_aggregate": [ - 2115 + 2415 ], "map_veto_type": [ - 2481 + 2781 ], "match_maps_aggregate": [ - 2139 + 2439 ], "match_options_id": [ - 2481 + 2781 ], "max_players_per_lineup": [ - 2481 + 2781 ], "min_players_per_lineup": [ - 2481 + 2781 ], "opening_duels_aggregate": [ - 4724 + 5075 ], "options": [ - 2189 + 2489 ], "organizer": [ - 3452 + 3752 ], "organizer_steam_id": [ - 2481 + 2781 ], "password": [ - 2481 + 2781 ], "player_assists_aggregate": [ - 2626 + 2926 ], "player_damages_aggregate": [ - 2687 + 2987 ], "player_flashes_aggregate": [ - 2798 + 3098 ], "player_kills_aggregate": [ - 2843 + 3143 ], "player_objectives_aggregate": [ - 3042 + 3342 ], "player_unused_utilities_aggregate": [ - 3329 + 3629 ], "player_utility_aggregate": [ - 3370 + 3670 ], "region": [ - 2481 + 2781 ], "region_veto_picking_lineup_id": [ - 2481 + 2781 ], "region_veto_picks_aggregate": [ - 2209 + 2509 ], "requested_organizer": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "server": [ - 3575 + 3875 ], "server_error": [ - 2481 + 2781 ], "server_id": [ - 2481 + 2781 + ], + "server_plugin_runtime": [ + 2781 ], "server_region": [ - 2481 + 2781 ], "server_type": [ - 2481 + 2781 ], "source": [ - 2481 + 2781 ], "started_at": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "streams_aggregate": [ - 2235 + 2535 ], "teams_aggregate": [ - 3986 + 4286 ], "tournament_brackets_aggregate": [ - 4033 + 4333 ], "tv_connection_string": [ - 2481 + 2781 ], "winner": [ - 1996 + 2296 ], "winning_lineup_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44603,7 +49201,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -44612,31 +49210,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "ended_at": [ - 4024 + 4324 ], "external_id": [ 78 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "lineup_1_id": [ - 4462 + 4762 ], "lineup_2_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "organizer_steam_id": [ 180 @@ -44648,25 +49246,25 @@ export default { 78 ], "scheduled_at": [ - 4024 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4762 ], "source": [ 78 ], "started_at": [ - 4024 + 4324 ], "status": [ - 799 + 839 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -44688,7 +49286,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44710,7 +49308,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44732,7 +49330,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44740,7 +49338,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2327 + 2627 ], "ordering": [ 236 @@ -44751,34 +49349,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "effective_at": [ - 4024 + 4324 ], "ended_at": [ - 4024 + 4324 ], "external_id": [ 78 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "lineup_1_id": [ - 4462 + 4762 ], "lineup_2_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "organizer_steam_id": [ 180 @@ -44790,25 +49388,25 @@ export default { 78 ], "scheduled_at": [ - 4024 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4762 ], "source": [ 78 ], "started_at": [ - 4024 + 4324 ], "status": [ - 799 + 839 ], "winning_lineup_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -44830,7 +49428,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44839,13 +49437,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2307 + 2607 ], "_set": [ - 2319 + 2619 ], "where": [ - 2305 + 2605 ], "__typename": [ 78 @@ -44867,7 +49465,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44889,7 +49487,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44911,7 +49509,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -44930,10 +49528,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2340 + 2640 ], "nodes": [ - 2338 + 2638 ], "__typename": [ 78 @@ -44944,7 +49542,7 @@ export default { 38, { "columns": [ - 2350, + 2650, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -44953,10 +49551,10 @@ export default { } ], "max": [ - 2344 + 2644 ], "min": [ - 2345 + 2645 ], "__typename": [ 78 @@ -44964,13 +49562,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2341 + 2641 ], "_not": [ - 2341 + 2641 ], "_or": [ - 2341 + 2641 ], "hash": [ 80 @@ -45021,7 +49619,7 @@ export default { 38 ], "returning": [ - 2338 + 2638 ], "__typename": [ 78 @@ -45029,13 +49627,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2342 + 2642 ], "update_columns": [ - 2354 + 2654 ], "where": [ - 2341 + 2641 ], "__typename": [ 78 @@ -45043,10 +49641,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "__typename": [ 78 @@ -45074,7 +49672,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2353 + 2653 ], "ordering": [ 236 @@ -45097,10 +49695,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2351 + 2651 ], "where": [ - 2341 + 2641 ], "__typename": [ 78 @@ -45114,7 +49712,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -45126,7 +49724,7 @@ export default { 78 ], "elo": [ - 1352, + 1652, { "path": [ 78 @@ -45146,7 +49744,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -45164,7 +49762,7 @@ export default { 78 ], "last_presence_state": [ - 1352, + 1652, { "path": [ 78 @@ -45172,10 +49770,10 @@ export default { } ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -45184,16 +49782,16 @@ export default { 3 ], "player": [ - 3439 + 3739 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "presence_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -45211,7 +49809,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -45228,10 +49826,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2362 + 2662 ], "nodes": [ - 2356 + 2656 ], "__typename": [ 78 @@ -45239,13 +49837,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2359 + 2659 ], "bool_or": [ - 2360 + 2660 ], "count": [ - 2361 + 2661 ], "__typename": [ 78 @@ -45253,13 +49851,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2382 + 2682 ], "distinct": [ 3 ], "filter": [ - 2368 + 2668 ], "predicate": [ 4 @@ -45270,13 +49868,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2383 + 2683 ], "distinct": [ 3 ], "filter": [ - 2368 + 2668 ], "predicate": [ 4 @@ -45287,13 +49885,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2381 + 2681 ], "distinct": [ 3 ], "filter": [ - 2368 + 2668 ], "predicate": [ 39 @@ -45304,13 +49902,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2366 + 2666 ], "count": [ 38, { "columns": [ - 2381, + 2681, "[my_friends_select_column!]" ], "distinct": [ @@ -45319,31 +49917,31 @@ export default { } ], "max": [ - 2374 + 2674 ], "min": [ - 2376 + 2676 ], "stddev": [ - 2385 + 2685 ], "stddev_pop": [ - 2387 + 2687 ], "stddev_samp": [ - 2389 + 2689 ], "sum": [ - 2393 + 2693 ], "var_pop": [ - 2396 + 2696 ], "var_samp": [ - 2398 + 2698 ], "variance": [ - 2400 + 2700 ], "__typename": [ 78 @@ -45351,37 +49949,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2367 + 2667 ], "count": [ - 2481 + 2781 ], "max": [ - 2375 + 2675 ], "min": [ - 2377 + 2677 ], "stddev": [ - 2386 + 2686 ], "stddev_pop": [ - 2388 + 2688 ], "stddev_samp": [ - 2390 + 2690 ], "sum": [ - 2394 + 2694 ], "var_pop": [ - 2397 + 2697 ], "var_samp": [ - 2399 + 2699 ], "variance": [ - 2401 + 2701 ], "__typename": [ 78 @@ -45389,10 +49987,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1352 + 1652 ], "last_presence_state": [ - 1352 + 1652 ], "__typename": [ 78 @@ -45400,7 +49998,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2373 + 2673 ], "__typename": [ 78 @@ -45440,31 +50038,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -45472,13 +50070,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2368 + 2668 ], "_not": [ - 2368 + 2668 ], "_or": [ - 2368 + 2668 ], "avatar_url": [ 80 @@ -45487,7 +50085,7 @@ export default { 80 ], "created_at": [ - 4025 + 4325 ], "custom_avatar_url": [ 80 @@ -45499,7 +50097,7 @@ export default { 80 ], "elo": [ - 1354 + 1654 ], "faceit_elo": [ 39 @@ -45514,7 +50112,7 @@ export default { 39 ], "faceit_updated_at": [ - 4025 + 4325 ], "faceit_url": [ 80 @@ -45532,13 +50130,13 @@ export default { 80 ], "last_presence_state": [ - 1354 + 1654 ], "last_read_news_at": [ - 4025 + 4325 ], "last_sign_in_at": [ - 4025 + 4325 ], "name": [ 80 @@ -45547,16 +50145,16 @@ export default { 4 ], "player": [ - 3443 + 3743 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4025 + 4325 ], "presence_updated_at": [ - 4025 + 4325 ], "profile_url": [ 80 @@ -45574,7 +50172,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4025 + 4325 ], "steam_id": [ 182 @@ -45662,7 +50260,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -45674,7 +50272,7 @@ export default { 78 ], "elo": [ - 1352 + 1652 ], "faceit_elo": [ 38 @@ -45689,7 +50287,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -45707,13 +50305,13 @@ export default { 78 ], "last_presence_state": [ - 1352 + 1652 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -45722,16 +50320,16 @@ export default { 3 ], "player": [ - 3450 + 3750 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "presence_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -45749,7 +50347,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -45772,7 +50370,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -45796,7 +50394,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -45814,10 +50412,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -45826,10 +50424,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "presence_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -45844,7 +50442,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -45858,91 +50456,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2481 + 2781 ], "country": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "custom_avatar_url": [ - 2481 + 2781 ], "days_since_last_ban": [ - 2481 + 2781 ], "discord_id": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_nickname": [ - 2481 + 2781 ], "faceit_player_id": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "faceit_updated_at": [ - 2481 + 2781 ], "faceit_url": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "language": [ - 2481 + 2781 ], "last_read_news_at": [ - 2481 + 2781 ], "last_sign_in_at": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "premier_rank_updated_at": [ - 2481 + 2781 ], "presence_updated_at": [ - 2481 + 2781 ], "profile_url": [ - 2481 + 2781 ], "role": [ - 2481 + 2781 ], "roster_image_url": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "steam_bans_checked_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -45956,7 +50554,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -45980,7 +50578,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -45998,10 +50596,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -46010,10 +50608,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "presence_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -46028,7 +50626,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -46042,91 +50640,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2481 + 2781 ], "country": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "custom_avatar_url": [ - 2481 + 2781 ], "days_since_last_ban": [ - 2481 + 2781 ], "discord_id": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_nickname": [ - 2481 + 2781 ], "faceit_player_id": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "faceit_updated_at": [ - 2481 + 2781 ], "faceit_url": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "language": [ - 2481 + 2781 ], "last_read_news_at": [ - 2481 + 2781 ], "last_sign_in_at": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "premier_rank_updated_at": [ - 2481 + 2781 ], "presence_updated_at": [ - 2481 + 2781 ], "profile_url": [ - 2481 + 2781 ], "role": [ - 2481 + 2781 ], "roster_image_url": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "steam_bans_checked_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46137,7 +50735,7 @@ export default { 38 ], "returning": [ - 2356 + 2656 ], "__typename": [ 78 @@ -46145,109 +50743,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2481 + 2781 ], "country": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "custom_avatar_url": [ - 2481 + 2781 ], "days_since_last_ban": [ - 2481 + 2781 ], "discord_id": [ - 2481 + 2781 ], "elo": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_nickname": [ - 2481 + 2781 ], "faceit_player_id": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "faceit_updated_at": [ - 2481 + 2781 ], "faceit_url": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "language": [ - 2481 + 2781 ], "last_presence_state": [ - 2481 + 2781 ], "last_read_news_at": [ - 2481 + 2781 ], "last_sign_in_at": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "name_registered": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "premier_rank": [ - 2481 + 2781 ], "premier_rank_updated_at": [ - 2481 + 2781 ], "presence_updated_at": [ - 2481 + 2781 ], "profile_url": [ - 2481 + 2781 ], "role": [ - 2481 + 2781 ], "roster_image_url": [ - 2481 + 2781 ], "show_match_ready_modal": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "steam_bans_checked_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "vac_banned": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46255,10 +50853,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1352 + 1652 ], "last_presence_state": [ - 1352 + 1652 ], "__typename": [ 78 @@ -46275,7 +50873,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -46287,7 +50885,7 @@ export default { 78 ], "elo": [ - 1352 + 1652 ], "faceit_elo": [ 38 @@ -46302,7 +50900,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -46320,13 +50918,13 @@ export default { 78 ], "last_presence_state": [ - 1352 + 1652 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -46338,10 +50936,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "presence_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -46359,7 +50957,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -46408,31 +51006,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46472,31 +51070,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46536,31 +51134,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46568,7 +51166,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2392 + 2692 ], "ordering": [ 236 @@ -46585,7 +51183,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -46597,7 +51195,7 @@ export default { 78 ], "elo": [ - 1352 + 1652 ], "faceit_elo": [ 38 @@ -46612,7 +51210,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -46630,13 +51228,13 @@ export default { 78 ], "last_presence_state": [ - 1352 + 1652 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -46648,10 +51246,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "presence_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -46669,7 +51267,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -46718,31 +51316,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46750,28 +51348,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2364 + 2664 ], "_delete_at_path": [ - 2369 + 2669 ], "_delete_elem": [ - 2370 + 2670 ], "_delete_key": [ - 2371 + 2671 ], "_inc": [ - 2372 + 2672 ], "_prepend": [ - 2380 + 2680 ], "_set": [ - 2384 + 2684 ], "where": [ - 2368 + 2668 ], "__typename": [ 78 @@ -46811,31 +51409,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46875,31 +51473,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46939,31 +51537,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2481 + 2781 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_skill_level": [ - 2481 + 2781 ], "friend_steam_id": [ - 2481 + 2781 ], "game_ban_count": [ - 2481 + 2781 ], "invited_by_steam_id": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "vac_ban_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -46971,7 +51569,7 @@ export default { }, "news_articles": { "author": [ - 3439 + 3739 ], "author_steam_id": [ 180 @@ -46983,13 +51581,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "published_at": [ - 4024 + 4324 ], "slug": [ 78 @@ -47004,7 +51602,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "view_count": [ 180 @@ -47015,10 +51613,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2404 + 2704 ], "nodes": [ - 2402 + 2702 ], "__typename": [ 78 @@ -47026,13 +51624,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2405 + 2705 ], "count": [ 38, { "columns": [ - 2416, + 2716, "[news_articles_select_column!]" ], "distinct": [ @@ -47041,31 +51639,31 @@ export default { } ], "max": [ - 2410 + 2710 ], "min": [ - 2411 + 2711 ], "stddev": [ - 2418 + 2718 ], "stddev_pop": [ - 2419 + 2719 ], "stddev_samp": [ - 2420 + 2720 ], "sum": [ - 2423 + 2723 ], "var_pop": [ - 2426 + 2726 ], "var_samp": [ - 2427 + 2727 ], "variance": [ - 2428 + 2728 ], "__typename": [ 78 @@ -47084,16 +51682,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2406 + 2706 ], "_not": [ - 2406 + 2706 ], "_or": [ - 2406 + 2706 ], "author": [ - 3443 + 3743 ], "author_steam_id": [ 182 @@ -47105,13 +51703,13 @@ export default { 80 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "published_at": [ - 4025 + 4325 ], "slug": [ 80 @@ -47126,7 +51724,7 @@ export default { 80 ], "updated_at": [ - 4025 + 4325 ], "view_count": [ 182 @@ -47149,7 +51747,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3450 + 3750 ], "author_steam_id": [ 180 @@ -47161,13 +51759,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "published_at": [ - 4024 + 4324 ], "slug": [ 78 @@ -47182,7 +51780,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "view_count": [ 180 @@ -47202,13 +51800,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "published_at": [ - 4024 + 4324 ], "slug": [ 78 @@ -47223,7 +51821,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "view_count": [ 180 @@ -47243,13 +51841,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "published_at": [ - 4024 + 4324 ], "slug": [ 78 @@ -47264,7 +51862,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "view_count": [ 180 @@ -47278,7 +51876,7 @@ export default { 38 ], "returning": [ - 2402 + 2702 ], "__typename": [ 78 @@ -47286,13 +51884,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2407 + 2707 ], "update_columns": [ - 2424 + 2724 ], "where": [ - 2406 + 2706 ], "__typename": [ 78 @@ -47300,43 +51898,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3452 + 3752 ], "author_steam_id": [ - 2481 + 2781 ], "content_markdown": [ - 2481 + 2781 ], "cover_image_url": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "published_at": [ - 2481 + 2781 ], "slug": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "teaser": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "view_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -47344,7 +51942,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -47362,13 +51960,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "published_at": [ - 4024 + 4324 ], "slug": [ 78 @@ -47383,7 +51981,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "view_count": [ 180 @@ -47427,7 +52025,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2422 + 2722 ], "ordering": [ 236 @@ -47447,13 +52045,13 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "published_at": [ - 4024 + 4324 ], "slug": [ 78 @@ -47468,7 +52066,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "view_count": [ 180 @@ -47491,13 +52089,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2408 + 2708 ], "_set": [ - 2417 + 2717 ], "where": [ - 2406 + 2706 ], "__typename": [ 78 @@ -47538,7 +52136,7 @@ export default { }, "notifications": { "actions": [ - 1352, + 1652, { "path": [ 78 @@ -47546,19 +52144,19 @@ export default { } ], "created_at": [ - 4024 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4324 ], "entity_id": [ 78 ], "id": [ - 4462 + 4762 ], "is_read": [ 3 @@ -47567,10 +52165,10 @@ export default { 78 ], "player": [ - 3439 + 3739 ], "role": [ - 881 + 921 ], "steam_id": [ 180 @@ -47579,7 +52177,7 @@ export default { 78 ], "type": [ - 841 + 881 ], "__typename": [ 78 @@ -47587,10 +52185,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2435 + 2735 ], "nodes": [ - 2429 + 2729 ], "__typename": [ 78 @@ -47598,13 +52196,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2432 + 2732 ], "bool_or": [ - 2433 + 2733 ], "count": [ - 2434 + 2734 ], "__typename": [ 78 @@ -47612,13 +52210,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2458 + 2758 ], "distinct": [ 3 ], "filter": [ - 2441 + 2741 ], "predicate": [ 4 @@ -47629,13 +52227,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2459 + 2759 ], "distinct": [ 3 ], "filter": [ - 2441 + 2741 ], "predicate": [ 4 @@ -47646,13 +52244,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2457 + 2757 ], "distinct": [ 3 ], "filter": [ - 2441 + 2741 ], "predicate": [ 39 @@ -47663,13 +52261,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2439 + 2739 ], "count": [ 38, { "columns": [ - 2457, + 2757, "[notifications_select_column!]" ], "distinct": [ @@ -47678,31 +52276,31 @@ export default { } ], "max": [ - 2448 + 2748 ], "min": [ - 2450 + 2750 ], "stddev": [ - 2461 + 2761 ], "stddev_pop": [ - 2463 + 2763 ], "stddev_samp": [ - 2465 + 2765 ], "sum": [ - 2469 + 2769 ], "var_pop": [ - 2473 + 2773 ], "var_samp": [ - 2475 + 2775 ], "variance": [ - 2477 + 2777 ], "__typename": [ 78 @@ -47710,37 +52308,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2440 + 2740 ], "count": [ - 2481 + 2781 ], "max": [ - 2449 + 2749 ], "min": [ - 2451 + 2751 ], "stddev": [ - 2462 + 2762 ], "stddev_pop": [ - 2464 + 2764 ], "stddev_samp": [ - 2466 + 2766 ], "sum": [ - 2470 + 2770 ], "var_pop": [ - 2474 + 2774 ], "var_samp": [ - 2476 + 2776 ], "variance": [ - 2478 + 2778 ], "__typename": [ 78 @@ -47748,7 +52346,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1352 + 1652 ], "__typename": [ 78 @@ -47756,10 +52354,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2447 + 2747 ], "on_conflict": [ - 2453 + 2753 ], "__typename": [ 78 @@ -47775,7 +52373,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -47783,31 +52381,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2441 + 2741 ], "_not": [ - 2441 + 2741 ], "_or": [ - 2441 + 2741 ], "actions": [ - 1354 + 1654 ], "created_at": [ - 4025 + 4325 ], "deletable": [ 4 ], "deleted_at": [ - 4025 + 4325 ], "entity_id": [ 80 ], "id": [ - 4464 + 4764 ], "is_read": [ 4 @@ -47816,10 +52414,10 @@ export default { 80 ], "player": [ - 3443 + 3743 ], "role": [ - 882 + 922 ], "steam_id": [ 182 @@ -47828,7 +52426,7 @@ export default { 80 ], "type": [ - 842 + 882 ], "__typename": [ 78 @@ -47869,22 +52467,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1352 + 1652 ], "created_at": [ - 4024 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4324 ], "entity_id": [ 78 ], "id": [ - 4462 + 4762 ], "is_read": [ 3 @@ -47893,10 +52491,10 @@ export default { 78 ], "player": [ - 3450 + 3750 ], "role": [ - 881 + 921 ], "steam_id": [ 180 @@ -47905,7 +52503,7 @@ export default { 78 ], "type": [ - 841 + 881 ], "__typename": [ 78 @@ -47913,16 +52511,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "entity_id": [ 78 ], "id": [ - 4462 + 4762 ], "message": [ 78 @@ -47939,25 +52537,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "entity_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "message": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "__typename": [ 78 @@ -47965,16 +52563,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "entity_id": [ 78 ], "id": [ - 4462 + 4762 ], "message": [ 78 @@ -47991,25 +52589,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "entity_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "message": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48020,7 +52618,7 @@ export default { 38 ], "returning": [ - 2429 + 2729 ], "__typename": [ 78 @@ -48028,13 +52626,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2442 + 2742 ], "update_columns": [ - 2471 + 2771 ], "where": [ - 2441 + 2741 ], "__typename": [ 78 @@ -48042,43 +52640,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "deletable": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "entity_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "is_read": [ - 2481 + 2781 ], "message": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "role": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48086,7 +52684,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -48094,7 +52692,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1352 + 1652 ], "__typename": [ 78 @@ -48105,22 +52703,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1352 + 1652 ], "created_at": [ - 4024 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4324 ], "entity_id": [ 78 ], "id": [ - 4462 + 4762 ], "is_read": [ 3 @@ -48129,7 +52727,7 @@ export default { 78 ], "role": [ - 881 + 921 ], "steam_id": [ 180 @@ -48138,7 +52736,7 @@ export default { 78 ], "type": [ - 841 + 881 ], "__typename": [ 78 @@ -48154,7 +52752,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48170,7 +52768,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48186,7 +52784,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48194,7 +52792,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2468 + 2768 ], "ordering": [ 236 @@ -48205,22 +52803,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1352 + 1652 ], "created_at": [ - 4024 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4324 ], "entity_id": [ 78 ], "id": [ - 4462 + 4762 ], "is_read": [ 3 @@ -48229,7 +52827,7 @@ export default { 78 ], "role": [ - 881 + 921 ], "steam_id": [ 180 @@ -48238,7 +52836,7 @@ export default { 78 ], "type": [ - 841 + 881 ], "__typename": [ 78 @@ -48254,7 +52852,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48263,28 +52861,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2437 + 2737 ], "_delete_at_path": [ - 2443 + 2743 ], "_delete_elem": [ - 2444 + 2744 ], "_delete_key": [ - 2445 + 2745 ], "_inc": [ - 2446 + 2746 ], "_prepend": [ - 2456 + 2756 ], "_set": [ - 2460 + 2760 ], "where": [ - 2441 + 2741 ], "__typename": [ 78 @@ -48300,7 +52898,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48316,7 +52914,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48332,7 +52930,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48341,31 +52939,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2479 + 2779 ], "_gt": [ - 2479 + 2779 ], "_gte": [ - 2479 + 2779 ], "_in": [ - 2479 + 2779 ], "_is_null": [ 3 ], "_lt": [ - 2479 + 2779 ], "_lte": [ - 2479 + 2779 ], "_neq": [ - 2479 + 2779 ], "_nin": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48374,19 +52972,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4024 + 4324 ], "pending_match_import": [ - 2523 + 2823 ], "player": [ - 3439 + 3739 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48394,10 +52992,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2486 + 2786 ], "nodes": [ - 2482 + 2782 ], "__typename": [ 78 @@ -48405,7 +53003,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2485 + 2785 ], "__typename": [ 78 @@ -48413,13 +53011,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2503 + 2803 ], "distinct": [ 3 ], "filter": [ - 2491 + 2791 ], "predicate": [ 39 @@ -48430,13 +53028,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2489 + 2789 ], "count": [ 38, { "columns": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -48445,31 +53043,31 @@ export default { } ], "max": [ - 2495 + 2795 ], "min": [ - 2497 + 2797 ], "stddev": [ - 2505 + 2805 ], "stddev_pop": [ - 2507 + 2807 ], "stddev_samp": [ - 2509 + 2809 ], "sum": [ - 2513 + 2813 ], "var_pop": [ - 2517 + 2817 ], "var_samp": [ - 2519 + 2819 ], "variance": [ - 2521 + 2821 ], "__typename": [ 78 @@ -48477,37 +53075,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2490 + 2790 ], "count": [ - 2481 + 2781 ], "max": [ - 2496 + 2796 ], "min": [ - 2498 + 2798 ], "stddev": [ - 2506 + 2806 ], "stddev_pop": [ - 2508 + 2808 ], "stddev_samp": [ - 2510 + 2810 ], "sum": [ - 2514 + 2814 ], "var_pop": [ - 2518 + 2818 ], "var_samp": [ - 2520 + 2820 ], "variance": [ - 2522 + 2822 ], "__typename": [ 78 @@ -48515,10 +53113,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2494 + 2794 ], "on_conflict": [ - 2500 + 2800 ], "__typename": [ 78 @@ -48537,10 +53135,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48548,28 +53146,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2491 + 2791 ], "_not": [ - 2491 + 2791 ], "_or": [ - 2491 + 2791 ], "created_at": [ - 4025 + 4325 ], "pending_match_import": [ - 2527 + 2827 ], "player": [ - 3443 + 3743 ], "steam_id": [ 182 ], "valve_match_id": [ - 2480 + 2780 ], "__typename": [ 78 @@ -48581,7 +53179,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48589,19 +53187,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4024 + 4324 ], "pending_match_import": [ - 2534 + 2834 ], "player": [ - 3450 + 3750 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48609,13 +53207,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48623,13 +53221,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48637,13 +53235,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48651,13 +53249,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48668,7 +53266,7 @@ export default { 38 ], "returning": [ - 2482 + 2782 ], "__typename": [ 78 @@ -48676,13 +53274,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2492 + 2792 ], "update_columns": [ - 2515 + 2815 ], "where": [ - 2491 + 2791 ], "__typename": [ 78 @@ -48690,19 +53288,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2481 + 2781 ], "pending_match_import": [ - 2536 + 2836 ], "player": [ - 3452 + 3752 ], "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48713,7 +53311,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48722,13 +53320,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48747,10 +53345,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48769,10 +53367,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48791,10 +53389,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48802,7 +53400,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2512 + 2812 ], "ordering": [ 236 @@ -48813,13 +53411,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48830,7 +53428,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -48838,10 +53436,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48850,13 +53448,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2493 + 2793 ], "_set": [ - 2504 + 2804 ], "where": [ - 2491 + 2791 ], "__typename": [ 78 @@ -48875,10 +53473,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48897,10 +53495,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48919,10 +53517,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -48930,7 +53528,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4024 + 4324 ], "demo_url": [ 78 @@ -48942,13 +53540,13 @@ export default { 78 ], "match_start_time": [ - 4024 + 4324 ], "players": [ - 2482, + 2782, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48958,19 +53556,19 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], "players_aggregate": [ - 2483, + 2783, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48980,11 +53578,11 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], @@ -48995,10 +53593,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49006,10 +53604,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2525 + 2825 ], "nodes": [ - 2523 + 2823 ], "__typename": [ 78 @@ -49017,13 +53615,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2526 + 2826 ], "count": [ 38, { "columns": [ - 2538, + 2838, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -49032,31 +53630,31 @@ export default { } ], "max": [ - 2531 + 2831 ], "min": [ - 2532 + 2832 ], "stddev": [ - 2540 + 2840 ], "stddev_pop": [ - 2541 + 2841 ], "stddev_samp": [ - 2542 + 2842 ], "sum": [ - 2545 + 2845 ], "var_pop": [ - 2548 + 2848 ], "var_samp": [ - 2549 + 2849 ], "variance": [ - 2550 + 2850 ], "__typename": [ 78 @@ -49072,16 +53670,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2527 + 2827 ], "_not": [ - 2527 + 2827 ], "_or": [ - 2527 + 2827 ], "created_at": [ - 4025 + 4325 ], "demo_url": [ 80 @@ -49093,13 +53691,13 @@ export default { 80 ], "match_start_time": [ - 4025 + 4325 ], "players": [ - 2491 + 2791 ], "players_aggregate": [ - 2484 + 2784 ], "share_code": [ 80 @@ -49108,10 +53706,10 @@ export default { 80 ], "updated_at": [ - 4025 + 4325 ], "valve_match_id": [ - 2480 + 2780 ], "__typename": [ 78 @@ -49120,7 +53718,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49128,7 +53726,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4024 + 4324 ], "demo_url": [ 78 @@ -49140,10 +53738,10 @@ export default { 78 ], "match_start_time": [ - 4024 + 4324 ], "players": [ - 2488 + 2788 ], "share_code": [ 78 @@ -49152,10 +53750,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49163,7 +53761,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4024 + 4324 ], "demo_url": [ 78 @@ -49175,7 +53773,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4324 ], "share_code": [ 78 @@ -49184,10 +53782,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49195,7 +53793,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4024 + 4324 ], "demo_url": [ 78 @@ -49207,7 +53805,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4324 ], "share_code": [ 78 @@ -49216,10 +53814,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49230,7 +53828,7 @@ export default { 38 ], "returning": [ - 2523 + 2823 ], "__typename": [ 78 @@ -49238,10 +53836,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2530 + 2830 ], "on_conflict": [ - 2535 + 2835 ], "__typename": [ 78 @@ -49249,13 +53847,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2528 + 2828 ], "update_columns": [ - 2546 + 2846 ], "where": [ - 2527 + 2827 ], "__typename": [ 78 @@ -49263,34 +53861,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2481 + 2781 ], "demo_url": [ - 2481 + 2781 ], "error": [ - 2481 + 2781 ], "map_name": [ - 2481 + 2781 ], "match_start_time": [ - 2481 + 2781 ], "players_aggregate": [ - 2487 + 2787 ], "share_code": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "valve_match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -49298,7 +53896,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49307,7 +53905,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4024 + 4324 ], "demo_url": [ 78 @@ -49319,7 +53917,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4324 ], "share_code": [ 78 @@ -49328,10 +53926,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49363,7 +53961,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2544 + 2844 ], "ordering": [ 236 @@ -49374,7 +53972,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "demo_url": [ 78 @@ -49386,7 +53984,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4324 ], "share_code": [ 78 @@ -49395,10 +53993,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49406,7 +54004,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2479 + 2779 ], "__typename": [ 78 @@ -49415,13 +54013,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2529 + 2829 ], "_set": [ - 2539 + 2839 ], "where": [ - 2527 + 2827 ], "__typename": [ 78 @@ -49453,7 +54051,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3439 + 3739 ], "attacker_steam_id": [ 180 @@ -49468,7 +54066,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -49486,16 +54084,16 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "non_awp_hits": [ 38 @@ -49516,7 +54114,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -49527,10 +54125,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2553 + 2853 ], "nodes": [ - 2551 + 2851 ], "__typename": [ 78 @@ -49538,13 +54136,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2554 + 2854 ], "count": [ 38, { "columns": [ - 2565, + 2865, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -49553,31 +54151,31 @@ export default { } ], "max": [ - 2559 + 2859 ], "min": [ - 2560 + 2860 ], "stddev": [ - 2567 + 2867 ], "stddev_pop": [ - 2568 + 2868 ], "stddev_samp": [ - 2569 + 2869 ], "sum": [ - 2572 + 2872 ], "var_pop": [ - 2575 + 2875 ], "var_samp": [ - 2576 + 2876 ], "variance": [ - 2577 + 2877 ], "__typename": [ 78 @@ -49644,16 +54242,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2555 + 2855 ], "_not": [ - 2555 + 2855 ], "_or": [ - 2555 + 2855 ], "attacker": [ - 3443 + 3743 ], "attacker_steam_id": [ 182 @@ -49668,7 +54266,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2480 + 2780 ], "first_bullet_hits": [ 39 @@ -49686,16 +54284,16 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "non_awp_hits": [ 39 @@ -49716,7 +54314,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2480 + 2780 ], "total_engagement_frames": [ 39 @@ -49740,7 +54338,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -49776,7 +54374,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -49787,7 +54385,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3450 + 3750 ], "attacker_steam_id": [ 180 @@ -49802,7 +54400,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -49820,16 +54418,16 @@ export default { 38 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "non_awp_hits": [ 38 @@ -49850,7 +54448,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -49873,7 +54471,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -49891,10 +54489,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "non_awp_hits": [ 38 @@ -49915,7 +54513,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -49938,7 +54536,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -49956,10 +54554,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "non_awp_hits": [ 38 @@ -49980,7 +54578,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -49994,7 +54592,7 @@ export default { 38 ], "returning": [ - 2551 + 2851 ], "__typename": [ 78 @@ -50002,13 +54600,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2556 + 2856 ], "update_columns": [ - 2573 + 2873 ], "where": [ - 2555 + 2855 ], "__typename": [ 78 @@ -50016,73 +54614,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3452 + 3752 ], "attacker_steam_id": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "__typename": [ 78 @@ -50093,7 +54691,7 @@ export default { 180 ], "match_map_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -50114,7 +54712,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -50132,10 +54730,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "non_awp_hits": [ 38 @@ -50156,7 +54754,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -50344,7 +54942,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2571 + 2871 ], "ordering": [ 236 @@ -50367,7 +54965,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -50385,10 +54983,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "non_awp_hits": [ 38 @@ -50409,7 +55007,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -50432,7 +55030,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "first_bullet_hits": [ 38 @@ -50468,7 +55066,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -50480,13 +55078,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2557 + 2857 ], "_set": [ - 2566 + 2866 ], "where": [ - 2555 + 2855 ], "__typename": [ 78 @@ -50683,19 +55281,19 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "shots": [ 38 @@ -50715,10 +55313,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2582 + 2882 ], "nodes": [ - 2578 + 2878 ], "__typename": [ 78 @@ -50726,7 +55324,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2581 + 2881 ], "__typename": [ 78 @@ -50734,13 +55332,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2599 + 2899 ], "distinct": [ 3 ], "filter": [ - 2587 + 2887 ], "predicate": [ 39 @@ -50751,13 +55349,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2585 + 2885 ], "count": [ 38, { "columns": [ - 2599, + 2899, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -50766,31 +55364,31 @@ export default { } ], "max": [ - 2591 + 2891 ], "min": [ - 2593 + 2893 ], "stddev": [ - 2601 + 2901 ], "stddev_pop": [ - 2603 + 2903 ], "stddev_samp": [ - 2605 + 2905 ], "sum": [ - 2609 + 2909 ], "var_pop": [ - 2613 + 2913 ], "var_samp": [ - 2615 + 2915 ], "variance": [ - 2617 + 2917 ], "__typename": [ 78 @@ -50798,37 +55396,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2586 + 2886 ], "count": [ - 2481 + 2781 ], "max": [ - 2592 + 2892 ], "min": [ - 2594 + 2894 ], "stddev": [ - 2602 + 2902 ], "stddev_pop": [ - 2604 + 2904 ], "stddev_samp": [ - 2606 + 2906 ], "sum": [ - 2610 + 2910 ], "var_pop": [ - 2614 + 2914 ], "var_samp": [ - 2616 + 2916 ], "variance": [ - 2618 + 2918 ], "__typename": [ 78 @@ -50836,10 +55434,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2590 + 2890 ], "on_conflict": [ - 2596 + 2896 ], "__typename": [ 78 @@ -50873,25 +55471,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -50899,13 +55497,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2587 + 2887 ], "_not": [ - 2587 + 2887 ], "_or": [ - 2587 + 2887 ], "first_bullet_hits": [ 39 @@ -50920,19 +55518,19 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "shots": [ 39 @@ -50991,19 +55589,19 @@ export default { 38 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "shots": [ 38 @@ -51035,10 +55633,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -51058,34 +55656,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "weapon_class": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51105,10 +55703,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -51128,34 +55726,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "weapon_class": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51166,7 +55764,7 @@ export default { 38 ], "returning": [ - 2578 + 2878 ], "__typename": [ 78 @@ -51174,13 +55772,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2588 + 2888 ], "update_columns": [ - 2611 + 2911 ], "where": [ - 2587 + 2887 ], "__typename": [ 78 @@ -51188,43 +55786,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "weapon_class": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51232,7 +55830,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -51259,10 +55857,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -51308,25 +55906,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51360,25 +55958,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51412,25 +56010,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51438,7 +56036,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2608 + 2908 ], "ordering": [ 236 @@ -51461,10 +56059,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -51510,25 +56108,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51537,13 +56135,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2589 + 2889 ], "_set": [ - 2600 + 2900 ], "where": [ - 2587 + 2887 ], "__typename": [ 78 @@ -51577,25 +56175,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51629,25 +56227,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51681,25 +56279,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51707,7 +56305,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3439 + 3739 ], "attacked_steam_id": [ 180 @@ -51722,7 +56320,7 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "flash": [ 3 @@ -51731,25 +56329,25 @@ export default { 3 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -51757,10 +56355,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2625 + 2925 ], "nodes": [ - 2619 + 2919 ], "__typename": [ 78 @@ -51768,13 +56366,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2622 + 2922 ], "bool_or": [ - 2623 + 2923 ], "count": [ - 2624 + 2924 ], "__typename": [ 78 @@ -51782,13 +56380,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2643 + 2943 ], "distinct": [ 3 ], "filter": [ - 2630 + 2930 ], "predicate": [ 4 @@ -51799,13 +56397,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2644 + 2944 ], "distinct": [ 3 ], "filter": [ - 2630 + 2930 ], "predicate": [ 4 @@ -51816,13 +56414,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2642 + 2942 ], "distinct": [ 3 ], "filter": [ - 2630 + 2930 ], "predicate": [ 39 @@ -51833,13 +56431,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2628 + 2928 ], "count": [ 38, { "columns": [ - 2642, + 2942, "[player_assists_select_column!]" ], "distinct": [ @@ -51848,31 +56446,31 @@ export default { } ], "max": [ - 2634 + 2934 ], "min": [ - 2636 + 2936 ], "stddev": [ - 2646 + 2946 ], "stddev_pop": [ - 2648 + 2948 ], "stddev_samp": [ - 2650 + 2950 ], "sum": [ - 2654 + 2954 ], "var_pop": [ - 2658 + 2958 ], "var_samp": [ - 2660 + 2960 ], "variance": [ - 2662 + 2962 ], "__typename": [ 78 @@ -51880,37 +56478,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2629 + 2929 ], "count": [ - 2481 + 2781 ], "max": [ - 2635 + 2935 ], "min": [ - 2637 + 2937 ], "stddev": [ - 2647 + 2947 ], "stddev_pop": [ - 2649 + 2949 ], "stddev_samp": [ - 2651 + 2951 ], "sum": [ - 2655 + 2955 ], "var_pop": [ - 2659 + 2959 ], "var_samp": [ - 2661 + 2961 ], "variance": [ - 2663 + 2963 ], "__typename": [ 78 @@ -51918,10 +56516,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2633 + 2933 ], "on_conflict": [ - 2639 + 2939 ], "__typename": [ 78 @@ -51943,13 +56541,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -51957,16 +56555,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2630 + 2930 ], "_not": [ - 2630 + 2930 ], "_or": [ - 2630 + 2930 ], "attacked_player": [ - 3443 + 3743 ], "attacked_steam_id": [ 182 @@ -51981,7 +56579,7 @@ export default { 80 ], "deleted_at": [ - 4025 + 4325 ], "flash": [ 4 @@ -51990,25 +56588,25 @@ export default { 4 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "round": [ 39 ], "time": [ - 4025 + 4325 ], "__typename": [ 78 @@ -52031,7 +56629,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3450 + 3750 ], "attacked_steam_id": [ 180 @@ -52046,31 +56644,31 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "flash": [ 3 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -52090,19 +56688,19 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -52110,31 +56708,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52154,19 +56752,19 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -52174,31 +56772,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52209,7 +56807,7 @@ export default { 38 ], "returning": [ - 2619 + 2919 ], "__typename": [ 78 @@ -52217,13 +56815,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2631 + 2931 ], "update_columns": [ - 2656 + 2956 ], "where": [ - 2630 + 2930 ], "__typename": [ 78 @@ -52231,49 +56829,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3452 + 3752 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "flash": [ - 2481 + 2781 ], "is_team_assist": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52287,10 +56885,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4762 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -52313,22 +56911,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "flash": [ 3 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -52350,13 +56948,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52378,13 +56976,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52406,13 +57004,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52420,7 +57018,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2653 + 2953 ], "ordering": [ 236 @@ -52443,22 +57041,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "flash": [ 3 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -52480,13 +57078,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52495,13 +57093,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2632 + 2932 ], "_set": [ - 2645 + 2945 ], "where": [ - 2630 + 2930 ], "__typename": [ 78 @@ -52523,13 +57121,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52551,13 +57149,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52579,13 +57177,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -52593,28 +57191,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "counter_strafe_pct": [ - 2479 + 2779 ], "crosshair_deg": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "maps": [ 38 @@ -52629,16 +57227,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "time_to_damage_s": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "__typename": [ 78 @@ -52646,10 +57244,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2666 + 2966 ], "nodes": [ - 2664 + 2964 ], "__typename": [ 78 @@ -52657,13 +57255,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2667 + 2967 ], "count": [ 38, { "columns": [ - 2672, + 2972, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -52672,31 +57270,31 @@ export default { } ], "max": [ - 2669 + 2969 ], "min": [ - 2670 + 2970 ], "stddev": [ - 2673 + 2973 ], "stddev_pop": [ - 2674 + 2974 ], "stddev_samp": [ - 2675 + 2975 ], "sum": [ - 2678 + 2978 ], "var_pop": [ - 2679 + 2979 ], "var_samp": [ - 2680 + 2980 ], "variance": [ - 2681 + 2981 ], "__typename": [ 78 @@ -52757,37 +57355,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2668 + 2968 ], "_not": [ - 2668 + 2968 ], "_or": [ - 2668 + 2968 ], "accuracy": [ - 2480 + 2780 ], "accuracy_spotted": [ - 2480 + 2780 ], "counter_strafe_pct": [ - 2480 + 2780 ], "crosshair_deg": [ - 2480 + 2780 ], "enemy_blind_pr": [ - 2480 + 2780 ], "flash_assists_pr": [ - 2480 + 2780 ], "hs_pct": [ - 2480 + 2780 ], "kast_pct": [ - 2480 + 2780 ], "maps": [ 39 @@ -52802,16 +57400,16 @@ export default { 182 ], "survival_pct": [ - 2480 + 2780 ], "time_to_damage_s": [ - 2480 + 2780 ], "traded_death_pct": [ - 2480 + 2780 ], "util_efficiency": [ - 2480 + 2780 ], "__typename": [ 78 @@ -52819,28 +57417,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "counter_strafe_pct": [ - 2479 + 2779 ], "crosshair_deg": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "maps": [ 38 @@ -52855,16 +57453,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "time_to_damage_s": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "__typename": [ 78 @@ -52872,28 +57470,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "counter_strafe_pct": [ - 2479 + 2779 ], "crosshair_deg": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "maps": [ 38 @@ -52908,16 +57506,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "time_to_damage_s": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "__typename": [ 78 @@ -52925,52 +57523,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2481 + 2781 ], "accuracy_spotted": [ - 2481 + 2781 ], "counter_strafe_pct": [ - 2481 + 2781 ], "crosshair_deg": [ - 2481 + 2781 ], "enemy_blind_pr": [ - 2481 + 2781 ], "flash_assists_pr": [ - 2481 + 2781 ], "hs_pct": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "maps": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "rounds": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "survival_pct": [ - 2481 + 2781 ], "time_to_damage_s": [ - 2481 + 2781 ], "traded_death_pct": [ - 2481 + 2781 ], "util_efficiency": [ - 2481 + 2781 ], "__typename": [ 78 @@ -53138,7 +57736,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2677 + 2977 ], "ordering": [ 236 @@ -53149,28 +57747,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "counter_strafe_pct": [ - 2479 + 2779 ], "crosshair_deg": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "maps": [ 38 @@ -53185,16 +57783,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "time_to_damage_s": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "__typename": [ 78 @@ -53202,28 +57800,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "counter_strafe_pct": [ - 2479 + 2779 ], "crosshair_deg": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "maps": [ 38 @@ -53238,16 +57836,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "time_to_damage_s": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "__typename": [ 78 @@ -53423,7 +58021,7 @@ export default { 78 ], "attacked_player": [ - 3439 + 3739 ], "attacked_steam_id": [ 180 @@ -53450,7 +58048,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4324 ], "health": [ 38 @@ -53459,31 +58057,31 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "round": [ - 2479 + 2779 ], "team_damage": [ 3 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -53494,10 +58092,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2686 + 2986 ], "nodes": [ - 2682 + 2982 ], "__typename": [ 78 @@ -53505,7 +58103,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2685 + 2985 ], "__typename": [ 78 @@ -53513,13 +58111,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2703 + 3003 ], "distinct": [ 3 ], "filter": [ - 2691 + 2991 ], "predicate": [ 39 @@ -53530,13 +58128,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2689 + 2989 ], "count": [ 38, { "columns": [ - 2703, + 3003, "[player_damages_select_column!]" ], "distinct": [ @@ -53545,31 +58143,31 @@ export default { } ], "max": [ - 2695 + 2995 ], "min": [ - 2697 + 2997 ], "stddev": [ - 2705 + 3005 ], "stddev_pop": [ - 2707 + 3007 ], "stddev_samp": [ - 2709 + 3009 ], "sum": [ - 2713 + 3013 ], "var_pop": [ - 2717 + 3017 ], "var_samp": [ - 2719 + 3019 ], "variance": [ - 2721 + 3021 ], "__typename": [ 78 @@ -53577,37 +58175,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2690 + 2990 ], "count": [ - 2481 + 2781 ], "max": [ - 2696 + 2996 ], "min": [ - 2698 + 2998 ], "stddev": [ - 2706 + 3006 ], "stddev_pop": [ - 2708 + 3008 ], "stddev_samp": [ - 2710 + 3010 ], "sum": [ - 2714 + 3014 ], "var_pop": [ - 2718 + 3018 ], "var_samp": [ - 2720 + 3020 ], "variance": [ - 2722 + 3022 ], "__typename": [ 78 @@ -53615,10 +58213,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2694 + 2994 ], "on_conflict": [ - 2700 + 3000 ], "__typename": [ 78 @@ -53652,25 +58250,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -53678,13 +58276,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2691 + 2991 ], "_not": [ - 2691 + 2991 ], "_or": [ - 2691 + 2991 ], "armor": [ 39 @@ -53696,7 +58294,7 @@ export default { 80 ], "attacked_player": [ - 3443 + 3743 ], "attacked_steam_id": [ 182 @@ -53723,7 +58321,7 @@ export default { 39 ], "deleted_at": [ - 4025 + 4325 ], "health": [ 39 @@ -53732,31 +58330,31 @@ export default { 80 ], "id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "round": [ - 2480 + 2780 ], "team_damage": [ 4 ], "time": [ - 4025 + 4325 ], "with": [ 80 @@ -53786,7 +58384,7 @@ export default { 38 ], "round": [ - 2479 + 2779 ], "__typename": [ 78 @@ -53803,7 +58401,7 @@ export default { 78 ], "attacked_player": [ - 3450 + 3750 ], "attacked_steam_id": [ 180 @@ -53830,7 +58428,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4324 ], "health": [ 38 @@ -53839,28 +58437,28 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "round": [ - 2479 + 2779 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -53904,7 +58502,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4324 ], "health": [ 38 @@ -53913,19 +58511,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ - 2479 + 2779 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -53936,64 +58534,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2481 + 2781 ], "attacked_location": [ - 2481 + 2781 ], "attacked_location_coordinates": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_location": [ - 2481 + 2781 ], "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "hitgroup": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54034,7 +58632,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4324 ], "health": [ 38 @@ -54043,19 +58641,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ - 2479 + 2779 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -54066,64 +58664,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2481 + 2781 ], "attacked_location": [ - 2481 + 2781 ], "attacked_location_coordinates": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_location": [ - 2481 + 2781 ], "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "hitgroup": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54134,7 +58732,7 @@ export default { 38 ], "returning": [ - 2682 + 2982 ], "__typename": [ 78 @@ -54142,13 +58740,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2692 + 2992 ], "update_columns": [ - 2715 + 3015 ], "where": [ - 2691 + 2991 ], "__typename": [ 78 @@ -54156,79 +58754,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2481 + 2781 ], "attacked_location": [ - 2481 + 2781 ], "attacked_location_coordinates": [ - 2481 + 2781 ], "attacked_player": [ - 3452 + 3752 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_location": [ - 2481 + 2781 ], "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "hitgroup": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "round": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54236,13 +58834,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -54284,7 +58882,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4324 ], "health": [ 38 @@ -54293,19 +58891,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ - 2479 + 2779 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -54342,25 +58940,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54394,25 +58992,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54446,25 +59044,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54472,7 +59070,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 2712 + 3012 ], "ordering": [ 236 @@ -54516,7 +59114,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4324 ], "health": [ 38 @@ -54525,19 +59123,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ - 2479 + 2779 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -54566,7 +59164,7 @@ export default { 38 ], "round": [ - 2479 + 2779 ], "__typename": [ 78 @@ -54574,25 +59172,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54601,13 +59199,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2693 + 2993 ], "_set": [ - 2704 + 3004 ], "where": [ - 2691 + 2991 ], "__typename": [ 78 @@ -54641,25 +59239,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54693,25 +59291,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54745,25 +59343,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_armor": [ - 2481 + 2781 ], "health": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -54771,40 +59369,40 @@ export default { }, "player_elo": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "created_at": [ - 4024 + 4324 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -54816,28 +59414,28 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player": [ - 3439 + 3739 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season": [ - 3498 + 3798 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 @@ -54846,10 +59444,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -54857,10 +59455,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 2725 + 3025 ], "nodes": [ - 2723 + 3023 ], "__typename": [ 78 @@ -54868,13 +59466,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 2726 + 3026 ], "count": [ 38, { "columns": [ - 2737, + 3037, "[player_elo_select_column!]" ], "distinct": [ @@ -54883,31 +59481,31 @@ export default { } ], "max": [ - 2731 + 3031 ], "min": [ - 2732 + 3032 ], "stddev": [ - 2739 + 3039 ], "stddev_pop": [ - 2740 + 3040 ], "stddev_samp": [ - 2741 + 3041 ], "sum": [ - 2744 + 3044 ], "var_pop": [ - 2747 + 3047 ], "var_samp": [ - 2748 + 3048 ], "variance": [ - 2749 + 3049 ], "__typename": [ 78 @@ -54980,49 +59578,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 2727 + 3027 ], "_not": [ - 2727 + 3027 ], "_or": [ - 2727 + 3027 ], "actual_score": [ - 1201 + 1500 ], "assists": [ 39 ], "change": [ - 2480 + 2780 ], "created_at": [ - 4025 + 4325 ], "current": [ - 2480 + 2780 ], "damage": [ 39 ], "damage_percent": [ - 1201 + 1500 ], "deaths": [ 39 ], "expected_score": [ - 1201 + 1500 ], "impact": [ - 2480 + 2780 ], "k_factor": [ 39 ], "kda": [ - 1201 + 1500 ], "kills": [ 39 @@ -55034,28 +59632,28 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "opponent_team_elo_avg": [ - 1201 + 1500 ], "performance_multiplier": [ - 1201 + 1500 ], "player": [ - 3443 + 3743 ], "player_team_elo_avg": [ - 1201 + 1500 ], "season": [ - 3502 + 3802 ], "season_id": [ - 4464 + 4764 ], "series_multiplier": [ 39 @@ -55064,10 +59662,10 @@ export default { 182 ], "team_avg_kda": [ - 1201 + 1500 ], "type": [ - 821 + 861 ], "__typename": [ 78 @@ -55076,37 +59674,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -55118,13 +59716,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_team_elo_avg": [ - 1200 + 1499 ], "series_multiplier": [ 38 @@ -55133,7 +59731,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "__typename": [ 78 @@ -55141,40 +59739,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "created_at": [ - 4024 + 4324 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -55186,28 +59784,28 @@ export default { 38 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player": [ - 3450 + 3750 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season": [ - 3509 + 3809 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 @@ -55216,10 +59814,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -55227,40 +59825,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "created_at": [ - 4024 + 4324 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -55272,19 +59870,19 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 @@ -55293,7 +59891,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "__typename": [ 78 @@ -55301,40 +59899,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "created_at": [ - 4024 + 4324 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -55346,19 +59944,19 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 @@ -55367,7 +59965,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "__typename": [ 78 @@ -55378,7 +59976,7 @@ export default { 38 ], "returning": [ - 2723 + 3023 ], "__typename": [ 78 @@ -55386,13 +59984,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 2728 + 3028 ], "update_columns": [ - 2745 + 3045 ], "where": [ - 2727 + 3027 ], "__typename": [ 78 @@ -55400,85 +59998,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "change": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "current": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_team_elo_avg": [ - 2481 + 2781 ], "season": [ - 3511 + 3811 ], "season_id": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -55486,13 +60084,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4462 + 4762 ], "steam_id": [ 180 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -55501,40 +60099,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "created_at": [ - 4024 + 4324 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -55546,19 +60144,19 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 @@ -55567,10 +60165,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -55773,7 +60371,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 2743 + 3043 ], "ordering": [ 236 @@ -55784,40 +60382,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "created_at": [ - 4024 + 4324 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -55829,19 +60427,19 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 @@ -55850,10 +60448,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ - 820 + 860 ], "__typename": [ 78 @@ -55861,37 +60459,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 ], "change": [ - 2479 + 2779 ], "current": [ - 2479 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 2479 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -55903,13 +60501,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_team_elo_avg": [ - 1200 + 1499 ], "series_multiplier": [ 38 @@ -55918,7 +60516,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1499 ], "__typename": [ 78 @@ -55927,13 +60525,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2729 + 3029 ], "_set": [ - 2738 + 3038 ], "where": [ - 2727 + 3027 ], "__typename": [ 78 @@ -56139,19 +60737,19 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "player": [ - 3439 + 3739 ], "previous_rank": [ 38 @@ -56168,10 +60766,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2754 + 3054 ], "nodes": [ - 2750 + 3050 ], "__typename": [ 78 @@ -56179,7 +60777,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2753 + 3053 ], "__typename": [ 78 @@ -56187,13 +60785,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2771 + 3071 ], "distinct": [ 3 ], "filter": [ - 2759 + 3059 ], "predicate": [ 39 @@ -56204,13 +60802,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2757 + 3057 ], "count": [ 38, { "columns": [ - 2771, + 3071, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -56219,31 +60817,31 @@ export default { } ], "max": [ - 2763 + 3063 ], "min": [ - 2765 + 3065 ], "stddev": [ - 2773 + 3073 ], "stddev_pop": [ - 2775 + 3075 ], "stddev_samp": [ - 2777 + 3077 ], "sum": [ - 2781 + 3081 ], "var_pop": [ - 2785 + 3085 ], "var_samp": [ - 2787 + 3087 ], "variance": [ - 2789 + 3089 ], "__typename": [ 78 @@ -56251,37 +60849,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2758 + 3058 ], "count": [ - 2481 + 2781 ], "max": [ - 2764 + 3064 ], "min": [ - 2766 + 3066 ], "stddev": [ - 2774 + 3074 ], "stddev_pop": [ - 2776 + 3076 ], "stddev_samp": [ - 2778 + 3078 ], "sum": [ - 2782 + 3082 ], "var_pop": [ - 2786 + 3086 ], "var_samp": [ - 2788 + 3088 ], "variance": [ - 2790 + 3090 ], "__typename": [ 78 @@ -56289,10 +60887,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2762 + 3062 ], "on_conflict": [ - 2768 + 3068 ], "__typename": [ 78 @@ -56317,16 +60915,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56334,31 +60932,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2759 + 3059 ], "_not": [ - 2759 + 3059 ], "_or": [ - 2759 + 3059 ], "elo": [ 39 ], "id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "observed_at": [ - 4025 + 4325 ], "player": [ - 3443 + 3743 ], "previous_rank": [ 39 @@ -56396,19 +60994,19 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "player": [ - 3450 + 3750 ], "previous_rank": [ 38 @@ -56428,13 +61026,13 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -56451,25 +61049,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "observed_at": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56480,13 +61078,13 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -56503,25 +61101,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "observed_at": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56532,7 +61130,7 @@ export default { 38 ], "returning": [ - 2750 + 3050 ], "__typename": [ 78 @@ -56540,13 +61138,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2760 + 3060 ], "update_columns": [ - 2783 + 3083 ], "where": [ - 2759 + 3059 ], "__typename": [ 78 @@ -56554,31 +61152,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "observed_at": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56586,7 +61184,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -56598,13 +61196,13 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -56638,16 +61236,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56672,16 +61270,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56706,16 +61304,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56723,7 +61321,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2780 + 3080 ], "ordering": [ 236 @@ -56737,13 +61335,13 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -56777,16 +61375,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56795,13 +61393,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2761 + 3061 ], "_set": [ - 2772 + 3072 ], "where": [ - 2759 + 3059 ], "__typename": [ 78 @@ -56826,16 +61424,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56860,16 +61458,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56894,16 +61492,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "skill_level": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -56917,25 +61515,25 @@ export default { 180 ], "blinded": [ - 3439 + 3739 ], "deleted_at": [ - 4024 + 4324 ], "duration": [ - 2479 + 2779 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -56944,10 +61542,10 @@ export default { 3 ], "thrown_by": [ - 3439 + 3739 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -56955,10 +61553,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 2797 + 3097 ], "nodes": [ - 2791 + 3091 ], "__typename": [ 78 @@ -56966,13 +61564,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2794 + 3094 ], "bool_or": [ - 2795 + 3095 ], "count": [ - 2796 + 3096 ], "__typename": [ 78 @@ -56980,13 +61578,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2815 + 3115 ], "distinct": [ 3 ], "filter": [ - 2802 + 3102 ], "predicate": [ 4 @@ -56997,13 +61595,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2816 + 3116 ], "distinct": [ 3 ], "filter": [ - 2802 + 3102 ], "predicate": [ 4 @@ -57014,13 +61612,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2814 + 3114 ], "distinct": [ 3 ], "filter": [ - 2802 + 3102 ], "predicate": [ 39 @@ -57031,13 +61629,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 2800 + 3100 ], "count": [ 38, { "columns": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "distinct": [ @@ -57046,31 +61644,31 @@ export default { } ], "max": [ - 2806 + 3106 ], "min": [ - 2808 + 3108 ], "stddev": [ - 2818 + 3118 ], "stddev_pop": [ - 2820 + 3120 ], "stddev_samp": [ - 2822 + 3122 ], "sum": [ - 2826 + 3126 ], "var_pop": [ - 2830 + 3130 ], "var_samp": [ - 2832 + 3132 ], "variance": [ - 2834 + 3134 ], "__typename": [ 78 @@ -57078,37 +61676,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 2801 + 3101 ], "count": [ - 2481 + 2781 ], "max": [ - 2807 + 3107 ], "min": [ - 2809 + 3109 ], "stddev": [ - 2819 + 3119 ], "stddev_pop": [ - 2821 + 3121 ], "stddev_samp": [ - 2823 + 3123 ], "sum": [ - 2827 + 3127 ], "var_pop": [ - 2831 + 3131 ], "var_samp": [ - 2833 + 3133 ], "variance": [ - 2835 + 3135 ], "__typename": [ 78 @@ -57116,10 +61714,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 2805 + 3105 ], "on_conflict": [ - 2811 + 3111 ], "__typename": [ 78 @@ -57144,16 +61742,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57161,13 +61759,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 2802 + 3102 ], "_not": [ - 2802 + 3102 ], "_or": [ - 2802 + 3102 ], "attacked_steam_id": [ 182 @@ -57176,25 +61774,25 @@ export default { 182 ], "blinded": [ - 3443 + 3743 ], "deleted_at": [ - 4025 + 4325 ], "duration": [ - 2480 + 2780 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "round": [ 39 @@ -57203,10 +61801,10 @@ export default { 4 ], "thrown_by": [ - 3443 + 3743 ], "time": [ - 4025 + 4325 ], "__typename": [ 78 @@ -57221,7 +61819,7 @@ export default { 180 ], "duration": [ - 2479 + 2779 ], "round": [ 38 @@ -57238,25 +61836,25 @@ export default { 180 ], "blinded": [ - 3450 + 3750 ], "deleted_at": [ - 4024 + 4324 ], "duration": [ - 2479 + 2779 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -57265,10 +61863,10 @@ export default { 3 ], "thrown_by": [ - 3450 + 3750 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -57282,22 +61880,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "duration": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -57305,28 +61903,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57340,22 +61938,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "duration": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -57363,28 +61961,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57395,7 +61993,7 @@ export default { 38 ], "returning": [ - 2791 + 3091 ], "__typename": [ 78 @@ -57403,13 +62001,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 2803 + 3103 ], "update_columns": [ - 2828 + 3128 ], "where": [ - 2802 + 3102 ], "__typename": [ 78 @@ -57417,43 +62015,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "blinded": [ - 3452 + 3752 ], "deleted_at": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_flash": [ - 2481 + 2781 ], "thrown_by": [ - 3452 + 3752 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57467,10 +62065,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4762 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -57487,16 +62085,16 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "duration": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -57505,7 +62103,7 @@ export default { 3 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -57530,16 +62128,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57564,16 +62162,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57598,16 +62196,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57615,7 +62213,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2825 + 3125 ], "ordering": [ 236 @@ -57632,16 +62230,16 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "duration": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -57650,7 +62248,7 @@ export default { 3 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -57664,7 +62262,7 @@ export default { 180 ], "duration": [ - 2479 + 2779 ], "round": [ 38 @@ -57675,16 +62273,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57693,13 +62291,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2804 + 3104 ], "_set": [ - 2817 + 3117 ], "where": [ - 2802 + 3102 ], "__typename": [ 78 @@ -57724,16 +62322,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57758,16 +62356,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57792,16 +62390,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "duration": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -57818,7 +62416,7 @@ export default { 78 ], "attacked_player": [ - 3439 + 3739 ], "attacked_steam_id": [ 180 @@ -57842,7 +62440,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4324 ], "headshot": [ 3 @@ -57857,22 +62455,22 @@ export default { 3 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "no_scope": [ 3 ], "player": [ - 3439 + 3739 ], "round": [ 38 @@ -57887,7 +62485,7 @@ export default { 3 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -57898,10 +62496,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 2842 + 3142 ], "nodes": [ - 2836 + 3136 ], "__typename": [ 78 @@ -57909,13 +62507,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2839 + 3139 ], "bool_or": [ - 2840 + 3140 ], "count": [ - 2841 + 3141 ], "__typename": [ 78 @@ -57923,13 +62521,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2901 + 3201 ], "distinct": [ 3 ], "filter": [ - 2847 + 3147 ], "predicate": [ 4 @@ -57940,13 +62538,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2902 + 3202 ], "distinct": [ 3 ], "filter": [ - 2847 + 3147 ], "predicate": [ 4 @@ -57957,13 +62555,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2900 + 3200 ], "distinct": [ 3 ], "filter": [ - 2847 + 3147 ], "predicate": [ 39 @@ -57974,13 +62572,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 2845 + 3145 ], "count": [ 38, { "columns": [ - 2900, + 3200, "[player_kills_select_column!]" ], "distinct": [ @@ -57989,31 +62587,31 @@ export default { } ], "max": [ - 2892 + 3192 ], "min": [ - 2894 + 3194 ], "stddev": [ - 2904 + 3204 ], "stddev_pop": [ - 2906 + 3206 ], "stddev_samp": [ - 2908 + 3208 ], "sum": [ - 2912 + 3212 ], "var_pop": [ - 2916 + 3216 ], "var_samp": [ - 2918 + 3218 ], "variance": [ - 2920 + 3220 ], "__typename": [ 78 @@ -58021,37 +62619,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 2846 + 3146 ], "count": [ - 2481 + 2781 ], "max": [ - 2893 + 3193 ], "min": [ - 2895 + 3195 ], "stddev": [ - 2905 + 3205 ], "stddev_pop": [ - 2907 + 3207 ], "stddev_samp": [ - 2909 + 3209 ], "sum": [ - 2913 + 3213 ], "var_pop": [ - 2917 + 3217 ], "var_samp": [ - 2919 + 3219 ], "variance": [ - 2921 + 3221 ], "__typename": [ 78 @@ -58059,10 +62657,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 2891 + 3191 ], "on_conflict": [ - 2897 + 3197 ], "__typename": [ 78 @@ -58084,13 +62682,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58098,13 +62696,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 2847 + 3147 ], "_not": [ - 2847 + 3147 ], "_or": [ - 2847 + 3147 ], "assisted": [ 4 @@ -58116,7 +62714,7 @@ export default { 80 ], "attacked_player": [ - 3443 + 3743 ], "attacked_steam_id": [ 182 @@ -58140,7 +62738,7 @@ export default { 4 ], "deleted_at": [ - 4025 + 4325 ], "headshot": [ 4 @@ -58155,22 +62753,22 @@ export default { 4 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "no_scope": [ 4 ], "player": [ - 3443 + 3743 ], "round": [ 39 @@ -58185,7 +62783,7 @@ export default { 4 ], "time": [ - 4025 + 4325 ], "with": [ 80 @@ -58199,7 +62797,7 @@ export default { 180 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 @@ -58213,10 +62811,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2852 + 3152 ], "nodes": [ - 2848 + 3148 ], "__typename": [ 78 @@ -58224,7 +62822,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2851 + 3151 ], "__typename": [ 78 @@ -58232,13 +62830,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2869 + 3169 ], "distinct": [ 3 ], "filter": [ - 2857 + 3157 ], "predicate": [ 39 @@ -58249,13 +62847,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2855 + 3155 ], "count": [ 38, { "columns": [ - 2869, + 3169, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -58264,31 +62862,31 @@ export default { } ], "max": [ - 2861 + 3161 ], "min": [ - 2863 + 3163 ], "stddev": [ - 2871 + 3171 ], "stddev_pop": [ - 2873 + 3173 ], "stddev_samp": [ - 2875 + 3175 ], "sum": [ - 2879 + 3179 ], "var_pop": [ - 2883 + 3183 ], "var_samp": [ - 2885 + 3185 ], "variance": [ - 2887 + 3187 ], "__typename": [ 78 @@ -58296,37 +62894,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2856 + 3156 ], "count": [ - 2481 + 2781 ], "max": [ - 2862 + 3162 ], "min": [ - 2864 + 3164 ], "stddev": [ - 2872 + 3172 ], "stddev_pop": [ - 2874 + 3174 ], "stddev_samp": [ - 2876 + 3176 ], "sum": [ - 2880 + 3180 ], "var_pop": [ - 2884 + 3184 ], "var_samp": [ - 2886 + 3186 ], "variance": [ - 2888 + 3188 ], "__typename": [ 78 @@ -58334,10 +62932,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2860 + 3160 ], "on_conflict": [ - 2866 + 3166 ], "__typename": [ 78 @@ -58356,10 +62954,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58367,19 +62965,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2857 + 3157 ], "_not": [ - 2857 + 3157 ], "_or": [ - 2857 + 3157 ], "kill_count": [ 182 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 @@ -58408,7 +63006,7 @@ export default { 180 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 @@ -58436,13 +63034,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58464,13 +63062,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58481,7 +63079,7 @@ export default { 38 ], "returning": [ - 2848 + 3148 ], "__typename": [ 78 @@ -58489,13 +63087,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2858 + 3158 ], "update_columns": [ - 2881 + 3181 ], "where": [ - 2857 + 3157 ], "__typename": [ 78 @@ -58503,16 +63101,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58557,10 +63155,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58579,10 +63177,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58601,10 +63199,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58612,7 +63210,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2878 + 3178 ], "ordering": [ 236 @@ -58648,10 +63246,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58660,13 +63258,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2859 + 3159 ], "_set": [ - 2870 + 3170 ], "where": [ - 2857 + 3157 ], "__typename": [ 78 @@ -58685,10 +63283,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58707,10 +63305,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58729,10 +63327,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58764,7 +63362,7 @@ export default { 78 ], "attacked_player": [ - 3450 + 3750 ], "attacked_steam_id": [ 180 @@ -58788,7 +63386,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4324 ], "headshot": [ 3 @@ -58800,22 +63398,22 @@ export default { 3 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "no_scope": [ 3 ], "player": [ - 3450 + 3750 ], "round": [ 38 @@ -58827,7 +63425,7 @@ export default { 3 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -58862,22 +63460,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "hitgroup": [ 78 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -58888,49 +63486,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2481 + 2781 ], "attacked_location_coordinates": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_location": [ - 2481 + 2781 ], "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "hitgroup": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -58962,22 +63560,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4324 ], "hitgroup": [ 78 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -58988,49 +63586,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2481 + 2781 ], "attacked_location_coordinates": [ - 2481 + 2781 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_location": [ - 2481 + 2781 ], "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "hitgroup": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59041,7 +63639,7 @@ export default { 38 ], "returning": [ - 2836 + 3136 ], "__typename": [ 78 @@ -59049,13 +63647,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 2889 + 3189 ], "update_columns": [ - 2914 + 3214 ], "where": [ - 2847 + 3147 ], "__typename": [ 78 @@ -59063,88 +63661,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2481 + 2781 ], "attacked_location": [ - 2481 + 2781 ], "attacked_location_coordinates": [ - 2481 + 2781 ], "attacked_player": [ - 3452 + 3752 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacked_team": [ - 2481 + 2781 ], "attacker_location": [ - 2481 + 2781 ], "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "attacker_team": [ - 2481 + 2781 ], "blinded": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "headshot": [ - 2481 + 2781 ], "hitgroup": [ - 2481 + 2781 ], "in_air": [ - 2481 + 2781 ], "is_suicide": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "no_scope": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "round": [ - 2481 + 2781 ], "team_kill": [ - 2481 + 2781 ], "thru_smoke": [ - 2481 + 2781 ], "thru_wall": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59158,10 +63756,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4762 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -59202,7 +63800,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4324 ], "headshot": [ 3 @@ -59214,10 +63812,10 @@ export default { 3 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "no_scope": [ 3 @@ -59232,7 +63830,7 @@ export default { 3 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -59257,13 +63855,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59285,13 +63883,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59313,13 +63911,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59327,7 +63925,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 2911 + 3211 ], "ordering": [ 236 @@ -59368,7 +63966,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4324 ], "headshot": [ 3 @@ -59380,10 +63978,10 @@ export default { 3 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "no_scope": [ 3 @@ -59398,7 +63996,7 @@ export default { 3 ], "time": [ - 4024 + 4324 ], "with": [ 78 @@ -59423,13 +64021,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59438,13 +64036,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2890 + 3190 ], "_set": [ - 2903 + 3203 ], "where": [ - 2847 + 3147 ], "__typename": [ 78 @@ -59466,13 +64064,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59494,13 +64092,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59522,13 +64120,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59545,7 +64143,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59553,10 +64151,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2924 + 3224 ], "nodes": [ - 2922 + 3222 ], "__typename": [ 78 @@ -59564,13 +64162,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2925 + 3225 ], "count": [ 38, { "columns": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -59579,31 +64177,31 @@ export default { } ], "max": [ - 2929 + 3229 ], "min": [ - 2930 + 3230 ], "stddev": [ - 2935 + 3235 ], "stddev_pop": [ - 2936 + 3236 ], "stddev_samp": [ - 2937 + 3237 ], "sum": [ - 2940 + 3240 ], "var_pop": [ - 2942 + 3242 ], "var_samp": [ - 2943 + 3243 ], "variance": [ - 2944 + 3244 ], "__typename": [ 78 @@ -59625,13 +64223,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2926 + 3226 ], "_not": [ - 2926 + 3226 ], "_or": [ - 2926 + 3226 ], "player_steam_id": [ 80 @@ -59643,7 +64241,7 @@ export default { 39 ], "value": [ - 1201 + 1500 ], "__typename": [ 78 @@ -59657,7 +64255,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59674,7 +64272,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59691,7 +64289,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59708,7 +64306,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59719,7 +64317,7 @@ export default { 38 ], "returning": [ - 2922 + 3222 ], "__typename": [ 78 @@ -59727,16 +64325,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "total": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -59754,7 +64352,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59804,7 +64402,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2939 + 3239 ], "ordering": [ 236 @@ -59824,7 +64422,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59838,7 +64436,7 @@ export default { 38 ], "value": [ - 1200 + 1499 ], "__typename": [ 78 @@ -59846,13 +64444,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 2927 + 3227 ], "_set": [ - 2934 + 3234 ], "where": [ - 2926 + 3226 ], "__typename": [ 78 @@ -59920,7 +64518,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -59962,7 +64560,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -60016,16 +64614,16 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -60040,7 +64638,7 @@ export default { 38 ], "player": [ - 3439 + 3739 ], "rounds_ct": [ 38 @@ -60088,7 +64686,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -60118,7 +64716,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "util_on_death_count": [ 38 @@ -60138,10 +64736,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 2949 + 3249 ], "nodes": [ - 2945 + 3245 ], "__typename": [ 78 @@ -60149,7 +64747,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2948 + 3248 ], "__typename": [ 78 @@ -60157,13 +64755,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2966 + 3266 ], "distinct": [ 3 ], "filter": [ - 2954 + 3254 ], "predicate": [ 39 @@ -60174,13 +64772,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2952 + 3252 ], "count": [ 38, { "columns": [ - 2966, + 3266, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -60189,31 +64787,31 @@ export default { } ], "max": [ - 2958 + 3258 ], "min": [ - 2960 + 3260 ], "stddev": [ - 2968 + 3268 ], "stddev_pop": [ - 2970 + 3270 ], "stddev_samp": [ - 2972 + 3272 ], "sum": [ - 2976 + 3276 ], "var_pop": [ - 2980 + 3280 ], "var_samp": [ - 2982 + 3282 ], "variance": [ - 2984 + 3284 ], "__typename": [ 78 @@ -60221,37 +64819,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2953 + 3253 ], "count": [ - 2481 + 2781 ], "max": [ - 2959 + 3259 ], "min": [ - 2961 + 3261 ], "stddev": [ - 2969 + 3269 ], "stddev_pop": [ - 2971 + 3271 ], "stddev_samp": [ - 2973 + 3273 ], "sum": [ - 2977 + 3277 ], "var_pop": [ - 2981 + 3281 ], "var_samp": [ - 2983 + 3283 ], "variance": [ - 2985 + 3285 ], "__typename": [ 78 @@ -60259,10 +64857,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2957 + 3257 ], "on_conflict": [ - 2963 + 3263 ], "__typename": [ 78 @@ -60488,217 +65086,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -60706,13 +65304,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 2954 + 3254 ], "_not": [ - 2954 + 3254 ], "_or": [ - 2954 + 3254 ], "assists": [ 39 @@ -60733,7 +65331,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2480 + 2780 ], "damage": [ 39 @@ -60775,7 +65373,7 @@ export default { 39 ], "flash_duration_sum": [ - 2480 + 2780 ], "flashes_thrown": [ 39 @@ -60829,16 +65427,16 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "molotov_damage": [ 39 @@ -60853,7 +65451,7 @@ export default { 39 ], "player": [ - 3443 + 3743 ], "rounds_ct": [ 39 @@ -60901,7 +65499,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2480 + 2780 ], "total_engagement_frames": [ 39 @@ -60931,7 +65529,7 @@ export default { 39 ], "updated_at": [ - 4025 + 4325 ], "util_on_death_count": [ 39 @@ -60970,7 +65568,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -61012,7 +65610,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -61123,7 +65721,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -61188,7 +65786,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -61230,7 +65828,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -61284,16 +65882,16 @@ export default { 38 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -61308,7 +65906,7 @@ export default { 38 ], "player": [ - 3450 + 3750 ], "rounds_ct": [ 38 @@ -61356,7 +65954,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -61386,7 +65984,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "util_on_death_count": [ 38 @@ -61424,7 +66022,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -61466,7 +66064,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -61520,10 +66118,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -61583,7 +66181,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -61613,7 +66211,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "util_on_death_count": [ 38 @@ -61633,226 +66231,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -61878,7 +66476,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -61920,7 +66518,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -61974,10 +66572,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -62037,7 +66635,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -62067,7 +66665,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "util_on_death_count": [ 38 @@ -62087,226 +66685,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -62317,7 +66915,7 @@ export default { 38 ], "returning": [ - 2945 + 3245 ], "__typename": [ 78 @@ -62325,13 +66923,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 2955 + 3255 ], "update_columns": [ - 2978 + 3278 ], "where": [ - 2954 + 3254 ], "__typename": [ 78 @@ -62339,235 +66937,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -62575,7 +67173,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4462 + 4762 ], "steam_id": [ 180 @@ -62605,7 +67203,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -62647,7 +67245,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -62701,10 +67299,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -62764,7 +67362,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -62794,7 +67392,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "util_on_death_count": [ 38 @@ -63032,217 +67630,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -63468,217 +68066,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -63904,217 +68502,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -64122,7 +68720,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2975 + 3275 ], "ordering": [ 236 @@ -64151,7 +68749,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -64193,7 +68791,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -64247,10 +68845,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -64310,7 +68908,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -64340,7 +68938,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "util_on_death_count": [ 38 @@ -64378,7 +68976,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2779 ], "damage": [ 38 @@ -64420,7 +69018,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2779 ], "flashes_thrown": [ 38 @@ -64531,7 +69129,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2779 ], "total_engagement_frames": [ 38 @@ -64578,217 +69176,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -64797,13 +69395,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2956 + 3256 ], "_set": [ - 2967 + 3267 ], "where": [ - 2954 + 3254 ], "__typename": [ 78 @@ -65029,217 +69627,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -65465,217 +70063,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -65901,217 +70499,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "crosshair_angle_count": [ - 2481 + 2781 ], "crosshair_angle_sum_deg": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flash_duration_count": [ - 2481 + 2781 ], "flash_duration_sum": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kast_rounds": [ - 2481 + 2781 ], "kast_total_rounds": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "time_to_damage_count": [ - 2481 + 2781 ], "time_to_damage_sum_s": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "util_on_death_count": [ - 2481 + 2781 ], "util_on_death_sum": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -66119,40 +70717,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "aim_rating": [ - 1200 + 1499 ], "counter_strafe_pct": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "overall_rating": [ - 1200 + 1499 ], "played_at": [ - 4024 + 4324 ], "positioning_rating": [ - 1200 + 1499 ], "rounds": [ 38 @@ -66164,16 +70762,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -66181,10 +70779,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 2988 + 3288 ], "nodes": [ - 2986 + 3286 ], "__typename": [ 78 @@ -66192,13 +70790,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2989 + 3289 ], "count": [ 38, { "columns": [ - 2994, + 3294, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -66207,31 +70805,31 @@ export default { } ], "max": [ - 2991 + 3291 ], "min": [ - 2992 + 3292 ], "stddev": [ - 2995 + 3295 ], "stddev_pop": [ - 2996 + 3296 ], "stddev_samp": [ - 2997 + 3297 ], "sum": [ - 3000 + 3300 ], "var_pop": [ - 3001 + 3301 ], "var_samp": [ - 3002 + 3302 ], "variance": [ - 3003 + 3303 ], "__typename": [ 78 @@ -66292,49 +70890,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 2990 + 3290 ], "_not": [ - 2990 + 3290 ], "_or": [ - 2990 + 3290 ], "accuracy": [ - 2480 + 2780 ], "accuracy_spotted": [ - 2480 + 2780 ], "aim_rating": [ - 1201 + 1500 ], "counter_strafe_pct": [ - 2480 + 2780 ], "enemy_blind_pr": [ - 2480 + 2780 ], "flash_assists_pr": [ - 2480 + 2780 ], "hs_pct": [ - 2480 + 2780 ], "kast_pct": [ - 2480 + 2780 ], "match_id": [ - 4464 + 4764 ], "overall_rating": [ - 1201 + 1500 ], "played_at": [ - 4025 + 4325 ], "positioning_rating": [ - 1201 + 1500 ], "rounds": [ 39 @@ -66346,16 +70944,16 @@ export default { 182 ], "survival_pct": [ - 2480 + 2780 ], "traded_death_pct": [ - 2480 + 2780 ], "util_efficiency": [ - 2480 + 2780 ], "utility_rating": [ - 1201 + 1500 ], "__typename": [ 78 @@ -66363,40 +70961,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "aim_rating": [ - 1200 + 1499 ], "counter_strafe_pct": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "overall_rating": [ - 1200 + 1499 ], "played_at": [ - 4024 + 4324 ], "positioning_rating": [ - 1200 + 1499 ], "rounds": [ 38 @@ -66408,16 +71006,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -66425,40 +71023,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "aim_rating": [ - 1200 + 1499 ], "counter_strafe_pct": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "overall_rating": [ - 1200 + 1499 ], "played_at": [ - 4024 + 4324 ], "positioning_rating": [ - 1200 + 1499 ], "rounds": [ 38 @@ -66470,16 +71068,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -66487,61 +71085,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2481 + 2781 ], "accuracy_spotted": [ - 2481 + 2781 ], "aim_rating": [ - 2481 + 2781 ], "counter_strafe_pct": [ - 2481 + 2781 ], "enemy_blind_pr": [ - 2481 + 2781 ], "flash_assists_pr": [ - 2481 + 2781 ], "hs_pct": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "overall_rating": [ - 2481 + 2781 ], "played_at": [ - 2481 + 2781 ], "positioning_rating": [ - 2481 + 2781 ], "rounds": [ - 2481 + 2781 ], "source": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "survival_pct": [ - 2481 + 2781 ], "traded_death_pct": [ - 2481 + 2781 ], "util_efficiency": [ - 2481 + 2781 ], "utility_rating": [ - 2481 + 2781 ], "__typename": [ 78 @@ -66709,7 +71307,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2999 + 3299 ], "ordering": [ 236 @@ -66720,40 +71318,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "aim_rating": [ - 1200 + 1499 ], "counter_strafe_pct": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "overall_rating": [ - 1200 + 1499 ], "played_at": [ - 4024 + 4324 ], "positioning_rating": [ - 1200 + 1499 ], "rounds": [ 38 @@ -66765,16 +71363,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -66782,34 +71380,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2479 + 2779 ], "accuracy_spotted": [ - 2479 + 2779 ], "aim_rating": [ - 1200 + 1499 ], "counter_strafe_pct": [ - 2479 + 2779 ], "enemy_blind_pr": [ - 2479 + 2779 ], "flash_assists_pr": [ - 2479 + 2779 ], "hs_pct": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "overall_rating": [ - 1200 + 1499 ], "positioning_rating": [ - 1200 + 1499 ], "rounds": [ 38 @@ -66818,16 +71416,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2779 ], "traded_death_pct": [ - 2479 + 2779 ], "util_efficiency": [ - 2479 + 2779 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -67003,13 +71601,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2779 ], "avg_flash_duration": [ - 2479 + 2779 ], "avg_time_to_damage_s": [ - 2479 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -67099,7 +71697,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -67183,7 +71781,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2779 ], "wasted_magazine_shots": [ 38 @@ -67197,10 +71795,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3008 + 3308 ], "nodes": [ - 3004 + 3304 ], "__typename": [ 78 @@ -67208,7 +71806,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3007 + 3307 ], "__typename": [ 78 @@ -67216,13 +71814,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3020 + 3320 ], "distinct": [ 3 ], "filter": [ - 3013 + 3313 ], "predicate": [ 39 @@ -67233,13 +71831,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3011 + 3311 ], "count": [ 38, { "columns": [ - 3020, + 3320, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -67248,31 +71846,31 @@ export default { } ], "max": [ - 3015 + 3315 ], "min": [ - 3017 + 3317 ], "stddev": [ - 3021 + 3321 ], "stddev_pop": [ - 3023 + 3323 ], "stddev_samp": [ - 3025 + 3325 ], "sum": [ - 3029 + 3329 ], "var_pop": [ - 3031 + 3331 ], "var_samp": [ - 3033 + 3333 ], "variance": [ - 3035 + 3335 ], "__typename": [ 78 @@ -67280,37 +71878,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3012 + 3312 ], "count": [ - 2481 + 2781 ], "max": [ - 3016 + 3316 ], "min": [ - 3018 + 3318 ], "stddev": [ - 3022 + 3322 ], "stddev_pop": [ - 3024 + 3324 ], "stddev_samp": [ - 3026 + 3326 ], "sum": [ - 3030 + 3330 ], "var_pop": [ - 3032 + 3332 ], "var_samp": [ - 3034 + 3334 ], "variance": [ - 3036 + 3336 ], "__typename": [ 78 @@ -67318,7 +71916,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3014 + 3314 ], "__typename": [ 78 @@ -67526,199 +72124,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -67726,13 +72324,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3013 + 3313 ], "_not": [ - 3013 + 3313 ], "_or": [ - 3013 + 3313 ], "assists": [ 39 @@ -67744,13 +72342,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2480 + 2780 ], "avg_flash_duration": [ - 2480 + 2780 ], "avg_time_to_damage_s": [ - 2480 + 2780 ], "counter_strafe_eligible_shots": [ 39 @@ -67840,7 +72438,7 @@ export default { 39 ], "match_id": [ - 4464 + 4764 ], "molotov_damage": [ 39 @@ -67924,7 +72522,7 @@ export default { 39 ], "utility_on_death": [ - 2480 + 2780 ], "wasted_magazine_shots": [ 39 @@ -67947,13 +72545,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2779 ], "avg_flash_duration": [ - 2479 + 2779 ], "avg_time_to_damage_s": [ - 2479 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -68043,7 +72641,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -68127,7 +72725,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2779 ], "wasted_magazine_shots": [ 38 @@ -68150,13 +72748,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2779 ], "avg_flash_duration": [ - 2479 + 2779 ], "avg_time_to_damage_s": [ - 2479 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -68246,7 +72844,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -68330,7 +72928,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2779 ], "wasted_magazine_shots": [ 38 @@ -68344,202 +72942,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -68556,13 +73154,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2779 ], "avg_flash_duration": [ - 2479 + 2779 ], "avg_time_to_damage_s": [ - 2479 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -68652,7 +73250,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -68736,7 +73334,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2779 ], "wasted_magazine_shots": [ 38 @@ -68750,202 +73348,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -68953,202 +73551,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -69357,199 +73955,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -69757,199 +74355,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -70157,199 +74755,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -70357,7 +74955,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3028 + 3328 ], "ordering": [ 236 @@ -70377,13 +74975,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2779 ], "avg_flash_duration": [ - 2479 + 2779 ], "avg_time_to_damage_s": [ - 2479 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -70473,7 +75071,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "molotov_damage": [ 38 @@ -70557,7 +75155,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2779 ], "wasted_magazine_shots": [ 38 @@ -70580,13 +75178,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2779 ], "avg_flash_duration": [ - 2479 + 2779 ], "avg_time_to_damage_s": [ - 2479 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -70757,7 +75355,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2779 ], "wasted_magazine_shots": [ 38 @@ -70771,199 +75369,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -71171,199 +75769,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -71571,199 +76169,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -71971,199 +76569,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2481 + 2781 ], "assists_ct": [ - 2481 + 2781 ], "assists_t": [ - 2481 + 2781 ], "avg_crosshair_angle_deg": [ - 2481 + 2781 ], "avg_flash_duration": [ - 2481 + 2781 ], "avg_time_to_damage_s": [ - 2481 + 2781 ], "counter_strafe_eligible_shots": [ - 2481 + 2781 ], "counter_strafed_shots": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_ct": [ - 2481 + 2781 ], "damage_t": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "deaths_ct": [ - 2481 + 2781 ], "deaths_t": [ - 2481 + 2781 ], "decoy_throws": [ - 2481 + 2781 ], "enemies_flashed": [ - 2481 + 2781 ], "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "five_kill_rounds": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "flashes_thrown": [ - 2481 + 2781 ], "four_kill_rounds": [ - 2481 + 2781 ], "he_damage": [ - 2481 + 2781 ], "he_team_damage": [ - 2481 + 2781 ], "he_throws": [ - 2481 + 2781 ], "headshot_hits": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_at_spotted": [ - 2481 + 2781 ], "hs_kills": [ - 2481 + 2781 ], "hs_kills_ct": [ - 2481 + 2781 ], "hs_kills_t": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kills_ct": [ - 2481 + 2781 ], "kills_t": [ - 2481 + 2781 ], "knife_kills": [ - 2481 + 2781 ], "molotov_damage": [ - 2481 + 2781 ], "molotov_throws": [ - 2481 + 2781 ], "non_awp_hits": [ - 2481 + 2781 ], "on_target_frames": [ - 2481 + 2781 ], "rounds_ct": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "rounds_t": [ - 2481 + 2781 ], "shots_at_spotted": [ - 2481 + 2781 ], "shots_fired": [ - 2481 + 2781 ], "smoke_throws": [ - 2481 + 2781 ], "spotted_count": [ - 2481 + 2781 ], "spotted_with_damage_count": [ - 2481 + 2781 ], "spray_hits": [ - 2481 + 2781 ], "spray_shots": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_damage": [ - 2481 + 2781 ], "team_flashed": [ - 2481 + 2781 ], "three_kill_rounds": [ - 2481 + 2781 ], "total_engagement_frames": [ - 2481 + 2781 ], "trade_kill_attempts": [ - 2481 + 2781 ], "trade_kill_opportunities": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_attempts": [ - 2481 + 2781 ], "traded_death_opportunities": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "two_kill_rounds": [ - 2481 + 2781 ], "unused_utility_value": [ - 2481 + 2781 ], "utility_on_death": [ - 2481 + 2781 ], "wasted_magazine_shots": [ - 2481 + 2781 ], "zeus_kills": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72171,22 +76769,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4024 + 4324 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 @@ -72195,10 +76793,10 @@ export default { 38 ], "time": [ - 4024 + 4324 ], "type": [ - 861 + 901 ], "__typename": [ 78 @@ -72206,10 +76804,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3041 + 3341 ], "nodes": [ - 3037 + 3337 ], "__typename": [ 78 @@ -72217,7 +76815,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3040 + 3340 ], "__typename": [ 78 @@ -72225,13 +76823,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3058 + 3358 ], "distinct": [ 3 ], "filter": [ - 3046 + 3346 ], "predicate": [ 39 @@ -72242,13 +76840,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3044 + 3344 ], "count": [ 38, { "columns": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "distinct": [ @@ -72257,31 +76855,31 @@ export default { } ], "max": [ - 3050 + 3350 ], "min": [ - 3052 + 3352 ], "stddev": [ - 3060 + 3360 ], "stddev_pop": [ - 3062 + 3362 ], "stddev_samp": [ - 3064 + 3364 ], "sum": [ - 3068 + 3368 ], "var_pop": [ - 3072 + 3372 ], "var_samp": [ - 3074 + 3374 ], "variance": [ - 3076 + 3376 ], "__typename": [ 78 @@ -72289,37 +76887,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3045 + 3345 ], "count": [ - 2481 + 2781 ], "max": [ - 3051 + 3351 ], "min": [ - 3053 + 3353 ], "stddev": [ - 3061 + 3361 ], "stddev_pop": [ - 3063 + 3363 ], "stddev_samp": [ - 3065 + 3365 ], "sum": [ - 3069 + 3369 ], "var_pop": [ - 3073 + 3373 ], "var_samp": [ - 3075 + 3375 ], "variance": [ - 3077 + 3377 ], "__typename": [ 78 @@ -72327,10 +76925,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3049 + 3349 ], "on_conflict": [ - 3055 + 3355 ], "__typename": [ 78 @@ -72349,10 +76947,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72360,31 +76958,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3046 + 3346 ], "_not": [ - 3046 + 3346 ], "_or": [ - 3046 + 3346 ], "deleted_at": [ - 4025 + 4325 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 @@ -72393,10 +76991,10 @@ export default { 39 ], "time": [ - 4025 + 4325 ], "type": [ - 862 + 902 ], "__typename": [ 78 @@ -72416,22 +77014,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4024 + 4324 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 @@ -72440,10 +77038,10 @@ export default { 38 ], "time": [ - 4024 + 4324 ], "type": [ - 861 + 901 ], "__typename": [ 78 @@ -72451,13 +77049,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -72466,7 +77064,7 @@ export default { 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -72474,22 +77072,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72497,13 +77095,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -72512,7 +77110,7 @@ export default { 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -72520,22 +77118,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72546,7 +77144,7 @@ export default { 38 ], "returning": [ - 3037 + 3337 ], "__typename": [ 78 @@ -72554,13 +77152,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3047 + 3347 ], "update_columns": [ - 3070 + 3370 ], "where": [ - 3046 + 3346 ], "__typename": [ 78 @@ -72568,34 +77166,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72603,13 +77201,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -72618,13 +77216,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -72633,10 +77231,10 @@ export default { 38 ], "time": [ - 4024 + 4324 ], "type": [ - 861 + 901 ], "__typename": [ 78 @@ -72655,10 +77253,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72677,10 +77275,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72699,10 +77297,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72710,7 +77308,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3067 + 3367 ], "ordering": [ 236 @@ -72721,13 +77319,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -72736,10 +77334,10 @@ export default { 38 ], "time": [ - 4024 + 4324 ], "type": [ - 861 + 901 ], "__typename": [ 78 @@ -72758,10 +77356,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72770,13 +77368,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3048 + 3348 ], "_set": [ - 3059 + 3359 ], "where": [ - 3046 + 3346 ], "__typename": [ 78 @@ -72795,10 +77393,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72817,10 +77415,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72839,10 +77437,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -72850,13 +77448,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1200 + 1499 ], "aim_goal": [ - 1200 + 1499 ], "aim_rating": [ - 1200 + 1499 ], "band": [ 38 @@ -72865,31 +77463,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1499 ], "counter_strafe_score": [ - 1200 + 1499 ], "crosshair_score": [ - 1200 + 1499 ], "flash_assists_score": [ - 1200 + 1499 ], "hs_score": [ - 1200 + 1499 ], "kast_score": [ - 1200 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1499 ], "positioning_rating": [ - 1200 + 1499 ], "premier_rank": [ 38 @@ -72898,28 +77496,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1499 ], "traded_score": [ - 1200 + 1499 ], "ttd_score": [ - 1200 + 1499 ], "util_eff_score": [ - 1200 + 1499 ], "utility_goal": [ - 1200 + 1499 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -72927,10 +77525,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3080 + 3380 ], "nodes": [ - 3078 + 3378 ], "__typename": [ 78 @@ -72938,13 +77536,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3081 + 3381 ], "count": [ 38, { "columns": [ - 3086, + 3386, "[player_performance_v_select_column!]" ], "distinct": [ @@ -72953,31 +77551,31 @@ export default { } ], "max": [ - 3083 + 3383 ], "min": [ - 3084 + 3384 ], "stddev": [ - 3087 + 3387 ], "stddev_pop": [ - 3088 + 3388 ], "stddev_samp": [ - 3089 + 3389 ], "sum": [ - 3092 + 3392 ], "var_pop": [ - 3093 + 3393 ], "var_samp": [ - 3094 + 3394 ], "variance": [ - 3095 + 3395 ], "__typename": [ 78 @@ -73062,22 +77660,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3082 + 3382 ], "_not": [ - 3082 + 3382 ], "_or": [ - 3082 + 3382 ], "accuracy_score": [ - 1201 + 1500 ], "aim_goal": [ - 1201 + 1500 ], "aim_rating": [ - 1201 + 1500 ], "band": [ 39 @@ -73086,31 +77684,31 @@ export default { 182 ], "blind_score": [ - 1201 + 1500 ], "counter_strafe_score": [ - 1201 + 1500 ], "crosshair_score": [ - 1201 + 1500 ], "flash_assists_score": [ - 1201 + 1500 ], "hs_score": [ - 1201 + 1500 ], "kast_score": [ - 1201 + 1500 ], "maps": [ 39 ], "positioning_goal": [ - 1201 + 1500 ], "positioning_rating": [ - 1201 + 1500 ], "premier_rank": [ 39 @@ -73119,28 +77717,28 @@ export default { 39 ], "spotted_score": [ - 1201 + 1500 ], "steam_id": [ 182 ], "survival_score": [ - 1201 + 1500 ], "traded_score": [ - 1201 + 1500 ], "ttd_score": [ - 1201 + 1500 ], "util_eff_score": [ - 1201 + 1500 ], "utility_goal": [ - 1201 + 1500 ], "utility_rating": [ - 1201 + 1500 ], "__typename": [ 78 @@ -73148,13 +77746,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1200 + 1499 ], "aim_goal": [ - 1200 + 1499 ], "aim_rating": [ - 1200 + 1499 ], "band": [ 38 @@ -73163,31 +77761,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1499 ], "counter_strafe_score": [ - 1200 + 1499 ], "crosshair_score": [ - 1200 + 1499 ], "flash_assists_score": [ - 1200 + 1499 ], "hs_score": [ - 1200 + 1499 ], "kast_score": [ - 1200 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1499 ], "positioning_rating": [ - 1200 + 1499 ], "premier_rank": [ 38 @@ -73196,28 +77794,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1499 ], "traded_score": [ - 1200 + 1499 ], "ttd_score": [ - 1200 + 1499 ], "util_eff_score": [ - 1200 + 1499 ], "utility_goal": [ - 1200 + 1499 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -73225,13 +77823,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1200 + 1499 ], "aim_goal": [ - 1200 + 1499 ], "aim_rating": [ - 1200 + 1499 ], "band": [ 38 @@ -73240,31 +77838,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1499 ], "counter_strafe_score": [ - 1200 + 1499 ], "crosshair_score": [ - 1200 + 1499 ], "flash_assists_score": [ - 1200 + 1499 ], "hs_score": [ - 1200 + 1499 ], "kast_score": [ - 1200 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1499 ], "positioning_rating": [ - 1200 + 1499 ], "premier_rank": [ 38 @@ -73273,28 +77871,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1499 ], "traded_score": [ - 1200 + 1499 ], "ttd_score": [ - 1200 + 1499 ], "util_eff_score": [ - 1200 + 1499 ], "utility_goal": [ - 1200 + 1499 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -73302,76 +77900,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2481 + 2781 ], "aim_goal": [ - 2481 + 2781 ], "aim_rating": [ - 2481 + 2781 ], "band": [ - 2481 + 2781 ], "band_sample": [ - 2481 + 2781 ], "blind_score": [ - 2481 + 2781 ], "counter_strafe_score": [ - 2481 + 2781 ], "crosshair_score": [ - 2481 + 2781 ], "flash_assists_score": [ - 2481 + 2781 ], "hs_score": [ - 2481 + 2781 ], "kast_score": [ - 2481 + 2781 ], "maps": [ - 2481 + 2781 ], "positioning_goal": [ - 2481 + 2781 ], "positioning_rating": [ - 2481 + 2781 ], "premier_rank": [ - 2481 + 2781 ], "rounds": [ - 2481 + 2781 ], "spotted_score": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "survival_score": [ - 2481 + 2781 ], "traded_score": [ - 2481 + 2781 ], "ttd_score": [ - 2481 + 2781 ], "util_eff_score": [ - 2481 + 2781 ], "utility_goal": [ - 2481 + 2781 ], "utility_rating": [ - 2481 + 2781 ], "__typename": [ 78 @@ -73611,7 +78209,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3091 + 3391 ], "ordering": [ 236 @@ -73622,13 +78220,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1200 + 1499 ], "aim_goal": [ - 1200 + 1499 ], "aim_rating": [ - 1200 + 1499 ], "band": [ 38 @@ -73637,31 +78235,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1499 ], "counter_strafe_score": [ - 1200 + 1499 ], "crosshair_score": [ - 1200 + 1499 ], "flash_assists_score": [ - 1200 + 1499 ], "hs_score": [ - 1200 + 1499 ], "kast_score": [ - 1200 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1499 ], "positioning_rating": [ - 1200 + 1499 ], "premier_rank": [ 38 @@ -73670,28 +78268,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1499 ], "traded_score": [ - 1200 + 1499 ], "ttd_score": [ - 1200 + 1499 ], "util_eff_score": [ - 1200 + 1499 ], "utility_goal": [ - 1200 + 1499 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -73699,13 +78297,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1200 + 1499 ], "aim_goal": [ - 1200 + 1499 ], "aim_rating": [ - 1200 + 1499 ], "band": [ 38 @@ -73714,31 +78312,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1499 ], "counter_strafe_score": [ - 1200 + 1499 ], "crosshair_score": [ - 1200 + 1499 ], "flash_assists_score": [ - 1200 + 1499 ], "hs_score": [ - 1200 + 1499 ], "kast_score": [ - 1200 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1499 ], "positioning_rating": [ - 1200 + 1499 ], "premier_rank": [ 38 @@ -73747,28 +78345,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1499 ], "traded_score": [ - 1200 + 1499 ], "ttd_score": [ - 1200 + 1499 ], "util_eff_score": [ - 1200 + 1499 ], "utility_goal": [ - 1200 + 1499 ], "utility_rating": [ - 1200 + 1499 ], "__typename": [ 78 @@ -74007,25 +78605,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4462 + 4762 ], "map": [ - 1814 + 2114 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "player": [ - 3439 + 3739 ], "previous_rank": [ 38 @@ -74045,10 +78643,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3100 + 3400 ], "nodes": [ - 3096 + 3396 ], "__typename": [ 78 @@ -74056,7 +78654,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3099 + 3399 ], "__typename": [ 78 @@ -74064,13 +78662,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3117 + 3417 ], "distinct": [ 3 ], "filter": [ - 3105 + 3405 ], "predicate": [ 39 @@ -74081,13 +78679,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3103 + 3403 ], "count": [ 38, { "columns": [ - 3117, + 3417, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -74096,31 +78694,31 @@ export default { } ], "max": [ - 3109 + 3409 ], "min": [ - 3111 + 3411 ], "stddev": [ - 3119 + 3419 ], "stddev_pop": [ - 3121 + 3421 ], "stddev_samp": [ - 3123 + 3423 ], "sum": [ - 3127 + 3427 ], "var_pop": [ - 3131 + 3431 ], "var_samp": [ - 3133 + 3433 ], "variance": [ - 3135 + 3435 ], "__typename": [ 78 @@ -74128,37 +78726,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3104 + 3404 ], "count": [ - 2481 + 2781 ], "max": [ - 3110 + 3410 ], "min": [ - 3112 + 3412 ], "stddev": [ - 3120 + 3420 ], "stddev_pop": [ - 3122 + 3422 ], "stddev_samp": [ - 3124 + 3424 ], "sum": [ - 3128 + 3428 ], "var_pop": [ - 3132 + 3432 ], "var_samp": [ - 3134 + 3434 ], "variance": [ - 3136 + 3436 ], "__typename": [ 78 @@ -74166,10 +78764,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3108 + 3408 ], "on_conflict": [ - 3114 + 3414 ], "__typename": [ 78 @@ -74194,16 +78792,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74211,34 +78809,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3105 + 3405 ], "_not": [ - 3105 + 3405 ], "_or": [ - 3105 + 3405 ], "id": [ - 4464 + 4764 ], "map": [ - 1823 + 2123 ], "map_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "observed_at": [ - 4025 + 4325 ], "player": [ - 3443 + 3743 ], "previous_rank": [ 39 @@ -74276,25 +78874,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4462 + 4762 ], "map": [ - 1831 + 2131 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "player": [ - 3450 + 3750 ], "previous_rank": [ 38 @@ -74314,16 +78912,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -74343,28 +78941,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2481 + 2781 ], "map_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "observed_at": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74372,16 +78970,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -74401,28 +78999,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2481 + 2781 ], "map_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "observed_at": [ - 2481 + 2781 ], "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74433,7 +79031,7 @@ export default { 38 ], "returning": [ - 3096 + 3396 ], "__typename": [ 78 @@ -74441,13 +79039,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3106 + 3406 ], "update_columns": [ - 3129 + 3429 ], "where": [ - 3105 + 3405 ], "__typename": [ 78 @@ -74455,37 +79053,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2481 + 2781 ], "map": [ - 1833 + 2133 ], "map_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "observed_at": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74493,7 +79091,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -74502,16 +79100,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -74548,16 +79146,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74582,16 +79180,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74616,16 +79214,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74633,7 +79231,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3126 + 3426 ], "ordering": [ 236 @@ -74644,16 +79242,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4462 + 4762 ], "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "observed_at": [ - 4024 + 4324 ], "previous_rank": [ 38 @@ -74690,16 +79288,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74708,13 +79306,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3107 + 3407 ], "_set": [ - 3118 + 3418 ], "where": [ - 3105 + 3405 ], "__typename": [ 78 @@ -74739,16 +79337,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74773,16 +79371,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74807,16 +79405,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rank_type": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -74824,19 +79422,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "e_sanction_type": [ - 936 + 976 ], "id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 @@ -74845,16 +79443,16 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4324 ], "sanctioned_by": [ - 3439 + 3739 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 981 ], "__typename": [ 78 @@ -74862,10 +79460,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3141 + 3441 ], "nodes": [ - 3137 + 3437 ], "__typename": [ 78 @@ -74873,7 +79471,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3140 + 3440 ], "__typename": [ 78 @@ -74881,13 +79479,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3158 + 3458 ], "distinct": [ 3 ], "filter": [ - 3146 + 3446 ], "predicate": [ 39 @@ -74898,13 +79496,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3144 + 3444 ], "count": [ 38, { "columns": [ - 3158, + 3458, "[player_sanctions_select_column!]" ], "distinct": [ @@ -74913,31 +79511,31 @@ export default { } ], "max": [ - 3150 + 3450 ], "min": [ - 3152 + 3452 ], "stddev": [ - 3160 + 3460 ], "stddev_pop": [ - 3162 + 3462 ], "stddev_samp": [ - 3164 + 3464 ], "sum": [ - 3168 + 3468 ], "var_pop": [ - 3172 + 3472 ], "var_samp": [ - 3174 + 3474 ], "variance": [ - 3176 + 3476 ], "__typename": [ 78 @@ -74945,37 +79543,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3145 + 3445 ], "count": [ - 2481 + 2781 ], "max": [ - 3151 + 3451 ], "min": [ - 3153 + 3453 ], "stddev": [ - 3161 + 3461 ], "stddev_pop": [ - 3163 + 3463 ], "stddev_samp": [ - 3165 + 3465 ], "sum": [ - 3169 + 3469 ], "var_pop": [ - 3173 + 3473 ], "var_samp": [ - 3175 + 3475 ], "variance": [ - 3177 + 3477 ], "__typename": [ 78 @@ -74983,10 +79581,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3149 + 3449 ], "on_conflict": [ - 3155 + 3455 ], "__typename": [ 78 @@ -75005,10 +79603,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75016,28 +79614,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3146 + 3446 ], "_not": [ - 3146 + 3446 ], "_or": [ - 3146 + 3446 ], "created_at": [ - 4025 + 4325 ], "deleted_at": [ - 4025 + 4325 ], "e_sanction_type": [ - 939 + 979 ], "id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 @@ -75046,16 +79644,16 @@ export default { 80 ], "remove_sanction_date": [ - 4025 + 4325 ], "sanctioned_by": [ - 3443 + 3743 ], "sanctioned_by_steam_id": [ 182 ], "type": [ - 942 + 982 ], "__typename": [ 78 @@ -75075,19 +79673,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "e_sanction_type": [ - 947 + 987 ], "id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 @@ -75096,16 +79694,16 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4324 ], "sanctioned_by": [ - 3450 + 3750 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 981 ], "__typename": [ 78 @@ -75113,13 +79711,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -75128,7 +79726,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4324 ], "sanctioned_by_steam_id": [ 180 @@ -75139,25 +79737,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "reason": [ - 2481 + 2781 ], "remove_sanction_date": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75165,13 +79763,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -75180,7 +79778,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4324 ], "sanctioned_by_steam_id": [ 180 @@ -75191,25 +79789,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "reason": [ - 2481 + 2781 ], "remove_sanction_date": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75220,7 +79818,7 @@ export default { 38 ], "returning": [ - 3137 + 3437 ], "__typename": [ 78 @@ -75228,13 +79826,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3147 + 3447 ], "update_columns": [ - 3170 + 3470 ], "where": [ - 3146 + 3446 ], "__typename": [ 78 @@ -75242,37 +79840,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "e_sanction_type": [ - 949 + 989 ], "id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "reason": [ - 2481 + 2781 ], "remove_sanction_date": [ - 2481 + 2781 ], "sanctioned_by": [ - 3452 + 3752 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75280,10 +79878,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -75292,13 +79890,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -75307,13 +79905,13 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4324 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 981 ], "__typename": [ 78 @@ -75332,10 +79930,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75354,10 +79952,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75376,10 +79974,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75387,7 +79985,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3167 + 3467 ], "ordering": [ 236 @@ -75398,13 +79996,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "deleted_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -75413,13 +80011,13 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4324 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 981 ], "__typename": [ 78 @@ -75438,10 +80036,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75450,13 +80048,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3148 + 3448 ], "_set": [ - 3159 + 3459 ], "where": [ - 3146 + 3446 ], "__typename": [ 78 @@ -75475,10 +80073,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75497,10 +80095,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75519,10 +80117,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2481 + 2781 ], "sanctioned_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75536,7 +80134,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -75545,16 +80143,16 @@ export default { 180 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 ], "season": [ - 3498 + 3798 ], "season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -75562,10 +80160,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3192 + 3492 ], "nodes": [ - 3178 + 3478 ], "__typename": [ 78 @@ -75573,31 +80171,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3181 + 3481 ], "corr": [ - 3182 + 3482 ], "count": [ - 3184 + 3484 ], "covar_samp": [ - 3185 + 3485 ], "max": [ - 3187 + 3487 ], "min": [ - 3188 + 3488 ], "stddev_samp": [ - 3189 + 3489 ], "sum": [ - 3190 + 3490 ], "var_samp": [ - 3191 + 3491 ], "__typename": [ 78 @@ -75605,16 +80203,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3210 + 3510 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75622,16 +80220,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3183 + 3483 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75639,10 +80237,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3211 + 3511 ], "Y": [ - 3211 + 3511 ], "__typename": [ 78 @@ -75650,13 +80248,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3209 + 3509 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ 39 @@ -75667,16 +80265,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3186 + 3486 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75684,10 +80282,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3212 + 3512 ], "Y": [ - 3212 + 3512 ], "__typename": [ 78 @@ -75695,16 +80293,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3213 + 3513 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75712,16 +80310,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3214 + 3514 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75729,16 +80327,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3215 + 3515 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75746,16 +80344,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3216 + 3516 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75763,16 +80361,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3217 + 3517 ], "distinct": [ 3 ], "filter": [ - 3197 + 3497 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -75780,13 +80378,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3195 + 3495 ], "count": [ 38, { "columns": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "distinct": [ @@ -75795,31 +80393,31 @@ export default { } ], "max": [ - 3201 + 3501 ], "min": [ - 3203 + 3503 ], "stddev": [ - 3219 + 3519 ], "stddev_pop": [ - 3221 + 3521 ], "stddev_samp": [ - 3223 + 3523 ], "sum": [ - 3227 + 3527 ], "var_pop": [ - 3231 + 3531 ], "var_samp": [ - 3233 + 3533 ], "variance": [ - 3235 + 3535 ], "__typename": [ 78 @@ -75827,37 +80425,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3196 + 3496 ], "count": [ - 2481 + 2781 ], "max": [ - 3202 + 3502 ], "min": [ - 3204 + 3504 ], "stddev": [ - 3220 + 3520 ], "stddev_pop": [ - 3222 + 3522 ], "stddev_samp": [ - 3224 + 3524 ], "sum": [ - 3228 + 3528 ], "var_pop": [ - 3232 + 3532 ], "var_samp": [ - 3234 + 3534 ], "variance": [ - 3236 + 3536 ], "__typename": [ 78 @@ -75865,10 +80463,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3200 + 3500 ], "on_conflict": [ - 3206 + 3506 ], "__typename": [ 78 @@ -75899,22 +80497,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -75922,13 +80520,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3197 + 3497 ], "_not": [ - 3197 + 3497 ], "_or": [ - 3197 + 3497 ], "assists": [ 182 @@ -75937,7 +80535,7 @@ export default { 182 ], "headshot_percentage": [ - 1201 + 1500 ], "headshots": [ 182 @@ -75946,16 +80544,16 @@ export default { 182 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 ], "season": [ - 3502 + 3802 ], "season_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -75970,7 +80568,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -75993,7 +80591,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76002,16 +80600,16 @@ export default { 180 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 ], "season": [ - 3509 + 3809 ], "season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -76025,7 +80623,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76037,7 +80635,7 @@ export default { 180 ], "season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -76045,25 +80643,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "season_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76077,7 +80675,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76089,7 +80687,7 @@ export default { 180 ], "season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -76097,25 +80695,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "season_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76126,7 +80724,7 @@ export default { 38 ], "returning": [ - 3178 + 3478 ], "__typename": [ 78 @@ -76134,13 +80732,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3198 + 3498 ], "update_columns": [ - 3229 + 3529 ], "where": [ - 3197 + 3497 ], "__typename": [ 78 @@ -76148,31 +80746,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "season": [ - 3511 + 3811 ], "season_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76183,7 +80781,7 @@ export default { 180 ], "season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -76206,7 +80804,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76218,7 +80816,7 @@ export default { 180 ], "season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -76249,22 +80847,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76295,22 +80893,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76341,22 +80939,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76364,7 +80962,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3226 + 3526 ], "ordering": [ 236 @@ -76381,7 +80979,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76393,7 +80991,7 @@ export default { 180 ], "season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -76407,7 +81005,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76424,22 +81022,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76448,13 +81046,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3199 + 3499 ], "_set": [ - 3218 + 3518 ], "where": [ - 3197 + 3497 ], "__typename": [ 78 @@ -76485,22 +81083,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76531,22 +81129,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76577,22 +81175,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76606,7 +81204,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76615,7 +81213,7 @@ export default { 180 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 @@ -76626,10 +81224,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3239 + 3539 ], "nodes": [ - 3237 + 3537 ], "__typename": [ 78 @@ -76637,13 +81235,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3240 + 3540 ], "count": [ 38, { "columns": [ - 3252, + 3552, "[player_stats_select_column!]" ], "distinct": [ @@ -76652,31 +81250,31 @@ export default { } ], "max": [ - 3245 + 3545 ], "min": [ - 3246 + 3546 ], "stddev": [ - 3254 + 3554 ], "stddev_pop": [ - 3255 + 3555 ], "stddev_samp": [ - 3256 + 3556 ], "sum": [ - 3259 + 3559 ], "var_pop": [ - 3262 + 3562 ], "var_samp": [ - 3263 + 3563 ], "variance": [ - 3264 + 3564 ], "__typename": [ 78 @@ -76707,13 +81305,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3241 + 3541 ], "_not": [ - 3241 + 3541 ], "_or": [ - 3241 + 3541 ], "assists": [ 182 @@ -76722,7 +81320,7 @@ export default { 182 ], "headshot_percentage": [ - 1201 + 1500 ], "headshots": [ 182 @@ -76731,7 +81329,7 @@ export default { 182 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 @@ -76749,7 +81347,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76772,7 +81370,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76781,7 +81379,7 @@ export default { 180 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 @@ -76798,7 +81396,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76821,7 +81419,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -76841,7 +81439,7 @@ export default { 38 ], "returning": [ - 3237 + 3537 ], "__typename": [ 78 @@ -76849,10 +81447,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3244 + 3544 ], "on_conflict": [ - 3249 + 3549 ], "__typename": [ 78 @@ -76860,13 +81458,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3242 + 3542 ], "update_columns": [ - 3260 + 3560 ], "where": [ - 3241 + 3541 ], "__typename": [ 78 @@ -76874,25 +81472,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -76915,7 +81513,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -77001,7 +81599,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3258 + 3558 ], "ordering": [ 236 @@ -77018,7 +81616,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -77041,7 +81639,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 180 @@ -77059,13 +81657,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3243 + 3543 ], "_set": [ - 3253 + 3553 ], "where": [ - 3241 + 3541 ], "__typename": [ 78 @@ -77142,19 +81740,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4462 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4324 ], "friended_at": [ - 4024 + 4324 ], "last_presence_state": [ - 1352, + 1652, { "path": [ 78 @@ -77162,7 +81760,7 @@ export default { } ], "player": [ - 3439 + 3739 ], "status": [ 78 @@ -77171,7 +81769,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77179,10 +81777,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3267 + 3567 ], "nodes": [ - 3265 + 3565 ], "__typename": [ 78 @@ -77190,13 +81788,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3269 + 3569 ], "count": [ 38, { "columns": [ - 3284, + 3584, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -77205,31 +81803,31 @@ export default { } ], "max": [ - 3277 + 3577 ], "min": [ - 3278 + 3578 ], "stddev": [ - 3286 + 3586 ], "stddev_pop": [ - 3287 + 3587 ], "stddev_samp": [ - 3288 + 3588 ], "sum": [ - 3291 + 3591 ], "var_pop": [ - 3294 + 3594 ], "var_samp": [ - 3295 + 3595 ], "variance": [ - 3296 + 3596 ], "__typename": [ 78 @@ -77237,7 +81835,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1352 + 1652 ], "__typename": [ 78 @@ -77256,31 +81854,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3270 + 3570 ], "_not": [ - 3270 + 3570 ], "_or": [ - 3270 + 3570 ], "bot_steam_account_id": [ - 4464 + 4764 ], "bot_steamid64": [ 182 ], "created_at": [ - 4025 + 4325 ], "friended_at": [ - 4025 + 4325 ], "last_presence_state": [ - 1354 + 1654 ], "player": [ - 3443 + 3743 ], "status": [ 80 @@ -77289,7 +81887,7 @@ export default { 182 ], "updated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -77333,22 +81931,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4462 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4324 ], "friended_at": [ - 4024 + 4324 ], "last_presence_state": [ - 1352 + 1652 ], "player": [ - 3450 + 3750 ], "status": [ 78 @@ -77357,7 +81955,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77365,16 +81963,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4462 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4324 ], "friended_at": [ - 4024 + 4324 ], "status": [ 78 @@ -77383,7 +81981,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77391,16 +81989,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4462 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4324 ], "friended_at": [ - 4024 + 4324 ], "status": [ 78 @@ -77409,7 +82007,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77420,7 +82018,7 @@ export default { 38 ], "returning": [ - 3265 + 3565 ], "__typename": [ 78 @@ -77428,13 +82026,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3271 + 3571 ], "update_columns": [ - 3292 + 3592 ], "where": [ - 3270 + 3570 ], "__typename": [ 78 @@ -77442,31 +82040,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2481 + 2781 ], "bot_steamid64": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "friended_at": [ - 2481 + 2781 ], "last_presence_state": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "status": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -77482,7 +82080,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1352 + 1652 ], "__typename": [ 78 @@ -77491,19 +82089,19 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4462 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4324 ], "friended_at": [ - 4024 + 4324 ], "last_presence_state": [ - 1352 + 1652 ], "status": [ 78 @@ -77512,7 +82110,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77553,7 +82151,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3290 + 3590 ], "ordering": [ 236 @@ -77564,19 +82162,19 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4462 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4324 ], "friended_at": [ - 4024 + 4324 ], "last_presence_state": [ - 1352 + 1652 ], "status": [ 78 @@ -77585,7 +82183,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77605,28 +82203,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3268 + 3568 ], "_delete_at_path": [ - 3272 + 3572 ], "_delete_elem": [ - 3273 + 3573 ], "_delete_key": [ - 3274 + 3574 ], "_inc": [ - 3275 + 3575 ], "_prepend": [ - 3283 + 3583 ], "_set": [ - 3285 + 3585 ], "where": [ - 3270 + 3570 ], "__typename": [ 78 @@ -77670,7 +82268,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "last_error": [ 78 @@ -77679,16 +82277,16 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4324 ], "player": [ - 3439 + 3739 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77696,10 +82294,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3299 + 3599 ], "nodes": [ - 3297 + 3597 ], "__typename": [ 78 @@ -77707,13 +82305,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3300 + 3600 ], "count": [ 38, { "columns": [ - 3311, + 3611, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -77722,31 +82320,31 @@ export default { } ], "max": [ - 3305 + 3605 ], "min": [ - 3306 + 3606 ], "stddev": [ - 3313 + 3613 ], "stddev_pop": [ - 3314 + 3614 ], "stddev_samp": [ - 3315 + 3615 ], "sum": [ - 3318 + 3618 ], "var_pop": [ - 3321 + 3621 ], "var_samp": [ - 3322 + 3622 ], "variance": [ - 3323 + 3623 ], "__typename": [ 78 @@ -77762,19 +82360,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3301 + 3601 ], "_not": [ - 3301 + 3601 ], "_or": [ - 3301 + 3601 ], "auth_code": [ 80 ], "created_at": [ - 4025 + 4325 ], "last_error": [ 80 @@ -77783,16 +82381,16 @@ export default { 80 ], "last_polled_at": [ - 4025 + 4325 ], "player": [ - 3443 + 3743 ], "steam_id": [ 182 ], "updated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -77812,7 +82410,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "last_error": [ 78 @@ -77821,16 +82419,16 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4324 ], "player": [ - 3450 + 3750 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77841,7 +82439,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "last_error": [ 78 @@ -77850,13 +82448,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77867,7 +82465,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "last_error": [ 78 @@ -77876,13 +82474,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -77893,7 +82491,7 @@ export default { 38 ], "returning": [ - 3297 + 3597 ], "__typename": [ 78 @@ -77901,13 +82499,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3302 + 3602 ], "update_columns": [ - 3319 + 3619 ], "where": [ - 3301 + 3601 ], "__typename": [ 78 @@ -77915,28 +82513,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "last_error": [ - 2481 + 2781 ], "last_known_share_code": [ - 2481 + 2781 ], "last_polled_at": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "steam_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -77956,7 +82554,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "last_error": [ 78 @@ -77965,13 +82563,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -78003,7 +82601,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3317 + 3617 ], "ordering": [ 236 @@ -78017,7 +82615,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "last_error": [ 78 @@ -78026,13 +82624,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -78049,13 +82647,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3303 + 3603 ], "_set": [ - 3312 + 3612 ], "where": [ - 3301 + 3601 ], "__typename": [ 78 @@ -78087,22 +82685,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4024 + 4324 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 @@ -78119,10 +82717,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3328 + 3628 ], "nodes": [ - 3324 + 3624 ], "__typename": [ 78 @@ -78130,7 +82728,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3327 + 3627 ], "__typename": [ 78 @@ -78138,13 +82736,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3345 + 3645 ], "distinct": [ 3 ], "filter": [ - 3333 + 3633 ], "predicate": [ 39 @@ -78155,13 +82753,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3331 + 3631 ], "count": [ 38, { "columns": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -78170,31 +82768,31 @@ export default { } ], "max": [ - 3337 + 3637 ], "min": [ - 3339 + 3639 ], "stddev": [ - 3347 + 3647 ], "stddev_pop": [ - 3349 + 3649 ], "stddev_samp": [ - 3351 + 3651 ], "sum": [ - 3355 + 3655 ], "var_pop": [ - 3359 + 3659 ], "var_samp": [ - 3361 + 3661 ], "variance": [ - 3363 + 3663 ], "__typename": [ 78 @@ -78202,37 +82800,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3332 + 3632 ], "count": [ - 2481 + 2781 ], "max": [ - 3338 + 3638 ], "min": [ - 3340 + 3640 ], "stddev": [ - 3348 + 3648 ], "stddev_pop": [ - 3350 + 3650 ], "stddev_samp": [ - 3352 + 3652 ], "sum": [ - 3356 + 3656 ], "var_pop": [ - 3360 + 3660 ], "var_samp": [ - 3362 + 3662 ], "variance": [ - 3364 + 3664 ], "__typename": [ 78 @@ -78240,10 +82838,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3336 + 3636 ], "on_conflict": [ - 3342 + 3642 ], "__typename": [ 78 @@ -78265,13 +82863,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78279,31 +82877,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3333 + 3633 ], "_not": [ - 3333 + 3633 ], "_or": [ - 3333 + 3633 ], "deleted_at": [ - 4025 + 4325 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 @@ -78335,22 +82933,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4024 + 4324 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 @@ -78367,13 +82965,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -78390,22 +82988,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78413,13 +83011,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -78436,22 +83034,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78462,7 +83060,7 @@ export default { 38 ], "returning": [ - 3324 + 3624 ], "__typename": [ 78 @@ -78470,13 +83068,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3334 + 3634 ], "update_columns": [ - 3357 + 3657 ], "where": [ - 3333 + 3633 ], "__typename": [ 78 @@ -78484,31 +83082,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78516,7 +83114,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -78528,13 +83126,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -78565,13 +83163,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78593,13 +83191,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78621,13 +83219,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78635,7 +83233,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3354 + 3654 ], "ordering": [ 236 @@ -78646,13 +83244,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "player_steam_id": [ 180 @@ -78683,13 +83281,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78698,13 +83296,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3335 + 3635 ], "_set": [ - 3346 + 3646 ], "where": [ - 3333 + 3633 ], "__typename": [ 78 @@ -78726,13 +83324,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78754,13 +83352,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78782,13 +83380,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "unused": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78802,31 +83400,31 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "type": [ - 1145 + 1185 ], "__typename": [ 78 @@ -78834,10 +83432,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3369 + 3669 ], "nodes": [ - 3365 + 3665 ], "__typename": [ 78 @@ -78845,7 +83443,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3368 + 3668 ], "__typename": [ 78 @@ -78853,13 +83451,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3386 + 3686 ], "distinct": [ 3 ], "filter": [ - 3374 + 3674 ], "predicate": [ 39 @@ -78870,13 +83468,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3372 + 3672 ], "count": [ 38, { "columns": [ - 3386, + 3686, "[player_utility_select_column!]" ], "distinct": [ @@ -78885,31 +83483,31 @@ export default { } ], "max": [ - 3378 + 3678 ], "min": [ - 3380 + 3680 ], "stddev": [ - 3388 + 3688 ], "stddev_pop": [ - 3390 + 3690 ], "stddev_samp": [ - 3392 + 3692 ], "sum": [ - 3396 + 3696 ], "var_pop": [ - 3400 + 3700 ], "var_samp": [ - 3402 + 3702 ], "variance": [ - 3404 + 3704 ], "__typename": [ 78 @@ -78917,37 +83515,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3373 + 3673 ], "count": [ - 2481 + 2781 ], "max": [ - 3379 + 3679 ], "min": [ - 3381 + 3681 ], "stddev": [ - 3389 + 3689 ], "stddev_pop": [ - 3391 + 3691 ], "stddev_samp": [ - 3393 + 3693 ], "sum": [ - 3397 + 3697 ], "var_pop": [ - 3401 + 3701 ], "var_samp": [ - 3403 + 3703 ], "variance": [ - 3405 + 3705 ], "__typename": [ 78 @@ -78955,10 +83553,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3377 + 3677 ], "on_conflict": [ - 3383 + 3683 ], "__typename": [ 78 @@ -78977,10 +83575,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -78988,13 +83586,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3374 + 3674 ], "_not": [ - 3374 + 3674 ], "_or": [ - 3374 + 3674 ], "attacker_location_coordinates": [ 80 @@ -79003,31 +83601,31 @@ export default { 182 ], "deleted_at": [ - 4025 + 4325 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "round": [ 39 ], "time": [ - 4025 + 4325 ], "type": [ - 1146 + 1186 ], "__typename": [ 78 @@ -79053,31 +83651,31 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "type": [ - 1145 + 1185 ], "__typename": [ 78 @@ -79091,19 +83689,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -79111,25 +83709,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79143,19 +83741,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -79163,25 +83761,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79192,7 +83790,7 @@ export default { 38 ], "returning": [ - 3365 + 3665 ], "__typename": [ 78 @@ -79200,13 +83798,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3375 + 3675 ], "update_columns": [ - 3398 + 3698 ], "where": [ - 3374 + 3674 ], "__typename": [ 78 @@ -79214,37 +83812,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2481 + 2781 ], "attacker_steam_id": [ - 2481 + 2781 ], "deleted_at": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "round": [ - 2481 + 2781 ], "time": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79255,10 +83853,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4762 ], "time": [ - 4024 + 4324 ], "__typename": [ 78 @@ -79273,22 +83871,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "type": [ - 1145 + 1185 ], "__typename": [ 78 @@ -79307,10 +83905,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79329,10 +83927,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79351,10 +83949,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79362,7 +83960,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3395 + 3695 ], "ordering": [ 236 @@ -79379,22 +83977,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 ], "time": [ - 4024 + 4324 ], "type": [ - 1145 + 1185 ], "__typename": [ 78 @@ -79413,10 +84011,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79425,13 +84023,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3376 + 3676 ], "_set": [ - 3387 + 3687 ], "where": [ - 3374 + 3674 ], "__typename": [ 78 @@ -79450,10 +84048,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79472,10 +84070,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79494,10 +84092,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79517,7 +84115,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -79537,10 +84135,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3410 + 3710 ], "nodes": [ - 3406 + 3706 ], "__typename": [ 78 @@ -79548,7 +84146,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3409 + 3709 ], "__typename": [ 78 @@ -79556,13 +84154,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3422 + 3722 ], "distinct": [ 3 ], "filter": [ - 3415 + 3715 ], "predicate": [ 39 @@ -79573,13 +84171,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3413 + 3713 ], "count": [ 38, { "columns": [ - 3422, + 3722, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -79588,31 +84186,31 @@ export default { } ], "max": [ - 3417 + 3717 ], "min": [ - 3419 + 3719 ], "stddev": [ - 3423 + 3723 ], "stddev_pop": [ - 3425 + 3725 ], "stddev_samp": [ - 3427 + 3727 ], "sum": [ - 3431 + 3731 ], "var_pop": [ - 3433 + 3733 ], "var_samp": [ - 3435 + 3735 ], "variance": [ - 3437 + 3737 ], "__typename": [ 78 @@ -79620,37 +84218,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3414 + 3714 ], "count": [ - 2481 + 2781 ], "max": [ - 3418 + 3718 ], "min": [ - 3420 + 3720 ], "stddev": [ - 3424 + 3724 ], "stddev_pop": [ - 3426 + 3726 ], "stddev_samp": [ - 3428 + 3728 ], "sum": [ - 3432 + 3732 ], "var_pop": [ - 3434 + 3734 ], "var_samp": [ - 3436 + 3736 ], "variance": [ - 3438 + 3738 ], "__typename": [ 78 @@ -79658,7 +84256,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3416 + 3716 ], "__typename": [ 78 @@ -79692,25 +84290,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79718,13 +84316,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3415 + 3715 ], "_not": [ - 3415 + 3715 ], "_or": [ - 3415 + 3715 ], "first_bullet_hits": [ 39 @@ -79739,7 +84337,7 @@ export default { 39 ], "match_id": [ - 4464 + 4764 ], "shots": [ 39 @@ -79771,7 +84369,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -79803,7 +84401,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -79823,31 +84421,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "weapon_class": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79867,7 +84465,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -79887,31 +84485,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "weapon_class": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79919,31 +84517,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "weapon_class": [ - 2481 + 2781 ], "__typename": [ 78 @@ -79978,25 +84576,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -80030,25 +84628,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -80082,25 +84680,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -80108,7 +84706,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3430 + 3730 ], "ordering": [ 236 @@ -80131,7 +84729,7 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "shots": [ 38 @@ -80177,25 +84775,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -80229,25 +84827,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -80281,25 +84879,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -80333,25 +84931,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2481 + 2781 ], "first_bullet_shots": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "hits_spotted": [ - 2481 + 2781 ], "shots": [ - 2481 + 2781 ], "shots_spotted": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -80403,10 +85001,10 @@ export default { } ], "aim_weapon_stats": [ - 2578, + 2878, { "distinct_on": [ - 2599, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80416,19 +85014,19 @@ export default { 38 ], "order_by": [ - 2597, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2887 ] } ], "aim_weapon_stats_aggregate": [ - 2579, + 2879, { "distinct_on": [ - 2599, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80438,19 +85036,19 @@ export default { 38 ], "order_by": [ - 2597, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2887 ] } ], "assists": [ - 2619, + 2919, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -80460,19 +85058,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "assists_aggregate": [ - 2620, + 2920, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -80482,19 +85080,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "assited_by_players": [ - 2619, + 2919, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -80504,19 +85102,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "assited_by_players_aggregate": [ - 2620, + 2920, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -80526,11 +85124,11 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], @@ -80538,10 +85136,10 @@ export default { 78 ], "coach_lineups": [ - 1976, + 2276, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -80551,19 +85149,19 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], "coach_lineups_aggregate": [ - 1977, + 2277, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -80573,11 +85171,11 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], @@ -80585,19 +85183,19 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "current_lobby_id": [ - 4462 + 4762 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2682, + 2982, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -80607,19 +85205,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "damage_dealt_aggregate": [ - 2683, + 2983, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -80629,19 +85227,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "damage_taken": [ - 2682, + 2982, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -80651,19 +85249,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "damage_taken_aggregate": [ - 2683, + 2983, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -80673,11 +85271,11 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], @@ -80685,10 +85283,10 @@ export default { 38 ], "deaths": [ - 2836, + 3136, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -80698,19 +85296,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "deaths_aggregate": [ - 2837, + 3137, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -80720,11 +85318,11 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], @@ -80776,7 +85374,7 @@ export default { } ], "elo": [ - 1352, + 1652, { "path": [ 78 @@ -80784,10 +85382,10 @@ export default { } ], "elo_history": [ - 4788, + 5139, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -80797,19 +85395,19 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], "elo_history_aggregate": [ - 4789, + 5140, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -80819,11 +85417,11 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], @@ -80837,10 +85435,10 @@ export default { 78 ], "faceit_rank_history": [ - 2750, + 3050, { "distinct_on": [ - 2771, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80850,19 +85448,19 @@ export default { 38 ], "order_by": [ - 2769, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 3059 ] } ], "faceit_rank_history_aggregate": [ - 2751, + 3051, { "distinct_on": [ - 2771, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80872,11 +85470,11 @@ export default { 38 ], "order_by": [ - 2769, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 3059 ] } ], @@ -80884,16 +85482,16 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2791, + 3091, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -80903,19 +85501,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "flashed_by_players_aggregate": [ - 2792, + 3092, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -80925,19 +85523,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "flashed_players": [ - 2791, + 3091, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -80947,19 +85545,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "flashed_players_aggregate": [ - 2792, + 3092, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -80969,19 +85567,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "friends": [ - 2356, + 2656, { "distinct_on": [ - 2381, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -80991,19 +85589,19 @@ export default { 38 ], "order_by": [ - 2379, + 2679, "[my_friends_order_by!]" ], "where": [ - 2368 + 2668 ] } ], "friends_aggregate": [ - 2357, + 2657, { "distinct_on": [ - 2381, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -81013,11 +85611,11 @@ export default { 38 ], "order_by": [ - 2379, + 2679, "[my_friends_order_by!]" ], "where": [ - 2368 + 2668 ] } ], @@ -81025,10 +85623,10 @@ export default { 38 ], "invited_players": [ - 3698, + 3998, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -81038,19 +85636,19 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "invited_players_aggregate": [ - 3699, + 3999, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -81060,11 +85658,11 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], @@ -81087,10 +85685,10 @@ export default { 3 ], "kills": [ - 2836, + 3136, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -81100,19 +85698,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "kills_aggregate": [ - 2837, + 3137, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -81122,19 +85720,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "kills_by_weapons": [ - 2848, + 3148, { "distinct_on": [ - 2869, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -81144,19 +85742,19 @@ export default { 38 ], "order_by": [ - 2867, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3157 ] } ], "kills_by_weapons_aggregate": [ - 2849, + 3149, { "distinct_on": [ - 2869, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -81166,11 +85764,11 @@ export default { 38 ], "order_by": [ - 2867, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3157 ] } ], @@ -81178,16 +85776,16 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "lobby_players": [ - 1750, + 2050, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -81197,19 +85795,19 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], "lobby_players_aggregate": [ - 1751, + 2051, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -81219,11 +85817,11 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], @@ -81240,10 +85838,10 @@ export default { 38 ], "match_map_hltv": [ - 4893, + 5244, { "distinct_on": [ - 4911, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81253,19 +85851,19 @@ export default { 38 ], "order_by": [ - 4910, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5253 ] } ], "match_map_hltv_aggregate": [ - 4894, + 5245, { "distinct_on": [ - 4911, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81275,19 +85873,19 @@ export default { 38 ], "order_by": [ - 4910, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5253 ] } ], "match_map_stats": [ - 2945, + 3245, { "distinct_on": [ - 2966, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81297,19 +85895,19 @@ export default { 38 ], "order_by": [ - 2964, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3254 ] } ], "match_map_stats_aggregate": [ - 2946, + 3246, { "distinct_on": [ - 2966, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81319,19 +85917,19 @@ export default { 38 ], "order_by": [ - 2964, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3254 ] } ], "match_stats": [ - 3004, + 3304, { "distinct_on": [ - 3020, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81341,19 +85939,19 @@ export default { 38 ], "order_by": [ - 3019, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3313 ] } ], "match_stats_aggregate": [ - 3005, + 3305, { "distinct_on": [ - 3020, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81363,19 +85961,19 @@ export default { 38 ], "order_by": [ - 3019, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3313 ] } ], "matches": [ - 2296, + 2596, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -81385,22 +85983,22 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matchmaking_cooldown": [ - 4024 + 4324 ], "multi_kills": [ - 4984, + 5335, { "distinct_on": [ - 5000, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81410,19 +86008,19 @@ export default { 38 ], "order_by": [ - 4999, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5344 ] } ], "multi_kills_aggregate": [ - 4985, + 5336, { "distinct_on": [ - 5000, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81432,11 +86030,11 @@ export default { 38 ], "order_by": [ - 4999, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5344 ] } ], @@ -81447,10 +86045,10 @@ export default { 3 ], "notifications": [ - 2429, + 2729, { "distinct_on": [ - 2457, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -81460,19 +86058,19 @@ export default { 38 ], "order_by": [ - 2454, + 2754, "[notifications_order_by!]" ], "where": [ - 2441 + 2741 ] } ], "notifications_aggregate": [ - 2430, + 2730, { "distinct_on": [ - 2457, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -81482,19 +86080,19 @@ export default { 38 ], "order_by": [ - 2454, + 2754, "[notifications_order_by!]" ], "where": [ - 2441 + 2741 ] } ], "objectives": [ - 3037, + 3337, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -81504,19 +86102,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "objectives_aggregate": [ - 3038, + 3338, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -81526,19 +86124,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "owned_teams": [ - 3981, + 4281, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -81548,19 +86146,19 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], "owned_teams_aggregate": [ - 3982, + 4282, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -81570,16 +86168,16 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], "peak_elo": [ - 1352, + 1652, { "path": [ 78 @@ -81587,10 +86185,10 @@ export default { } ], "pending_match_imports": [ - 2482, + 2782, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81600,19 +86198,19 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], "pending_match_imports_aggregate": [ - 2483, + 2783, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81622,19 +86220,19 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], "player_lineup": [ - 1931, + 2231, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -81644,19 +86242,19 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "player_lineup_aggregate": [ - 1932, + 2232, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -81666,19 +86264,19 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "player_unused_utilities": [ - 3324, + 3624, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81688,19 +86286,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3625, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81710,11 +86308,11 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], @@ -81722,10 +86320,10 @@ export default { 38 ], "premier_rank_history": [ - 3096, + 3396, { "distinct_on": [ - 3117, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81735,19 +86333,19 @@ export default { 38 ], "order_by": [ - 3115, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3405 ] } ], "premier_rank_history_aggregate": [ - 3097, + 3397, { "distinct_on": [ - 3117, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81757,31 +86355,31 @@ export default { 38 ], "order_by": [ - 3115, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3405 ] } ], "premier_rank_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 ], "role": [ - 881 + 921 ], "roster_image_url": [ 78 ], "sanctions": [ - 3137, + 3437, { "distinct_on": [ - 3158, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -81791,19 +86389,19 @@ export default { 38 ], "order_by": [ - 3156, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3446 ] } ], "sanctions_aggregate": [ - 3138, + 3438, { "distinct_on": [ - 3158, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -81813,19 +86411,19 @@ export default { 38 ], "order_by": [ - 3156, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3446 ] } ], "season_stats": [ - 3178, + 3478, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -81835,19 +86433,19 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], "season_stats_aggregate": [ - 3179, + 3479, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -81857,11 +86455,11 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], @@ -81869,19 +86467,19 @@ export default { 3 ], "stats": [ - 3237 + 3537 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "team_invites": [ - 3698, + 3998, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -81891,19 +86489,19 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "team_invites_aggregate": [ - 3699, + 3999, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -81913,19 +86511,19 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "team_members": [ - 3739, + 4039, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -81935,19 +86533,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "team_members_aggregate": [ - 3740, + 4040, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -81957,19 +86555,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "teams": [ - 3981, + 4281, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -81979,11 +86577,11 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], @@ -81991,10 +86589,10 @@ export default { 38 ], "tournament_organizers": [ - 4072, + 4372, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -82004,19 +86602,19 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4373, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -82026,19 +86624,19 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "tournament_rosters": [ - 4246, + 4546, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -82048,19 +86646,19 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "tournament_rosters_aggregate": [ - 4247, + 4547, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -82070,19 +86668,19 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "tournament_trophies": [ - 4329, + 4629, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -82092,19 +86690,19 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4630, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -82114,19 +86712,19 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], "tournaments": [ - 4416, + 4716, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -82136,19 +86734,19 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], "tournaments_aggregate": [ - 4417, + 4717, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -82158,19 +86756,19 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], "utility_thrown": [ - 3365, + 3665, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -82180,19 +86778,19 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "utility_thrown_aggregate": [ - 3366, + 3666, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -82202,11 +86800,11 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], @@ -82217,10 +86815,10 @@ export default { 3 ], "weapon_stats": [ - 3406, + 3706, { "distinct_on": [ - 3422, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82230,19 +86828,19 @@ export default { 38 ], "order_by": [ - 3421, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3715 ] } ], "weapon_stats_aggregate": [ - 3407, + 3707, { "distinct_on": [ - 3422, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82252,11 +86850,11 @@ export default { 38 ], "order_by": [ - 3421, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3715 ] } ], @@ -82278,10 +86876,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3441 + 3741 ], "nodes": [ - 3439 + 3739 ], "__typename": [ 78 @@ -82289,13 +86887,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3442 + 3742 ], "count": [ 38, { "columns": [ - 3454, + 3754, "[players_select_column!]" ], "distinct": [ @@ -82304,31 +86902,31 @@ export default { } ], "max": [ - 3447 + 3747 ], "min": [ - 3448 + 3748 ], "stddev": [ - 3456 + 3756 ], "stddev_pop": [ - 3457 + 3757 ], "stddev_samp": [ - 3458 + 3758 ], "sum": [ - 3461 + 3761 ], "var_pop": [ - 3464 + 3764 ], "var_samp": [ - 3465 + 3765 ], "variance": [ - 3466 + 3766 ], "__typename": [ 78 @@ -82389,13 +86987,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3443 + 3743 ], "_not": [ - 3443 + 3743 ], "_or": [ - 3443 + 3743 ], "abandoned_matches": [ 120 @@ -82404,64 +87002,64 @@ export default { 113 ], "aim_weapon_stats": [ - 2587 + 2887 ], "aim_weapon_stats_aggregate": [ - 2580 + 2880 ], "assists": [ - 2630 + 2930 ], "assists_aggregate": [ - 2621 + 2921 ], "assited_by_players": [ - 2630 + 2930 ], "assited_by_players_aggregate": [ - 2621 + 2921 ], "avatar_url": [ 80 ], "coach_lineups": [ - 1985 + 2285 ], "coach_lineups_aggregate": [ - 1978 + 2278 ], "country": [ 80 ], "created_at": [ - 4025 + 4325 ], "current_lobby_id": [ - 4464 + 4764 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2691 + 2991 ], "damage_dealt_aggregate": [ - 2684 + 2984 ], "damage_taken": [ - 2691 + 2991 ], "damage_taken_aggregate": [ - 2684 + 2984 ], "days_since_last_ban": [ 39 ], "deaths": [ - 2847 + 3147 ], "deaths_aggregate": [ - 2838 + 3138 ], "discord_id": [ 80 @@ -82473,13 +87071,13 @@ export default { 311 ], "elo": [ - 1354 + 1654 ], "elo_history": [ - 4807 + 5158 ], "elo_history_aggregate": [ - 4790 + 5141 ], "faceit_elo": [ 39 @@ -82491,46 +87089,46 @@ export default { 80 ], "faceit_rank_history": [ - 2759 + 3059 ], "faceit_rank_history_aggregate": [ - 2752 + 3052 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 4025 + 4325 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 2802 + 3102 ], "flashed_by_players_aggregate": [ - 2793 + 3093 ], "flashed_players": [ - 2802 + 3102 ], "flashed_players_aggregate": [ - 2793 + 3093 ], "friends": [ - 2368 + 2668 ], "friends_aggregate": [ - 2358 + 2658 ], "game_ban_count": [ 39 ], "invited_players": [ - 3707 + 4007 ], "invited_players_aggregate": [ - 3700 + 4000 ], "is_banned": [ 4 @@ -82551,31 +87149,31 @@ export default { 4 ], "kills": [ - 2847 + 3147 ], "kills_aggregate": [ - 2838 + 3138 ], "kills_by_weapons": [ - 2857 + 3157 ], "kills_by_weapons_aggregate": [ - 2850 + 3150 ], "language": [ 80 ], "last_read_news_at": [ - 4025 + 4325 ], "last_sign_in_at": [ - 4025 + 4325 ], "lobby_players": [ - 1761 + 2061 ], "lobby_players_aggregate": [ - 1752 + 2052 ], "losses": [ 39 @@ -82590,34 +87188,34 @@ export default { 39 ], "match_map_hltv": [ - 4902 + 5253 ], "match_map_hltv_aggregate": [ - 4895 + 5246 ], "match_map_stats": [ - 2954 + 3254 ], "match_map_stats_aggregate": [ - 2947 + 3247 ], "match_stats": [ - 3013 + 3313 ], "match_stats_aggregate": [ - 3006 + 3306 ], "matches": [ - 2305 + 2605 ], "matchmaking_cooldown": [ - 4025 + 4325 ], "multi_kills": [ - 4993 + 5344 ], "multi_kills_aggregate": [ - 4986 + 5337 ], "name": [ 80 @@ -82626,136 +87224,136 @@ export default { 4 ], "notifications": [ - 2441 + 2741 ], "notifications_aggregate": [ - 2431 + 2731 ], "objectives": [ - 3046 + 3346 ], "objectives_aggregate": [ - 3039 + 3339 ], "owned_teams": [ - 3990 + 4290 ], "owned_teams_aggregate": [ - 3983 + 4283 ], "peak_elo": [ - 1354 + 1654 ], "pending_match_imports": [ - 2491 + 2791 ], "pending_match_imports_aggregate": [ - 2484 + 2784 ], "player_lineup": [ - 1942 + 2242 ], "player_lineup_aggregate": [ - 1933 + 2233 ], "player_unused_utilities": [ - 3333 + 3633 ], "player_unused_utilities_aggregate": [ - 3326 + 3626 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3105 + 3405 ], "premier_rank_history_aggregate": [ - 3098 + 3398 ], "premier_rank_updated_at": [ - 4025 + 4325 ], "profile_url": [ 80 ], "role": [ - 882 + 922 ], "roster_image_url": [ 80 ], "sanctions": [ - 3146 + 3446 ], "sanctions_aggregate": [ - 3139 + 3439 ], "season_stats": [ - 3197 + 3497 ], "season_stats_aggregate": [ - 3180 + 3480 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3241 + 3541 ], "steam_bans_checked_at": [ - 4025 + 4325 ], "steam_id": [ 182 ], "team_invites": [ - 3707 + 4007 ], "team_invites_aggregate": [ - 3700 + 4000 ], "team_members": [ - 3750 + 4050 ], "team_members_aggregate": [ - 3741 + 4041 ], "teams": [ - 3990 + 4290 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4081 + 4381 ], "tournament_organizers_aggregate": [ - 4074 + 4374 ], "tournament_rosters": [ - 4255 + 4555 ], "tournament_rosters_aggregate": [ - 4248 + 4548 ], "tournament_trophies": [ - 4340 + 4640 ], "tournament_trophies_aggregate": [ - 4331 + 4631 ], "tournaments": [ - 4427 + 4727 ], "tournaments_aggregate": [ - 4418 + 4718 ], "utility_thrown": [ - 3374 + 3674 ], "utility_thrown_aggregate": [ - 3367 + 3667 ], "vac_ban_count": [ 39 @@ -82764,10 +87362,10 @@ export default { 4 ], "weapon_stats": [ - 3415 + 3715 ], "weapon_stats_aggregate": [ - 3408 + 3708 ], "wins": [ 39 @@ -82817,40 +87415,40 @@ export default { 117 ], "aim_weapon_stats": [ - 2584 + 2884 ], "assists": [ - 2627 + 2927 ], "assited_by_players": [ - 2627 + 2927 ], "avatar_url": [ 78 ], "coach_lineups": [ - 1982 + 2282 ], "country": [ 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2688 + 2988 ], "damage_taken": [ - 2688 + 2988 ], "days_since_last_ban": [ 38 ], "deaths": [ - 2844 + 3144 ], "discord_id": [ 78 @@ -82859,7 +87457,7 @@ export default { 317 ], "elo_history": [ - 4804 + 5155 ], "faceit_elo": [ 38 @@ -82871,61 +87469,61 @@ export default { 78 ], "faceit_rank_history": [ - 2756 + 3056 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2799 + 3099 ], "flashed_players": [ - 2799 + 3099 ], "friends": [ - 2365 + 2665 ], "game_ban_count": [ 38 ], "invited_players": [ - 3704 + 4004 ], "kills": [ - 2844 + 3144 ], "kills_by_weapons": [ - 2854 + 3154 ], "language": [ 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "lobby_players": [ - 1758 + 2058 ], "match_map_hltv": [ - 4899 + 5250 ], "match_map_stats": [ - 2951 + 3251 ], "match_stats": [ - 3010 + 3310 ], "multi_kills": [ - 4990 + 5341 ], "name": [ 78 @@ -82934,79 +87532,79 @@ export default { 3 ], "notifications": [ - 2438 + 2738 ], "objectives": [ - 3043 + 3343 ], "owned_teams": [ - 3987 + 4287 ], "pending_match_imports": [ - 2488 + 2788 ], "player_lineup": [ - 1939 + 2239 ], "player_unused_utilities": [ - 3330 + 3630 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3102 + 3402 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 ], "role": [ - 881 + 921 ], "roster_image_url": [ 78 ], "sanctions": [ - 3143 + 3443 ], "season_stats": [ - 3194 + 3494 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3248 + 3548 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 ], "team_invites": [ - 3704 + 4004 ], "team_members": [ - 3747 + 4047 ], "tournament_organizers": [ - 4078 + 4378 ], "tournament_rosters": [ - 4252 + 4552 ], "tournament_trophies": [ - 4337 + 4637 ], "tournaments": [ - 4424 + 4724 ], "utility_thrown": [ - 3371 + 3671 ], "vac_ban_count": [ 38 @@ -83015,7 +87613,7 @@ export default { 3 ], "weapon_stats": [ - 3412 + 3712 ], "__typename": [ 78 @@ -83029,10 +87627,10 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "current_lobby_id": [ - 4462 + 4762 ], "custom_avatar_url": [ 78 @@ -83056,7 +87654,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -83068,10 +87666,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "losses": [ 38 @@ -83086,7 +87684,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4024 + 4324 ], "name": [ 78 @@ -83095,7 +87693,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -83104,7 +87702,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -83139,10 +87737,10 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "current_lobby_id": [ - 4462 + 4762 ], "custom_avatar_url": [ 78 @@ -83166,7 +87764,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -83178,10 +87776,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "losses": [ 38 @@ -83196,7 +87794,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4024 + 4324 ], "name": [ 78 @@ -83205,7 +87803,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 @@ -83214,7 +87812,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -83246,7 +87844,7 @@ export default { 38 ], "returning": [ - 3439 + 3739 ], "__typename": [ 78 @@ -83254,10 +87852,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3446 + 3746 ], "on_conflict": [ - 3451 + 3751 ], "__typename": [ 78 @@ -83265,13 +87863,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3444 + 3744 ], "update_columns": [ - 3462 + 3762 ], "where": [ - 3443 + 3743 ], "__typename": [ 78 @@ -83282,268 +87880,268 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2583 + 2883 ], "assists_aggregate": [ - 2626 + 2926 ], "assited_by_players_aggregate": [ - 2626 + 2926 ], "avatar_url": [ - 2481 + 2781 ], "coach_lineups_aggregate": [ - 1981 + 2281 ], "country": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "current_lobby_id": [ - 2481 + 2781 ], "custom_avatar_url": [ - 2481 + 2781 ], "damage_dealt_aggregate": [ - 2687 + 2987 ], "damage_taken_aggregate": [ - 2687 + 2987 ], "days_since_last_ban": [ - 2481 + 2781 ], "deaths_aggregate": [ - 2843 + 3143 ], "discord_id": [ - 2481 + 2781 ], "draft_game_players_aggregate": [ 316 ], "elo": [ - 2481 + 2781 ], "elo_history_aggregate": [ - 4803 + 5154 ], "faceit_elo": [ - 2481 + 2781 ], "faceit_nickname": [ - 2481 + 2781 ], "faceit_player_id": [ - 2481 + 2781 ], "faceit_rank_history_aggregate": [ - 2755 + 3055 ], "faceit_skill_level": [ - 2481 + 2781 ], "faceit_updated_at": [ - 2481 + 2781 ], "faceit_url": [ - 2481 + 2781 ], "flashed_by_players_aggregate": [ - 2798 + 3098 ], "flashed_players_aggregate": [ - 2798 + 3098 ], "friends_aggregate": [ - 2363 + 2663 ], "game_ban_count": [ - 2481 + 2781 ], "invited_players_aggregate": [ - 3703 + 4003 ], "is_banned": [ - 2481 + 2781 ], "is_gagged": [ - 2481 + 2781 ], "is_in_another_match": [ - 2481 + 2781 ], "is_in_draft": [ - 2481 + 2781 ], "is_in_lobby": [ - 2481 + 2781 ], "is_muted": [ - 2481 + 2781 ], "kills_aggregate": [ - 2843 + 3143 ], "kills_by_weapons_aggregate": [ - 2853 + 3153 ], "language": [ - 2481 + 2781 ], "last_read_news_at": [ - 2481 + 2781 ], "last_sign_in_at": [ - 2481 + 2781 ], "lobby_players_aggregate": [ - 1757 + 2057 ], "losses": [ - 2481 + 2781 ], "losses_competitive": [ - 2481 + 2781 ], "losses_duel": [ - 2481 + 2781 ], "losses_wingman": [ - 2481 + 2781 ], "match_map_hltv_aggregate": [ - 4898 + 5249 ], "match_map_stats_aggregate": [ - 2950 + 3250 ], "match_stats_aggregate": [ - 3009 + 3309 ], "matches_aggregate": [ - 2301 + 2601 ], "matchmaking_cooldown": [ - 2481 + 2781 ], "multi_kills_aggregate": [ - 4989 + 5340 ], "name": [ - 2481 + 2781 ], "name_registered": [ - 2481 + 2781 ], "notifications_aggregate": [ - 2436 + 2736 ], "objectives_aggregate": [ - 3042 + 3342 ], "owned_teams_aggregate": [ - 3986 + 4286 ], "peak_elo": [ - 2481 + 2781 ], "pending_match_imports_aggregate": [ - 2487 + 2787 ], "player_lineup_aggregate": [ - 1938 + 2238 ], "player_unused_utilities_aggregate": [ - 3329 + 3629 ], "premier_rank": [ - 2481 + 2781 ], "premier_rank_history_aggregate": [ - 3101 + 3401 ], "premier_rank_updated_at": [ - 2481 + 2781 ], "profile_url": [ - 2481 + 2781 ], "role": [ - 2481 + 2781 ], "roster_image_url": [ - 2481 + 2781 ], "sanctions_aggregate": [ - 3142 + 3442 ], "season_stats_aggregate": [ - 3193 + 3493 ], "show_match_ready_modal": [ - 2481 + 2781 ], "stats": [ - 3250 + 3550 ], "steam_bans_checked_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_invites_aggregate": [ - 3703 + 4003 ], "team_members_aggregate": [ - 3746 + 4046 ], "teams_aggregate": [ - 3986 + 4286 ], "total_matches": [ - 2481 + 2781 ], "tournament_organizers_aggregate": [ - 4077 + 4377 ], "tournament_rosters_aggregate": [ - 4251 + 4551 ], "tournament_trophies_aggregate": [ - 4336 + 4636 ], "tournaments_aggregate": [ - 4423 + 4723 ], "utility_thrown_aggregate": [ - 3370 + 3670 ], "vac_ban_count": [ - 2481 + 2781 ], "vac_banned": [ - 2481 + 2781 ], "weapon_stats_aggregate": [ - 3411 + 3711 ], "wins": [ - 2481 + 2781 ], "wins_competitive": [ - 2481 + 2781 ], "wins_duel": [ - 2481 + 2781 ], "wins_wingman": [ - 2481 + 2781 ], "__typename": [ 78 @@ -83566,7 +88164,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -83590,7 +88188,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -83602,10 +88200,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -83617,13 +88215,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 ], "role": [ - 881 + 921 ], "roster_image_url": [ 78 @@ -83632,7 +88230,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -83808,7 +88406,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3460 + 3760 ], "ordering": [ 236 @@ -83825,7 +88423,7 @@ export default { 78 ], "created_at": [ - 4024 + 4324 ], "custom_avatar_url": [ 78 @@ -83849,7 +88447,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4324 ], "faceit_url": [ 78 @@ -83861,10 +88459,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4324 ], "last_sign_in_at": [ - 4024 + 4324 ], "name": [ 78 @@ -83876,13 +88474,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4324 ], "profile_url": [ 78 ], "role": [ - 881 + 921 ], "roster_image_url": [ 78 @@ -83891,7 +88489,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -83962,13 +88560,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3445 + 3745 ], "_set": [ - 3455 + 3755 ], "where": [ - 3443 + 3743 ], "__typename": [ 78 @@ -84138,10 +88736,10 @@ export default { 38 ], "published_at": [ - 4024 + 4324 ], "runtime": [ - 901 + 941 ], "version": [ 78 @@ -84152,10 +88750,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3469 + 3769 ], "nodes": [ - 3467 + 3767 ], "__typename": [ 78 @@ -84163,13 +88761,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3470 + 3770 ], "count": [ 38, { "columns": [ - 3481, + 3781, "[plugin_versions_select_column!]" ], "distinct": [ @@ -84178,31 +88776,31 @@ export default { } ], "max": [ - 3475 + 3775 ], "min": [ - 3476 + 3776 ], "stddev": [ - 3483 + 3783 ], "stddev_pop": [ - 3484 + 3784 ], "stddev_samp": [ - 3485 + 3785 ], "sum": [ - 3488 + 3788 ], "var_pop": [ - 3491 + 3791 ], "var_samp": [ - 3492 + 3792 ], "variance": [ - 3493 + 3793 ], "__typename": [ 78 @@ -84218,22 +88816,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3471 + 3771 ], "_not": [ - 3471 + 3771 ], "_or": [ - 3471 + 3771 ], "min_game_build_id": [ 39 ], "published_at": [ - 4025 + 4325 ], "runtime": [ - 902 + 942 ], "version": [ 80 @@ -84256,10 +88854,10 @@ export default { 38 ], "published_at": [ - 4024 + 4324 ], "runtime": [ - 901 + 941 ], "version": [ 78 @@ -84273,7 +88871,7 @@ export default { 38 ], "published_at": [ - 4024 + 4324 ], "version": [ 78 @@ -84287,7 +88885,7 @@ export default { 38 ], "published_at": [ - 4024 + 4324 ], "version": [ 78 @@ -84301,7 +88899,7 @@ export default { 38 ], "returning": [ - 3467 + 3767 ], "__typename": [ 78 @@ -84309,13 +88907,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3472 + 3772 ], "update_columns": [ - 3489 + 3789 ], "where": [ - 3471 + 3771 ], "__typename": [ 78 @@ -84323,16 +88921,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2481 + 2781 ], "published_at": [ - 2481 + 2781 ], "runtime": [ - 2481 + 2781 ], "version": [ - 2481 + 2781 ], "__typename": [ 78 @@ -84340,7 +88938,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 901 + 941 ], "version": [ 78 @@ -84355,10 +88953,10 @@ export default { 38 ], "published_at": [ - 4024 + 4324 ], "runtime": [ - 901 + 941 ], "version": [ 78 @@ -84393,7 +88991,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3487 + 3787 ], "ordering": [ 236 @@ -84407,10 +89005,10 @@ export default { 38 ], "published_at": [ - 4024 + 4324 ], "runtime": [ - 901 + 941 ], "version": [ 78 @@ -84430,13 +89028,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3473 + 3773 ], "_set": [ - 3482 + 3782 ], "where": [ - 3471 + 3771 ], "__typename": [ 78 @@ -84468,7 +89066,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -84476,7 +89074,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -84492,7 +89090,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -84500,16 +89098,16 @@ export default { }, "seasons": { "created_at": [ - 4024 + 4324 ], "description": [ 78 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "needs_rebuild": [ 3 @@ -84518,10 +89116,10 @@ export default { 38 ], "player_season_stats": [ - 3178, + 3478, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -84531,19 +89129,19 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], "player_season_stats_aggregate": [ - 3179, + 3479, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -84553,16 +89151,16 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -84570,10 +89168,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3500 + 3800 ], "nodes": [ - 3498 + 3798 ], "__typename": [ 78 @@ -84581,13 +89179,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3501 + 3801 ], "count": [ 38, { "columns": [ - 3513, + 3813, "[seasons_select_column!]" ], "distinct": [ @@ -84596,31 +89194,31 @@ export default { } ], "max": [ - 3506 + 3806 ], "min": [ - 3507 + 3807 ], "stddev": [ - 3515 + 3815 ], "stddev_pop": [ - 3516 + 3816 ], "stddev_samp": [ - 3517 + 3817 ], "sum": [ - 3520 + 3820 ], "var_pop": [ - 3523 + 3823 ], "var_samp": [ - 3524 + 3824 ], "variance": [ - 3525 + 3825 ], "__typename": [ 78 @@ -84636,25 +89234,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3502 + 3802 ], "_not": [ - 3502 + 3802 ], "_or": [ - 3502 + 3802 ], "created_at": [ - 4025 + 4325 ], "description": [ 80 ], "ends_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "needs_rebuild": [ 4 @@ -84663,13 +89261,13 @@ export default { 39 ], "player_season_stats": [ - 3197 + 3497 ], "player_season_stats_aggregate": [ - 3180 + 3480 ], "starts_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -84686,16 +89284,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4024 + 4324 ], "description": [ 78 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "needs_rebuild": [ 3 @@ -84704,10 +89302,10 @@ export default { 38 ], "player_season_stats": [ - 3194 + 3494 ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -84715,22 +89313,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4024 + 4324 ], "description": [ 78 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "number": [ 38 ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -84738,22 +89336,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4024 + 4324 ], "description": [ 78 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "number": [ 38 ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -84764,7 +89362,7 @@ export default { 38 ], "returning": [ - 3498 + 3798 ], "__typename": [ 78 @@ -84772,10 +89370,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3505 + 3805 ], "on_conflict": [ - 3510 + 3810 ], "__typename": [ 78 @@ -84783,13 +89381,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3503 + 3803 ], "update_columns": [ - 3521 + 3821 ], "where": [ - 3502 + 3802 ], "__typename": [ 78 @@ -84797,28 +89395,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2481 + 2781 ], "description": [ - 2481 + 2781 ], "ends_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "needs_rebuild": [ - 2481 + 2781 ], "number": [ - 2481 + 2781 ], "player_season_stats_aggregate": [ - 3193 + 3493 ], "starts_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -84826,7 +89424,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -84835,16 +89433,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4024 + 4324 ], "description": [ 78 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "needs_rebuild": [ 3 @@ -84853,7 +89451,7 @@ export default { 38 ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -84885,7 +89483,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3519 + 3819 ], "ordering": [ 236 @@ -84896,16 +89494,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "description": [ 78 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "needs_rebuild": [ 3 @@ -84914,7 +89512,7 @@ export default { 38 ], "starts_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -84931,13 +89529,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3504 + 3804 ], "_set": [ - 3514 + 3814 ], "where": [ - 3502 + 3802 ], "__typename": [ 78 @@ -84975,10 +89573,10 @@ export default { 78 ], "game_server_nodes": [ - 1229, + 1528, { "distinct_on": [ - 1258, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -84988,19 +89586,19 @@ export default { 38 ], "order_by": [ - 1255, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1540 ] } ], "game_server_nodes_aggregate": [ - 1230, + 1529, { "distinct_on": [ - 1258, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -85010,11 +89608,11 @@ export default { 38 ], "order_by": [ - 1255, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1540 ] } ], @@ -85042,10 +89640,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3528 + 3828 ], "nodes": [ - 3526 + 3826 ], "__typename": [ 78 @@ -85053,13 +89651,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3529 + 3829 ], "count": [ 38, { "columns": [ - 3540, + 3840, "[server_regions_select_column!]" ], "distinct": [ @@ -85068,31 +89666,31 @@ export default { } ], "max": [ - 3533 + 3833 ], "min": [ - 3534 + 3834 ], "stddev": [ - 3542 + 3842 ], "stddev_pop": [ - 3543 + 3843 ], "stddev_samp": [ - 3544 + 3844 ], "sum": [ - 3547 + 3847 ], "var_pop": [ - 3550 + 3850 ], "var_samp": [ - 3551 + 3851 ], "variance": [ - 3552 + 3852 ], "__typename": [ 78 @@ -85111,13 +89709,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3530 + 3830 ], "_not": [ - 3530 + 3830 ], "_or": [ - 3530 + 3830 ], "available_server_count": [ 39 @@ -85126,10 +89724,10 @@ export default { 80 ], "game_server_nodes": [ - 1241 + 1540 ], "game_server_nodes_aggregate": [ - 1231 + 1530 ], "has_node": [ 4 @@ -85159,7 +89757,7 @@ export default { 78 ], "game_server_nodes": [ - 1238 + 1537 ], "is_lan": [ 3 @@ -85219,7 +89817,7 @@ export default { 38 ], "returning": [ - 3526 + 3826 ], "__typename": [ 78 @@ -85227,10 +89825,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3532 + 3832 ], "on_conflict": [ - 3537 + 3837 ], "__typename": [ 78 @@ -85238,13 +89836,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3531 + 3831 ], "update_columns": [ - 3548 + 3848 ], "where": [ - 3530 + 3830 ], "__typename": [ 78 @@ -85252,31 +89850,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2481 + 2781 ], "description": [ - 2481 + 2781 ], "game_server_nodes_aggregate": [ - 1236 + 1535 ], "has_node": [ - 2481 + 2781 ], "is_lan": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "steam_relay": [ - 2481 + 2781 ], "total_server_count": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -85343,7 +89941,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3546 + 3846 ], "ordering": [ 236 @@ -85383,10 +89981,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3541 + 3841 ], "where": [ - 3530 + 3830 ], "__typename": [ 78 @@ -85427,7 +90025,7 @@ export default { }, "servers": { "api_password": [ - 4462 + 4762 ], "boot_status": [ 78 @@ -85448,7 +90046,7 @@ export default { 78 ], "current_match": [ - 2296 + 2596 ], "enabled": [ 3 @@ -85457,7 +90055,7 @@ export default { 78 ], "game_server_node": [ - 1229 + 1528 ], "game_server_node_id": [ 78 @@ -85466,7 +90064,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "is_dedicated": [ 3 @@ -85475,10 +90073,10 @@ export default { 78 ], "matches": [ - 2296, + 2596, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -85488,19 +90086,19 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matches_aggregate": [ - 2297, + 2597, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -85510,11 +90108,11 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], @@ -85522,10 +90120,10 @@ export default { 38 ], "offline_at": [ - 4024 + 4324 ], "plugin_runtime": [ - 901 + 941 ], "plugin_version": [ 78 @@ -85543,10 +90141,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4762 ], "server_region": [ - 3526 + 3826 ], "steam_relay": [ 78 @@ -85555,10 +90153,10 @@ export default { 38 ], "type": [ - 982 + 1022 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -85566,10 +90164,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3559 + 3859 ], "nodes": [ - 3553 + 3853 ], "__typename": [ 78 @@ -85577,13 +90175,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3556 + 3856 ], "bool_or": [ - 3557 + 3857 ], "count": [ - 3558 + 3858 ], "__typename": [ 78 @@ -85591,13 +90189,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3578 + 3878 ], "distinct": [ 3 ], "filter": [ - 3564 + 3864 ], "predicate": [ 4 @@ -85608,13 +90206,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3579 + 3879 ], "distinct": [ 3 ], "filter": [ - 3564 + 3864 ], "predicate": [ 4 @@ -85625,13 +90223,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3577 + 3877 ], "distinct": [ 3 ], "filter": [ - 3564 + 3864 ], "predicate": [ 39 @@ -85642,13 +90240,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3562 + 3862 ], "count": [ 38, { "columns": [ - 3577, + 3877, "[servers_select_column!]" ], "distinct": [ @@ -85657,31 +90255,31 @@ export default { } ], "max": [ - 3568 + 3868 ], "min": [ - 3570 + 3870 ], "stddev": [ - 3581 + 3881 ], "stddev_pop": [ - 3583 + 3883 ], "stddev_samp": [ - 3585 + 3885 ], "sum": [ - 3589 + 3889 ], "var_pop": [ - 3593 + 3893 ], "var_samp": [ - 3595 + 3895 ], "variance": [ - 3597 + 3897 ], "__typename": [ 78 @@ -85689,37 +90287,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3563 + 3863 ], "count": [ - 2481 + 2781 ], "max": [ - 3569 + 3869 ], "min": [ - 3571 + 3871 ], "stddev": [ - 3582 + 3882 ], "stddev_pop": [ - 3584 + 3884 ], "stddev_samp": [ - 3586 + 3886 ], "sum": [ - 3590 + 3890 ], "var_pop": [ - 3594 + 3894 ], "var_samp": [ - 3596 + 3896 ], "variance": [ - 3598 + 3898 ], "__typename": [ 78 @@ -85727,10 +90325,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3567 + 3867 ], "on_conflict": [ - 3574 + 3874 ], "__typename": [ 78 @@ -85752,13 +90350,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -85766,16 +90364,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3564 + 3864 ], "_not": [ - 3564 + 3864 ], "_or": [ - 3564 + 3864 ], "api_password": [ - 4464 + 4764 ], "boot_status": [ 80 @@ -85796,7 +90394,7 @@ export default { 80 ], "current_match": [ - 2305 + 2605 ], "enabled": [ 4 @@ -85805,7 +90403,7 @@ export default { 80 ], "game_server_node": [ - 1241 + 1540 ], "game_server_node_id": [ 80 @@ -85814,7 +90412,7 @@ export default { 80 ], "id": [ - 4464 + 4764 ], "is_dedicated": [ 4 @@ -85823,19 +90421,19 @@ export default { 80 ], "matches": [ - 2305 + 2605 ], "matches_aggregate": [ - 2298 + 2598 ], "max_players": [ 39 ], "offline_at": [ - 4025 + 4325 ], "plugin_runtime": [ - 902 + 942 ], "plugin_version": [ 80 @@ -85853,10 +90451,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4464 + 4764 ], "server_region": [ - 3530 + 3830 ], "steam_relay": [ 80 @@ -85865,10 +90463,10 @@ export default { 39 ], "type": [ - 983 + 1023 ], "updated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -85891,7 +90489,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4462 + 4762 ], "boot_status": [ 78 @@ -85906,7 +90504,7 @@ export default { 3 ], "current_match": [ - 2314 + 2614 ], "enabled": [ 3 @@ -85915,7 +90513,7 @@ export default { 78 ], "game_server_node": [ - 1253 + 1552 ], "game_server_node_id": [ 78 @@ -85924,7 +90522,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "is_dedicated": [ 3 @@ -85933,16 +90531,16 @@ export default { 78 ], "matches": [ - 2302 + 2602 ], "max_players": [ 38 ], "offline_at": [ - 4024 + 4324 ], "plugin_runtime": [ - 901 + 941 ], "plugin_version": [ 78 @@ -85960,10 +90558,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4762 ], "server_region": [ - 3536 + 3836 ], "steam_relay": [ 78 @@ -85972,10 +90570,10 @@ export default { 38 ], "type": [ - 982 + 1022 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -85983,7 +90581,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4462 + 4762 ], "boot_status": [ 78 @@ -86010,7 +90608,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "label": [ 78 @@ -86019,7 +90617,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4324 ], "plugin_version": [ 78 @@ -86031,7 +90629,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4762 ], "steam_relay": [ 78 @@ -86040,7 +90638,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -86048,58 +90646,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2481 + 2781 ], "boot_status": [ - 2481 + 2781 ], "boot_status_detail": [ - 2481 + 2781 ], "connect_password": [ - 2481 + 2781 ], "game": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "host": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "max_players": [ - 2481 + 2781 ], "offline_at": [ - 2481 + 2781 ], "plugin_version": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "reserved_by_match_id": [ - 2481 + 2781 ], "steam_relay": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86107,7 +90705,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4462 + 4762 ], "boot_status": [ 78 @@ -86134,7 +90732,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "label": [ 78 @@ -86143,7 +90741,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4324 ], "plugin_version": [ 78 @@ -86155,7 +90753,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4762 ], "steam_relay": [ 78 @@ -86164,7 +90762,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -86172,58 +90770,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2481 + 2781 ], "boot_status": [ - 2481 + 2781 ], "boot_status_detail": [ - 2481 + 2781 ], "connect_password": [ - 2481 + 2781 ], "game": [ - 2481 + 2781 ], "game_server_node_id": [ - 2481 + 2781 ], "host": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "max_players": [ - 2481 + 2781 ], "offline_at": [ - 2481 + 2781 ], "plugin_version": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "reserved_by_match_id": [ - 2481 + 2781 ], "steam_relay": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86234,7 +90832,7 @@ export default { 38 ], "returning": [ - 3553 + 3853 ], "__typename": [ 78 @@ -86242,10 +90840,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3567 + 3867 ], "on_conflict": [ - 3574 + 3874 ], "__typename": [ 78 @@ -86253,13 +90851,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3565 + 3865 ], "update_columns": [ - 3591 + 3891 ], "where": [ - 3564 + 3864 ], "__typename": [ 78 @@ -86267,97 +90865,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2481 + 2781 ], "boot_status": [ - 2481 + 2781 ], "boot_status_detail": [ - 2481 + 2781 ], "connect_password": [ - 2481 + 2781 ], "connected": [ - 2481 + 2781 ], "connection_link": [ - 2481 + 2781 ], "connection_string": [ - 2481 + 2781 ], "current_match": [ - 2316 + 2616 ], "enabled": [ - 2481 + 2781 ], "game": [ - 2481 + 2781 ], "game_server_node": [ - 1255 + 1554 ], "game_server_node_id": [ - 2481 + 2781 ], "host": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "is_dedicated": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "matches_aggregate": [ - 2301 + 2601 ], "max_players": [ - 2481 + 2781 ], "offline_at": [ - 2481 + 2781 ], "plugin_runtime": [ - 2481 + 2781 ], "plugin_version": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "rcon_password": [ - 2481 + 2781 ], "rcon_status": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "reserved_by_match_id": [ - 2481 + 2781 ], "server_region": [ - 3538 + 3838 ], "steam_relay": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86365,7 +90963,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -86376,7 +90974,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4462 + 4762 ], "boot_status": [ 78 @@ -86403,7 +91001,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "is_dedicated": [ 3 @@ -86415,10 +91013,10 @@ export default { 38 ], "offline_at": [ - 4024 + 4324 ], "plugin_runtime": [ - 901 + 941 ], "plugin_version": [ 78 @@ -86436,7 +91034,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4762 ], "steam_relay": [ 78 @@ -86445,10 +91043,10 @@ export default { 38 ], "type": [ - 982 + 1022 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -86470,13 +91068,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86498,13 +91096,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86526,13 +91124,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86540,7 +91138,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3588 + 3888 ], "ordering": [ 236 @@ -86551,7 +91149,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4462 + 4762 ], "boot_status": [ 78 @@ -86578,7 +91176,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "is_dedicated": [ 3 @@ -86590,10 +91188,10 @@ export default { 38 ], "offline_at": [ - 4024 + 4324 ], "plugin_runtime": [ - 901 + 941 ], "plugin_version": [ 78 @@ -86611,7 +91209,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4762 ], "steam_relay": [ 78 @@ -86620,10 +91218,10 @@ export default { 38 ], "type": [ - 982 + 1022 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -86645,13 +91243,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86660,13 +91258,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3566 + 3866 ], "_set": [ - 3580 + 3880 ], "where": [ - 3564 + 3864 ], "__typename": [ 78 @@ -86688,13 +91286,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86716,13 +91314,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86744,13 +91342,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2481 + 2781 ], "port": [ - 2481 + 2781 ], "tv_port": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86769,10 +91367,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3601 + 3901 ], "nodes": [ - 3599 + 3899 ], "__typename": [ 78 @@ -86783,7 +91381,7 @@ export default { 38, { "columns": [ - 3611, + 3911, "[settings_select_column!]" ], "distinct": [ @@ -86792,10 +91390,10 @@ export default { } ], "max": [ - 3605 + 3905 ], "min": [ - 3606 + 3906 ], "__typename": [ 78 @@ -86803,13 +91401,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3602 + 3902 ], "_not": [ - 3602 + 3902 ], "_or": [ - 3602 + 3902 ], "name": [ 80 @@ -86860,7 +91458,7 @@ export default { 38 ], "returning": [ - 3599 + 3899 ], "__typename": [ 78 @@ -86868,13 +91466,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3603 + 3903 ], "update_columns": [ - 3615 + 3915 ], "where": [ - 3602 + 3902 ], "__typename": [ 78 @@ -86882,10 +91480,10 @@ export default { }, "settings_order_by": { "name": [ - 2481 + 2781 ], "value": [ - 2481 + 2781 ], "__typename": [ 78 @@ -86913,7 +91511,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3614 + 3914 ], "ordering": [ 236 @@ -86936,10 +91534,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3612 + 3912 ], "where": [ - 3602 + 3902 ], "__typename": [ 78 @@ -86948,31 +91546,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3617 + 3917 ], "_gt": [ - 3617 + 3917 ], "_gte": [ - 3617 + 3917 ], "_in": [ - 3617 + 3917 ], "_is_null": [ 3 ], "_lt": [ - 3617 + 3917 ], "_lte": [ - 3617 + 3917 ], "_neq": [ - 3617 + 3917 ], "_nin": [ - 3617 + 3917 ], "__typename": [ 78 @@ -86980,16 +91578,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "node": [ - 1229 + 1528 ], "node_id": [ 78 @@ -86998,10 +91596,10 @@ export default { 78 ], "steam_account": [ - 3643 + 3943 ], "steam_account_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87009,10 +91607,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3623 + 3923 ], "nodes": [ - 3619 + 3919 ], "__typename": [ 78 @@ -87020,7 +91618,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3622 + 3922 ], "__typename": [ 78 @@ -87028,13 +91626,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3637 + 3937 ], "distinct": [ 3 ], "filter": [ - 3626 + 3926 ], "predicate": [ 39 @@ -87048,7 +91646,7 @@ export default { 38, { "columns": [ - 3637, + 3937, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -87057,10 +91655,10 @@ export default { } ], "max": [ - 3629 + 3929 ], "min": [ - 3631 + 3931 ], "__typename": [ 78 @@ -87068,13 +91666,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2481 + 2781 ], "max": [ - 3630 + 3930 ], "min": [ - 3632 + 3932 ], "__typename": [ 78 @@ -87082,10 +91680,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3628 + 3928 ], "on_conflict": [ - 3634 + 3934 ], "__typename": [ 78 @@ -87093,25 +91691,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3626 + 3926 ], "_not": [ - 3626 + 3926 ], "_or": [ - 3626 + 3926 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "k8s_job_name": [ 80 ], "node": [ - 1241 + 1540 ], "node_id": [ 80 @@ -87120,10 +91718,10 @@ export default { 80 ], "steam_account": [ - 3647 + 3947 ], "steam_account_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -87132,16 +91730,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 ], "node": [ - 1253 + 1552 ], "node_id": [ 78 @@ -87150,10 +91748,10 @@ export default { 78 ], "steam_account": [ - 3654 + 3954 ], "steam_account_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87161,10 +91759,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 @@ -87176,7 +91774,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87184,22 +91782,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "node_id": [ - 2481 + 2781 ], "purpose": [ - 2481 + 2781 ], "steam_account_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -87207,10 +91805,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 @@ -87222,7 +91820,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87230,22 +91828,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "node_id": [ - 2481 + 2781 ], "purpose": [ - 2481 + 2781 ], "steam_account_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -87256,7 +91854,7 @@ export default { 38 ], "returning": [ - 3619 + 3919 ], "__typename": [ 78 @@ -87264,13 +91862,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3627 + 3927 ], "update_columns": [ - 3641 + 3941 ], "where": [ - 3626 + 3926 ], "__typename": [ 78 @@ -87278,28 +91876,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "k8s_job_name": [ - 2481 + 2781 ], "node": [ - 1255 + 1554 ], "node_id": [ - 2481 + 2781 ], "purpose": [ - 2481 + 2781 ], "steam_account": [ - 3656 + 3956 ], "steam_account_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -87307,7 +91905,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87316,10 +91914,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 @@ -87331,7 +91929,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87339,7 +91937,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3640 + 3940 ], "ordering": [ 236 @@ -87350,10 +91948,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "k8s_job_name": [ 78 @@ -87365,7 +91963,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87374,10 +91972,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3638 + 3938 ], "where": [ - 3626 + 3926 ], "__typename": [ 78 @@ -87385,10 +91983,10 @@ export default { }, "steam_accounts": { "claims": [ - 3619, + 3919, { "distinct_on": [ - 3637, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87398,19 +91996,19 @@ export default { 38 ], "order_by": [ - 3635, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3926 ] } ], "claims_aggregate": [ - 3620, + 3920, { "distinct_on": [ - 3637, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87420,25 +92018,25 @@ export default { 38 ], "order_by": [ - 3635, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3926 ] } ], "created_at": [ - 4024 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4762 ], "last_node": [ - 1229 + 1528 ], "last_node_id": [ 78 @@ -87456,7 +92054,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "username": [ 78 @@ -87467,10 +92065,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3645 + 3945 ], "nodes": [ - 3643 + 3943 ], "__typename": [ 78 @@ -87478,13 +92076,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3646 + 3946 ], "count": [ 38, { "columns": [ - 3658, + 3958, "[steam_accounts_select_column!]" ], "distinct": [ @@ -87493,31 +92091,31 @@ export default { } ], "max": [ - 3651 + 3951 ], "min": [ - 3652 + 3952 ], "stddev": [ - 3660 + 3960 ], "stddev_pop": [ - 3661 + 3961 ], "stddev_samp": [ - 3662 + 3962 ], "sum": [ - 3665 + 3965 ], "var_pop": [ - 3668 + 3968 ], "var_samp": [ - 3669 + 3969 ], "variance": [ - 3670 + 3970 ], "__typename": [ 78 @@ -87539,31 +92137,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3647 + 3947 ], "_not": [ - 3647 + 3947 ], "_or": [ - 3647 + 3947 ], "claims": [ - 3626 + 3926 ], "claims_aggregate": [ - 3621 + 3921 ], "created_at": [ - 4025 + 4325 ], "friend_capacity": [ 39 ], "id": [ - 4464 + 4764 ], "last_node": [ - 1241 + 1540 ], "last_node_id": [ 80 @@ -87581,7 +92179,7 @@ export default { 182 ], "updated_at": [ - 4025 + 4325 ], "username": [ 80 @@ -87607,19 +92205,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3625 + 3925 ], "created_at": [ - 4024 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4762 ], "last_node": [ - 1253 + 1552 ], "last_node_id": [ 78 @@ -87637,7 +92235,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "username": [ 78 @@ -87648,13 +92246,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4024 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4762 ], "last_node_id": [ 78 @@ -87672,7 +92270,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "username": [ 78 @@ -87683,13 +92281,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4024 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4762 ], "last_node_id": [ 78 @@ -87707,7 +92305,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "username": [ 78 @@ -87721,7 +92319,7 @@ export default { 38 ], "returning": [ - 3643 + 3943 ], "__typename": [ 78 @@ -87729,10 +92327,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3650 + 3950 ], "on_conflict": [ - 3655 + 3955 ], "__typename": [ 78 @@ -87740,13 +92338,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3648 + 3948 ], "update_columns": [ - 3666 + 3966 ], "where": [ - 3647 + 3947 ], "__typename": [ 78 @@ -87754,40 +92352,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3624 + 3924 ], "created_at": [ - 2481 + 2781 ], "friend_capacity": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "last_node": [ - 1255 + 1554 ], "last_node_id": [ - 2481 + 2781 ], "password": [ - 2481 + 2781 ], "role": [ - 2481 + 2781 ], "steam_level": [ - 2481 + 2781 ], "steamid64": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "username": [ - 2481 + 2781 ], "__typename": [ 78 @@ -87795,7 +92393,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -87804,13 +92402,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4024 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4762 ], "last_node_id": [ 78 @@ -87828,7 +92426,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "username": [ 78 @@ -87881,7 +92479,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3664 + 3964 ], "ordering": [ 236 @@ -87892,13 +92490,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4762 ], "last_node_id": [ 78 @@ -87916,7 +92514,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4324 ], "username": [ 78 @@ -87942,13 +92540,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3649 + 3949 ], "_set": [ - 3659 + 3959 ], "where": [ - 3647 + 3947 ], "__typename": [ 78 @@ -87998,7 +92596,7 @@ export default { }, "system_alerts": { "created_at": [ - 4024 + 4324 ], "created_by": [ 180 @@ -88007,10 +92605,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "is_active": [ 3 @@ -88022,10 +92620,10 @@ export default { 78 ], "type": [ - 1022 + 1062 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -88033,10 +92631,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3673 + 3973 ], "nodes": [ - 3671 + 3971 ], "__typename": [ 78 @@ -88044,13 +92642,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3674 + 3974 ], "count": [ 38, { "columns": [ - 3685, + 3985, "[system_alerts_select_column!]" ], "distinct": [ @@ -88059,31 +92657,31 @@ export default { } ], "max": [ - 3679 + 3979 ], "min": [ - 3680 + 3980 ], "stddev": [ - 3687 + 3987 ], "stddev_pop": [ - 3688 + 3988 ], "stddev_samp": [ - 3689 + 3989 ], "sum": [ - 3692 + 3992 ], "var_pop": [ - 3695 + 3995 ], "var_samp": [ - 3696 + 3996 ], "variance": [ - 3697 + 3997 ], "__typename": [ 78 @@ -88099,16 +92697,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3675 + 3975 ], "_not": [ - 3675 + 3975 ], "_or": [ - 3675 + 3975 ], "created_at": [ - 4025 + 4325 ], "created_by": [ 182 @@ -88117,10 +92715,10 @@ export default { 4 ], "expires_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "is_active": [ 4 @@ -88132,10 +92730,10 @@ export default { 80 ], "type": [ - 1023 + 1063 ], "updated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -88152,7 +92750,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4024 + 4324 ], "created_by": [ 180 @@ -88161,10 +92759,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "is_active": [ 3 @@ -88176,10 +92774,10 @@ export default { 78 ], "type": [ - 1022 + 1062 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -88187,16 +92785,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4024 + 4324 ], "created_by": [ 180 ], "expires_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "message": [ 78 @@ -88205,7 +92803,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -88213,16 +92811,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4024 + 4324 ], "created_by": [ 180 ], "expires_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "message": [ 78 @@ -88231,7 +92829,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -88242,7 +92840,7 @@ export default { 38 ], "returning": [ - 3671 + 3971 ], "__typename": [ 78 @@ -88250,13 +92848,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3676 + 3976 ], "update_columns": [ - 3693 + 3993 ], "where": [ - 3675 + 3975 ], "__typename": [ 78 @@ -88264,34 +92862,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2481 + 2781 ], "created_by": [ - 2481 + 2781 ], "dismissible": [ - 2481 + 2781 ], "expires_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "is_active": [ - 2481 + 2781 ], "message": [ - 2481 + 2781 ], "title": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88299,7 +92897,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88308,7 +92906,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4024 + 4324 ], "created_by": [ 180 @@ -88317,10 +92915,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "is_active": [ 3 @@ -88332,10 +92930,10 @@ export default { 78 ], "type": [ - 1022 + 1062 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -88367,7 +92965,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3691 + 3991 ], "ordering": [ 236 @@ -88378,7 +92976,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "created_by": [ 180 @@ -88387,10 +92985,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "is_active": [ 3 @@ -88402,10 +93000,10 @@ export default { 78 ], "type": [ - 1022 + 1062 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -88422,13 +93020,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3677 + 3977 ], "_set": [ - 3686 + 3986 ], "where": [ - 3675 + 3975 ], "__typename": [ 78 @@ -88460,28 +93058,28 @@ export default { }, "team_invites": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by": [ - 3439 + 3739 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3439 + 3739 ], "steam_id": [ 180 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88489,10 +93087,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 3702 + 4002 ], "nodes": [ - 3698 + 3998 ], "__typename": [ 78 @@ -88500,7 +93098,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 3701 + 4001 ], "__typename": [ 78 @@ -88508,13 +93106,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3719 + 4019 ], "distinct": [ 3 ], "filter": [ - 3707 + 4007 ], "predicate": [ 39 @@ -88525,13 +93123,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 3705 + 4005 ], "count": [ 38, { "columns": [ - 3719, + 4019, "[team_invites_select_column!]" ], "distinct": [ @@ -88540,31 +93138,31 @@ export default { } ], "max": [ - 3711 + 4011 ], "min": [ - 3713 + 4013 ], "stddev": [ - 3721 + 4021 ], "stddev_pop": [ - 3723 + 4023 ], "stddev_samp": [ - 3725 + 4025 ], "sum": [ - 3729 + 4029 ], "var_pop": [ - 3733 + 4033 ], "var_samp": [ - 3735 + 4035 ], "variance": [ - 3737 + 4037 ], "__typename": [ 78 @@ -88572,37 +93170,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 3706 + 4006 ], "count": [ - 2481 + 2781 ], "max": [ - 3712 + 4012 ], "min": [ - 3714 + 4014 ], "stddev": [ - 3722 + 4022 ], "stddev_pop": [ - 3724 + 4024 ], "stddev_samp": [ - 3726 + 4026 ], "sum": [ - 3730 + 4030 ], "var_pop": [ - 3734 + 4034 ], "var_samp": [ - 3736 + 4036 ], "variance": [ - 3738 + 4038 ], "__typename": [ 78 @@ -88610,10 +93208,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 3710 + 4010 ], "on_conflict": [ - 3716 + 4016 ], "__typename": [ 78 @@ -88632,10 +93230,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88643,37 +93241,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 3707 + 4007 ], "_not": [ - 3707 + 4007 ], "_or": [ - 3707 + 4007 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "invited_by": [ - 3443 + 3743 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3443 + 3743 ], "steam_id": [ 182 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -88693,28 +93291,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by": [ - 3450 + 3750 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3450 + 3750 ], "steam_id": [ 180 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88722,10 +93320,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -88734,7 +93332,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88742,19 +93340,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88762,10 +93360,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -88774,7 +93372,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88782,19 +93380,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88805,7 +93403,7 @@ export default { 38 ], "returning": [ - 3698 + 3998 ], "__typename": [ 78 @@ -88813,13 +93411,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 3708 + 4008 ], "update_columns": [ - 3731 + 4031 ], "where": [ - 3707 + 4007 ], "__typename": [ 78 @@ -88827,28 +93425,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invited_by": [ - 3452 + 3752 ], "invited_by_player_steam_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "steam_id": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88856,7 +93454,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88865,10 +93463,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -88877,7 +93475,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88896,10 +93494,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88918,10 +93516,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88940,10 +93538,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -88951,7 +93549,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 3728 + 4028 ], "ordering": [ 236 @@ -88962,10 +93560,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -88974,7 +93572,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -88993,10 +93591,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89005,13 +93603,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3709 + 4009 ], "_set": [ - 3720 + 4020 ], "where": [ - 3707 + 4007 ], "__typename": [ 78 @@ -89030,10 +93628,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89052,10 +93650,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89074,10 +93672,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89088,25 +93686,25 @@ export default { 3 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1103 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89114,10 +93712,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 3745 + 4045 ], "nodes": [ - 3739 + 4039 ], "__typename": [ 78 @@ -89125,13 +93723,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3742 + 4042 ], "bool_or": [ - 3743 + 4043 ], "count": [ - 3744 + 4044 ], "__typename": [ 78 @@ -89139,13 +93737,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3763 + 4063 ], "distinct": [ 3 ], "filter": [ - 3750 + 4050 ], "predicate": [ 4 @@ -89156,13 +93754,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3764 + 4064 ], "distinct": [ 3 ], "filter": [ - 3750 + 4050 ], "predicate": [ 4 @@ -89173,13 +93771,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3762 + 4062 ], "distinct": [ 3 ], "filter": [ - 3750 + 4050 ], "predicate": [ 39 @@ -89190,13 +93788,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 3748 + 4048 ], "count": [ 38, { "columns": [ - 3762, + 4062, "[team_roster_select_column!]" ], "distinct": [ @@ -89205,31 +93803,31 @@ export default { } ], "max": [ - 3754 + 4054 ], "min": [ - 3756 + 4056 ], "stddev": [ - 3766 + 4066 ], "stddev_pop": [ - 3768 + 4068 ], "stddev_samp": [ - 3770 + 4070 ], "sum": [ - 3774 + 4074 ], "var_pop": [ - 3778 + 4078 ], "var_samp": [ - 3780 + 4080 ], "variance": [ - 3782 + 4082 ], "__typename": [ 78 @@ -89237,37 +93835,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 3749 + 4049 ], "count": [ - 2481 + 2781 ], "max": [ - 3755 + 4055 ], "min": [ - 3757 + 4057 ], "stddev": [ - 3767 + 4067 ], "stddev_pop": [ - 3769 + 4069 ], "stddev_samp": [ - 3771 + 4071 ], "sum": [ - 3775 + 4075 ], "var_pop": [ - 3779 + 4079 ], "var_samp": [ - 3781 + 4081 ], "variance": [ - 3783 + 4083 ], "__typename": [ 78 @@ -89275,10 +93873,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 3753 + 4053 ], "on_conflict": [ - 3759 + 4059 ], "__typename": [ 78 @@ -89294,7 +93892,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89302,37 +93900,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 3750 + 4050 ], "_not": [ - 3750 + 4050 ], "_or": [ - 3750 + 4050 ], "coach": [ 4 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 ], "role": [ - 1043 + 1083 ], "roster_image_url": [ 80 ], "status": [ - 1064 + 1104 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -89352,25 +93950,25 @@ export default { 3 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1103 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89384,7 +93982,7 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89392,13 +93990,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2481 + 2781 ], "roster_image_url": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89412,7 +94010,7 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89420,13 +94018,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2481 + 2781 ], "roster_image_url": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89437,7 +94035,7 @@ export default { 38 ], "returning": [ - 3739 + 4039 ], "__typename": [ 78 @@ -89445,13 +94043,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 3751 + 4051 ], "update_columns": [ - 3776 + 4076 ], "where": [ - 3750 + 4050 ], "__typename": [ 78 @@ -89459,28 +94057,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "role": [ - 2481 + 2781 ], "roster_image_url": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89491,7 +94089,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89508,16 +94106,16 @@ export default { 180 ], "role": [ - 1042 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1103 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89533,7 +94131,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89549,7 +94147,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89565,7 +94163,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89573,7 +94171,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 3773 + 4073 ], "ordering": [ 236 @@ -89590,16 +94188,16 @@ export default { 180 ], "role": [ - 1042 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1103 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89615,7 +94213,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89624,13 +94222,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3752 + 4052 ], "_set": [ - 3765 + 4065 ], "where": [ - 3750 + 4050 ], "__typename": [ 78 @@ -89646,7 +94244,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89662,7 +94260,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89678,7 +94276,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89686,7 +94284,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -89698,19 +94296,19 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "regions": [ 78 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89718,10 +94316,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3786 + 4086 ], "nodes": [ - 3784 + 4084 ], "__typename": [ 78 @@ -89729,13 +94327,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3787 + 4087 ], "count": [ 38, { "columns": [ - 3798, + 4098, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -89744,31 +94342,31 @@ export default { } ], "max": [ - 3792 + 4092 ], "min": [ - 3793 + 4093 ], "stddev": [ - 3800 + 4100 ], "stddev_pop": [ - 3801 + 4101 ], "stddev_samp": [ - 3802 + 4102 ], "sum": [ - 3805 + 4105 ], "var_pop": [ - 3808 + 4108 ], "var_samp": [ - 3809 + 4109 ], "variance": [ - 3810 + 4110 ], "__typename": [ 78 @@ -89787,16 +94385,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 3788 + 4088 ], "_not": [ - 3788 + 4088 ], "_or": [ - 3788 + 4088 ], "created_at": [ - 4025 + 4325 ], "elo_max": [ 39 @@ -89808,19 +94406,19 @@ export default { 4 ], "id": [ - 4464 + 4764 ], "last_notified_at": [ - 4025 + 4325 ], "regions": [ 79 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -89840,7 +94438,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -89852,19 +94450,19 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "regions": [ 78 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89872,7 +94470,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -89881,16 +94479,16 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "regions": [ 78 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89898,7 +94496,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -89907,16 +94505,16 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "regions": [ 78 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89927,7 +94525,7 @@ export default { 38 ], "returning": [ - 3784 + 4084 ], "__typename": [ 78 @@ -89935,13 +94533,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3789 + 4089 ], "update_columns": [ - 3806 + 4106 ], "where": [ - 3788 + 4088 ], "__typename": [ 78 @@ -89949,31 +94547,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2481 + 2781 ], "elo_max": [ - 2481 + 2781 ], "elo_min": [ - 2481 + 2781 ], "enabled": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "last_notified_at": [ - 2481 + 2781 ], "regions": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -89981,7 +94579,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -89990,7 +94588,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -90002,16 +94600,16 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "regions": [ 78 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90052,7 +94650,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3804 + 4104 ], "ordering": [ 236 @@ -90063,7 +94661,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -90075,16 +94673,16 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "regions": [ 78 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90104,13 +94702,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3790 + 4090 ], "_set": [ - 3799 + 4099 ], "where": [ - 3788 + 4088 ], "__typename": [ 78 @@ -90151,25 +94749,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4024 + 4324 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4324 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90177,10 +94775,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 3817 + 4117 ], "nodes": [ - 3811 + 4111 ], "__typename": [ 78 @@ -90188,13 +94786,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3814 + 4114 ], "bool_or": [ - 3815 + 4115 ], "count": [ - 3816 + 4116 ], "__typename": [ 78 @@ -90202,13 +94800,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 3832 + 4132 ], "distinct": [ 3 ], "filter": [ - 3820 + 4120 ], "predicate": [ 4 @@ -90219,13 +94817,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 3833 + 4133 ], "distinct": [ 3 ], "filter": [ - 3820 + 4120 ], "predicate": [ 4 @@ -90236,13 +94834,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 3831 + 4131 ], "distinct": [ 3 ], "filter": [ - 3820 + 4120 ], "predicate": [ 39 @@ -90256,7 +94854,7 @@ export default { 38, { "columns": [ - 3831, + 4131, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -90265,10 +94863,10 @@ export default { } ], "max": [ - 3823 + 4123 ], "min": [ - 3825 + 4125 ], "__typename": [ 78 @@ -90276,13 +94874,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2481 + 2781 ], "max": [ - 3824 + 4124 ], "min": [ - 3826 + 4126 ], "__typename": [ 78 @@ -90290,10 +94888,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 3822 + 4122 ], "on_conflict": [ - 3828 + 4128 ], "__typename": [ 78 @@ -90301,34 +94899,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 3820 + 4120 ], "_not": [ - 3820 + 4120 ], "_or": [ - 3820 + 4120 ], "created_at": [ - 4025 + 4325 ], "ends_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4025 + 4325 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -90337,25 +94935,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4024 + 4324 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4324 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90363,19 +94961,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4024 + 4324 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "starts_at": [ - 4024 + 4324 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90383,19 +94981,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2481 + 2781 ], "ends_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "starts_at": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -90403,19 +95001,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4024 + 4324 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "starts_at": [ - 4024 + 4324 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90423,19 +95021,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2481 + 2781 ], "ends_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "starts_at": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -90446,7 +95044,7 @@ export default { 38 ], "returning": [ - 3811 + 4111 ], "__typename": [ 78 @@ -90454,13 +95052,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 3821 + 4121 ], "update_columns": [ - 3837 + 4137 ], "where": [ - 3820 + 4120 ], "__typename": [ 78 @@ -90468,25 +95066,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2481 + 2781 ], "ends_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "recurring_weekly": [ - 2481 + 2781 ], "starts_at": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -90494,7 +95092,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90505,22 +95103,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": [ - 4024 + 4324 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4324 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90528,7 +95126,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 3836 + 4136 ], "ordering": [ 236 @@ -90539,22 +95137,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "ends_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4324 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90563,10 +95161,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 3834 + 4134 ], "where": [ - 3820 + 4120 ], "__typename": [ 78 @@ -90574,31 +95172,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "proposed_by": [ - 3439 + 3739 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3981 + 4281 ], "proposed_by_team_id": [ - 4462 + 4762 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "request": [ - 3880 + 4180 ], "request_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90606,10 +95204,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 3843 + 4143 ], "nodes": [ - 3839 + 4139 ], "__typename": [ 78 @@ -90617,7 +95215,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 3842 + 4142 ], "__typename": [ 78 @@ -90625,13 +95223,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 3860 + 4160 ], "distinct": [ 3 ], "filter": [ - 3848 + 4148 ], "predicate": [ 39 @@ -90642,13 +95240,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 3846 + 4146 ], "count": [ 38, { "columns": [ - 3860, + 4160, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -90657,31 +95255,31 @@ export default { } ], "max": [ - 3852 + 4152 ], "min": [ - 3854 + 4154 ], "stddev": [ - 3862 + 4162 ], "stddev_pop": [ - 3864 + 4164 ], "stddev_samp": [ - 3866 + 4166 ], "sum": [ - 3870 + 4170 ], "var_pop": [ - 3874 + 4174 ], "var_samp": [ - 3876 + 4176 ], "variance": [ - 3878 + 4178 ], "__typename": [ 78 @@ -90689,37 +95287,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 3847 + 4147 ], "count": [ - 2481 + 2781 ], "max": [ - 3853 + 4153 ], "min": [ - 3855 + 4155 ], "stddev": [ - 3863 + 4163 ], "stddev_pop": [ - 3865 + 4165 ], "stddev_samp": [ - 3867 + 4167 ], "sum": [ - 3871 + 4171 ], "var_pop": [ - 3875 + 4175 ], "var_samp": [ - 3877 + 4177 ], "variance": [ - 3879 + 4179 ], "__typename": [ 78 @@ -90727,10 +95325,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 3851 + 4151 ], "on_conflict": [ - 3857 + 4157 ], "__typename": [ 78 @@ -90746,7 +95344,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -90754,40 +95352,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 3848 + 4148 ], "_not": [ - 3848 + 4148 ], "_or": [ - 3848 + 4148 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "proposed_by": [ - 3443 + 3743 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 3990 + 4290 ], "proposed_by_team_id": [ - 4464 + 4764 ], "proposed_scheduled_at": [ - 4025 + 4325 ], "request": [ - 3891 + 4191 ], "request_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -90804,31 +95402,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "proposed_by": [ - 3450 + 3750 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3999 + 4299 ], "proposed_by_team_id": [ - 4462 + 4762 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "request": [ - 3900 + 4200 ], "request_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90836,22 +95434,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4762 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "request_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90859,22 +95457,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "proposed_by_steam_id": [ - 2481 + 2781 ], "proposed_by_team_id": [ - 2481 + 2781 ], "proposed_scheduled_at": [ - 2481 + 2781 ], "request_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -90882,22 +95480,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4762 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "request_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90905,22 +95503,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "proposed_by_steam_id": [ - 2481 + 2781 ], "proposed_by_team_id": [ - 2481 + 2781 ], "proposed_scheduled_at": [ - 2481 + 2781 ], "request_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -90931,7 +95529,7 @@ export default { 38 ], "returning": [ - 3839 + 4139 ], "__typename": [ 78 @@ -90939,13 +95537,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 3849 + 4149 ], "update_columns": [ - 3872 + 4172 ], "where": [ - 3848 + 4148 ], "__typename": [ 78 @@ -90953,31 +95551,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "proposed_by": [ - 3452 + 3752 ], "proposed_by_steam_id": [ - 2481 + 2781 ], "proposed_by_team": [ - 4001 + 4301 ], "proposed_by_team_id": [ - 2481 + 2781 ], "proposed_scheduled_at": [ - 2481 + 2781 ], "request": [ - 3902 + 4202 ], "request_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -90985,7 +95583,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -90994,22 +95592,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4762 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "request_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -91025,7 +95623,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91041,7 +95639,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91057,7 +95655,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91065,7 +95663,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 3869 + 4169 ], "ordering": [ 236 @@ -91076,22 +95674,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4762 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "request_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -91107,7 +95705,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91116,13 +95714,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 3850 + 4150 ], "_set": [ - 3861 + 4161 ], "where": [ - 3848 + 4148 ], "__typename": [ 78 @@ -91138,7 +95736,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91154,7 +95752,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91170,7 +95768,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91181,55 +95779,55 @@ export default { 3 ], "awaiting_team": [ - 3981 + 4281 ], "awaiting_team_id": [ - 4462 + 4762 ], "canceled_by_team_id": [ - 4462 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4324 ], "expires_at": [ - 4024 + 4324 ], "from_team": [ - 3981 + 4281 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_options": [ - 2176 + 2476 ], "match_options_id": [ - 4462 + 4762 ], "match_outcome": [ 78 ], "proposals": [ - 3839, + 4139, { "distinct_on": [ - 3860, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -91239,19 +95837,19 @@ export default { 38 ], "order_by": [ - 3858, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4148 ] } ], "proposals_aggregate": [ - 3840, + 4140, { "distinct_on": [ - 3860, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -91261,40 +95859,40 @@ export default { 38 ], "order_by": [ - 3858, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4148 ] } ], "proposed_scheduled_at": [ - 4024 + 4324 ], "region": [ 78 ], "requested_by": [ - 3439 + 3739 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4024 + 4324 ], "status": [ - 962 + 1002 ], "to_team": [ - 3981 + 4281 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -91302,10 +95900,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 3886 + 4186 ], "nodes": [ - 3880 + 4180 ], "__typename": [ 78 @@ -91313,13 +95911,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 3883 + 4183 ], "bool_or": [ - 3884 + 4184 ], "count": [ - 3885 + 4185 ], "__typename": [ 78 @@ -91327,13 +95925,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 3905 + 4205 ], "distinct": [ 3 ], "filter": [ - 3891 + 4191 ], "predicate": [ 4 @@ -91344,13 +95942,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 3906 + 4206 ], "distinct": [ 3 ], "filter": [ - 3891 + 4191 ], "predicate": [ 4 @@ -91361,13 +95959,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 3904 + 4204 ], "distinct": [ 3 ], "filter": [ - 3891 + 4191 ], "predicate": [ 39 @@ -91378,13 +95976,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 3889 + 4189 ], "count": [ 38, { "columns": [ - 3904, + 4204, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -91393,31 +95991,31 @@ export default { } ], "max": [ - 3895 + 4195 ], "min": [ - 3897 + 4197 ], "stddev": [ - 3908 + 4208 ], "stddev_pop": [ - 3910 + 4210 ], "stddev_samp": [ - 3912 + 4212 ], "sum": [ - 3916 + 4216 ], "var_pop": [ - 3920 + 4220 ], "var_samp": [ - 3922 + 4222 ], "variance": [ - 3924 + 4224 ], "__typename": [ 78 @@ -91425,37 +96023,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 3890 + 4190 ], "count": [ - 2481 + 2781 ], "max": [ - 3896 + 4196 ], "min": [ - 3898 + 4198 ], "stddev": [ - 3909 + 4209 ], "stddev_pop": [ - 3911 + 4211 ], "stddev_samp": [ - 3913 + 4213 ], "sum": [ - 3917 + 4217 ], "var_pop": [ - 3921 + 4221 ], "var_samp": [ - 3923 + 4223 ], "variance": [ - 3925 + 4225 ], "__typename": [ 78 @@ -91463,10 +96061,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 3894 + 4194 ], "on_conflict": [ - 3901 + 4201 ], "__typename": [ 78 @@ -91482,7 +96080,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91490,94 +96088,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 3891 + 4191 ], "_not": [ - 3891 + 4191 ], "_or": [ - 3891 + 4191 ], "auto_generated": [ 4 ], "awaiting_team": [ - 3990 + 4290 ], "awaiting_team_id": [ - 4464 + 4764 ], "canceled_by_team_id": [ - 4464 + 4764 ], "canceled_late": [ 4 ], "created_at": [ - 4025 + 4325 ], "expires_at": [ - 4025 + 4325 ], "from_team": [ - 3990 + 4290 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4464 + 4764 ], "id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_options": [ - 2180 + 2480 ], "match_options_id": [ - 4464 + 4764 ], "match_outcome": [ 80 ], "proposals": [ - 3848 + 4148 ], "proposals_aggregate": [ - 3841 + 4141 ], "proposed_scheduled_at": [ - 4025 + 4325 ], "region": [ 80 ], "requested_by": [ - 3443 + 3743 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4025 + 4325 ], "status": [ - 963 + 1003 ], "to_team": [ - 3990 + 4290 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -91597,79 +96195,79 @@ export default { 3 ], "awaiting_team": [ - 3999 + 4299 ], "awaiting_team_id": [ - 4462 + 4762 ], "canceled_by_team_id": [ - 4462 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4324 ], "expires_at": [ - 4024 + 4324 ], "from_team": [ - 3999 + 4299 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_options": [ - 2187 + 2487 ], "match_options_id": [ - 4462 + 4762 ], "match_outcome": [ 78 ], "proposals": [ - 3845 + 4145 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "region": [ 78 ], "requested_by": [ - 3450 + 3750 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4024 + 4324 ], "status": [ - 962 + 1002 ], "to_team": [ - 3999 + 4299 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -91677,34 +96275,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4462 + 4762 ], "canceled_by_team_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "expires_at": [ - 4024 + 4324 ], "from_team_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "region": [ 78 @@ -91713,10 +96311,10 @@ export default { 180 ], "responded_at": [ - 4024 + 4324 ], "to_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -91724,46 +96322,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2481 + 2781 ], "canceled_by_team_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "expires_at": [ - 2481 + 2781 ], "from_team_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "match_outcome": [ - 2481 + 2781 ], "proposed_scheduled_at": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "requested_by_steam_id": [ - 2481 + 2781 ], "responded_at": [ - 2481 + 2781 ], "to_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91771,34 +96369,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4462 + 4762 ], "canceled_by_team_id": [ - 4462 + 4762 ], "created_at": [ - 4024 + 4324 ], "expires_at": [ - 4024 + 4324 ], "from_team_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "region": [ 78 @@ -91807,10 +96405,10 @@ export default { 180 ], "responded_at": [ - 4024 + 4324 ], "to_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -91818,46 +96416,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2481 + 2781 ], "canceled_by_team_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "expires_at": [ - 2481 + 2781 ], "from_team_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "match_outcome": [ - 2481 + 2781 ], "proposed_scheduled_at": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "requested_by_steam_id": [ - 2481 + 2781 ], "responded_at": [ - 2481 + 2781 ], "to_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91868,7 +96466,7 @@ export default { 38 ], "returning": [ - 3880 + 4180 ], "__typename": [ 78 @@ -91876,10 +96474,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 3894 + 4194 ], "on_conflict": [ - 3901 + 4201 ], "__typename": [ 78 @@ -91887,13 +96485,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 3892 + 4192 ], "update_columns": [ - 3918 + 4218 ], "where": [ - 3891 + 4191 ], "__typename": [ 78 @@ -91901,82 +96499,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2481 + 2781 ], "awaiting_team": [ - 4001 + 4301 ], "awaiting_team_id": [ - 2481 + 2781 ], "canceled_by_team_id": [ - 2481 + 2781 ], "canceled_late": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "expires_at": [ - 2481 + 2781 ], "from_team": [ - 4001 + 4301 ], "from_team_checked_in": [ - 2481 + 2781 ], "from_team_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_options": [ - 2189 + 2489 ], "match_options_id": [ - 2481 + 2781 ], "match_outcome": [ - 2481 + 2781 ], "proposals_aggregate": [ - 3844 + 4144 ], "proposed_scheduled_at": [ - 2481 + 2781 ], "region": [ - 2481 + 2781 ], "requested_by": [ - 3452 + 3752 ], "requested_by_steam_id": [ - 2481 + 2781 ], "responded_at": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "to_team": [ - 4001 + 4301 ], "to_team_checked_in": [ - 2481 + 2781 ], "to_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -91984,7 +96582,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -91998,40 +96596,40 @@ export default { 3 ], "awaiting_team_id": [ - 4462 + 4762 ], "canceled_by_team_id": [ - 4462 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4324 ], "expires_at": [ - 4024 + 4324 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "region": [ 78 @@ -92040,16 +96638,16 @@ export default { 180 ], "responded_at": [ - 4024 + 4324 ], "status": [ - 962 + 1002 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -92065,7 +96663,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92081,7 +96679,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92097,7 +96695,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92105,7 +96703,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 3915 + 4215 ], "ordering": [ 236 @@ -92119,40 +96717,40 @@ export default { 3 ], "awaiting_team_id": [ - 4462 + 4762 ], "canceled_by_team_id": [ - 4462 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4324 ], "expires_at": [ - 4024 + 4324 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4762 ], "id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4324 ], "region": [ 78 @@ -92161,16 +96759,16 @@ export default { 180 ], "responded_at": [ - 4024 + 4324 ], "status": [ - 962 + 1002 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -92186,7 +96784,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92195,13 +96793,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 3893 + 4193 ], "_set": [ - 3907 + 4207 ], "where": [ - 3891 + 4191 ], "__typename": [ 78 @@ -92217,7 +96815,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92233,7 +96831,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92249,7 +96847,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92260,7 +96858,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -92272,10 +96870,10 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "map_ids": [ - 4462 + 4762 ], "notes": [ 78 @@ -92284,13 +96882,13 @@ export default { 78 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -92298,10 +96896,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 3928 + 4228 ], "nodes": [ - 3926 + 4226 ], "__typename": [ 78 @@ -92309,13 +96907,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 3929 + 4229 ], "count": [ 38, { "columns": [ - 3941, + 4241, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -92324,31 +96922,31 @@ export default { } ], "max": [ - 3934 + 4234 ], "min": [ - 3935 + 4235 ], "stddev": [ - 3943 + 4243 ], "stddev_pop": [ - 3944 + 4244 ], "stddev_samp": [ - 3945 + 4245 ], "sum": [ - 3948 + 4248 ], "var_pop": [ - 3951 + 4251 ], "var_samp": [ - 3952 + 4252 ], "variance": [ - 3953 + 4253 ], "__typename": [ 78 @@ -92367,19 +96965,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 3930 + 4230 ], "_not": [ - 3930 + 4230 ], "_or": [ - 3930 + 4230 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4025 + 4325 ], "elo_max": [ 39 @@ -92391,10 +96989,10 @@ export default { 4 ], "id": [ - 4464 + 4764 ], "map_ids": [ - 4463 + 4763 ], "notes": [ 80 @@ -92403,13 +97001,13 @@ export default { 79 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "updated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -92432,7 +97030,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -92444,10 +97042,10 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "map_ids": [ - 4462 + 4762 ], "notes": [ 78 @@ -92456,13 +97054,13 @@ export default { 78 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -92470,7 +97068,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -92479,10 +97077,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "map_ids": [ - 4462 + 4762 ], "notes": [ 78 @@ -92491,10 +97089,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -92502,7 +97100,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -92511,10 +97109,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "map_ids": [ - 4462 + 4762 ], "notes": [ 78 @@ -92523,10 +97121,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -92537,7 +97135,7 @@ export default { 38 ], "returning": [ - 3926 + 4226 ], "__typename": [ 78 @@ -92545,10 +97143,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 3933 + 4233 ], "on_conflict": [ - 3938 + 4238 ], "__typename": [ 78 @@ -92556,13 +97154,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 3931 + 4231 ], "update_columns": [ - 3949 + 4249 ], "where": [ - 3930 + 4230 ], "__typename": [ 78 @@ -92570,40 +97168,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "elo_max": [ - 2481 + 2781 ], "elo_min": [ - 2481 + 2781 ], "enabled": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "map_ids": [ - 2481 + 2781 ], "notes": [ - 2481 + 2781 ], "regions": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -92611,7 +97209,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -92623,7 +97221,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -92635,10 +97233,10 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "map_ids": [ - 4462 + 4762 ], "notes": [ 78 @@ -92647,10 +97245,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -92691,7 +97289,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 3947 + 4247 ], "ordering": [ 236 @@ -92705,7 +97303,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "elo_max": [ 38 @@ -92717,10 +97315,10 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "map_ids": [ - 4462 + 4762 ], "notes": [ 78 @@ -92729,10 +97327,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -92752,13 +97350,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 3932 + 4232 ], "_set": [ - 3942 + 4242 ], "where": [ - 3930 + 4230 ], "__typename": [ 78 @@ -92799,16 +97397,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4024 + 4324 ], "group_hash": [ 78 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "member_steam_ids": [ 180 @@ -92825,10 +97423,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 3956 + 4256 ], "nodes": [ - 3954 + 4254 ], "__typename": [ 78 @@ -92836,13 +97434,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 3957 + 4257 ], "count": [ 38, { "columns": [ - 3968, + 4268, "[team_suggestions_select_column!]" ], "distinct": [ @@ -92851,31 +97449,31 @@ export default { } ], "max": [ - 3962 + 4262 ], "min": [ - 3963 + 4263 ], "stddev": [ - 3970 + 4270 ], "stddev_pop": [ - 3971 + 4271 ], "stddev_samp": [ - 3972 + 4272 ], "sum": [ - 3975 + 4275 ], "var_pop": [ - 3978 + 4278 ], "var_samp": [ - 3979 + 4279 ], "variance": [ - 3980 + 4280 ], "__typename": [ 78 @@ -92891,25 +97489,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 3958 + 4258 ], "_not": [ - 3958 + 4258 ], "_or": [ - 3958 + 4258 ], "created_at": [ - 4025 + 4325 ], "group_hash": [ 80 ], "id": [ - 4464 + 4764 ], "last_notified_at": [ - 4025 + 4325 ], "member_steam_ids": [ 181 @@ -92935,16 +97533,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4024 + 4324 ], "group_hash": [ 78 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "member_steam_ids": [ 180 @@ -92961,16 +97559,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4024 + 4324 ], "group_hash": [ 78 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "member_steam_ids": [ 180 @@ -92987,16 +97585,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4024 + 4324 ], "group_hash": [ 78 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "member_steam_ids": [ 180 @@ -93016,7 +97614,7 @@ export default { 38 ], "returning": [ - 3954 + 4254 ], "__typename": [ 78 @@ -93024,13 +97622,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 3959 + 4259 ], "update_columns": [ - 3976 + 4276 ], "where": [ - 3958 + 4258 ], "__typename": [ 78 @@ -93038,25 +97636,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2481 + 2781 ], "group_hash": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "last_notified_at": [ - 2481 + 2781 ], "member_steam_ids": [ - 2481 + 2781 ], "status": [ - 2481 + 2781 ], "together_count": [ - 2481 + 2781 ], "__typename": [ 78 @@ -93064,7 +97662,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -93073,16 +97671,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4024 + 4324 ], "group_hash": [ 78 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "member_steam_ids": [ 180 @@ -93123,7 +97721,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 3974 + 4274 ], "ordering": [ 236 @@ -93134,16 +97732,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "group_hash": [ 78 ], "id": [ - 4462 + 4762 ], "last_notified_at": [ - 4024 + 4324 ], "member_steam_ids": [ 180 @@ -93169,13 +97767,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 3960 + 4260 ], "_set": [ - 3969 + 4269 ], "where": [ - 3958 + 4258 ], "__typename": [ 78 @@ -93222,19 +97820,19 @@ export default { 3 ], "captain": [ - 3439 + 3739 ], "captain_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "invites": [ - 3698, + 3998, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -93244,19 +97842,19 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "invites_aggregate": [ - 3699, + 3999, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -93266,19 +97864,19 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "match_lineups": [ - 1976, + 2276, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -93288,19 +97886,19 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], "match_lineups_aggregate": [ - 1977, + 2277, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -93310,19 +97908,19 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], "matches": [ - 2296, + 2596, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -93332,11 +97930,11 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], @@ -93344,25 +97942,25 @@ export default { 78 ], "owner": [ - 3439 + 3739 ], "owner_steam_id": [ 180 ], "ranks": [ - 5095 + 5446 ], "reputation": [ - 5115 + 5466 ], "role": [ 78 ], "roster": [ - 3739, + 4039, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -93372,19 +97970,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "roster_aggregate": [ - 3740, + 4040, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -93394,19 +97992,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "scrim_availability": [ - 3811, + 4111, { "distinct_on": [ - 3831, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93416,19 +98014,19 @@ export default { 38 ], "order_by": [ - 3829, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 4120 ] } ], "scrim_availability_aggregate": [ - 3812, + 4112, { "distinct_on": [ - 3831, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93438,25 +98036,25 @@ export default { 38 ], "order_by": [ - 3829, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 4120 ] } ], "scrim_settings": [ - 3926 + 4226 ], "short_name": [ 78 ], "tournament_teams": [ - 4287, + 4587, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -93466,19 +98064,19 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], "tournament_teams_aggregate": [ - 4288, + 4588, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -93488,11 +98086,11 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], @@ -93502,10 +98100,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 3985 + 4285 ], "nodes": [ - 3981 + 4281 ], "__typename": [ 78 @@ -93513,7 +98111,7 @@ export default { }, "teams_aggregate_bool_exp": { "count": [ - 3984 + 4284 ], "__typename": [ 78 @@ -93521,13 +98119,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4003 + 4303 ], "distinct": [ 3 ], "filter": [ - 3990 + 4290 ], "predicate": [ 39 @@ -93538,13 +98136,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 3988 + 4288 ], "count": [ 38, { "columns": [ - 4003, + 4303, "[teams_select_column!]" ], "distinct": [ @@ -93553,31 +98151,31 @@ export default { } ], "max": [ - 3994 + 4294 ], "min": [ - 3996 + 4296 ], "stddev": [ - 4005 + 4305 ], "stddev_pop": [ - 4007 + 4307 ], "stddev_samp": [ - 4009 + 4309 ], "sum": [ - 4013 + 4313 ], "var_pop": [ - 4017 + 4317 ], "var_samp": [ - 4019 + 4319 ], "variance": [ - 4021 + 4321 ], "__typename": [ 78 @@ -93585,37 +98183,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 3989 + 4289 ], "count": [ - 2481 + 2781 ], "max": [ - 3995 + 4295 ], "min": [ - 3997 + 4297 ], "stddev": [ - 4006 + 4306 ], "stddev_pop": [ - 4008 + 4308 ], "stddev_samp": [ - 4010 + 4310 ], "sum": [ - 4014 + 4314 ], "var_pop": [ - 4018 + 4318 ], "var_samp": [ - 4020 + 4320 ], "variance": [ - 4022 + 4322 ], "__typename": [ 78 @@ -93623,10 +98221,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 3993 + 4293 ], "on_conflict": [ - 4000 + 4300 ], "__typename": [ 78 @@ -93645,10 +98243,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -93656,13 +98254,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 3990 + 4290 ], "_not": [ - 3990 + 4290 ], "_or": [ - 3990 + 4290 ], "avatar_url": [ 80 @@ -93680,70 +98278,70 @@ export default { 4 ], "captain": [ - 3443 + 3743 ], "captain_steam_id": [ 182 ], "id": [ - 4464 + 4764 ], "invites": [ - 3707 + 4007 ], "invites_aggregate": [ - 3700 + 4000 ], "match_lineups": [ - 1985 + 2285 ], "match_lineups_aggregate": [ - 1978 + 2278 ], "matches": [ - 2305 + 2605 ], "name": [ 80 ], "owner": [ - 3443 + 3743 ], "owner_steam_id": [ 182 ], "ranks": [ - 5099 + 5450 ], "reputation": [ - 5119 + 5470 ], "role": [ 80 ], "roster": [ - 3750 + 4050 ], "roster_aggregate": [ - 3741 + 4041 ], "scrim_availability": [ - 3820 + 4120 ], "scrim_availability_aggregate": [ - 3813 + 4113 ], "scrim_settings": [ - 3930 + 4230 ], "short_name": [ 80 ], "tournament_teams": [ - 4296 + 4596 ], "tournament_teams_aggregate": [ - 4289 + 4589 ], "__typename": [ 78 @@ -93766,49 +98364,49 @@ export default { 78 ], "captain": [ - 3450 + 3750 ], "captain_steam_id": [ 180 ], "id": [ - 4462 + 4762 ], "invites": [ - 3704 + 4004 ], "match_lineups": [ - 1982 + 2282 ], "name": [ 78 ], "owner": [ - 3450 + 3750 ], "owner_steam_id": [ 180 ], "ranks": [ - 5103 + 5454 ], "reputation": [ - 5123 + 5474 ], "roster": [ - 3747 + 4047 ], "scrim_availability": [ - 3819 + 4119 ], "scrim_settings": [ - 3937 + 4237 ], "short_name": [ 78 ], "tournament_teams": [ - 4293 + 4593 ], "__typename": [ 78 @@ -93822,7 +98420,7 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -93842,22 +98440,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2481 + 2781 ], "captain_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "short_name": [ - 2481 + 2781 ], "__typename": [ 78 @@ -93871,7 +98469,7 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -93891,22 +98489,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2481 + 2781 ], "captain_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "short_name": [ - 2481 + 2781 ], "__typename": [ 78 @@ -93917,7 +98515,7 @@ export default { 38 ], "returning": [ - 3981 + 4281 ], "__typename": [ 78 @@ -93925,10 +98523,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 3993 + 4293 ], "on_conflict": [ - 4000 + 4300 ], "__typename": [ 78 @@ -93936,13 +98534,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 3991 + 4291 ], "update_columns": [ - 4015 + 4315 ], "where": [ - 3990 + 4290 ], "__typename": [ 78 @@ -93950,70 +98548,70 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2481 + 2781 ], "can_change_role": [ - 2481 + 2781 ], "can_invite": [ - 2481 + 2781 ], "can_manage_scrims": [ - 2481 + 2781 ], "can_remove": [ - 2481 + 2781 ], "captain": [ - 3452 + 3752 ], "captain_steam_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invites_aggregate": [ - 3703 + 4003 ], "match_lineups_aggregate": [ - 1981 + 2281 ], "matches_aggregate": [ - 2301 + 2601 ], "name": [ - 2481 + 2781 ], "owner": [ - 3452 + 3752 ], "owner_steam_id": [ - 2481 + 2781 ], "ranks": [ - 5104 + 5455 ], "reputation": [ - 5124 + 5475 ], "role": [ - 2481 + 2781 ], "roster_aggregate": [ - 3746 + 4046 ], "scrim_availability_aggregate": [ - 3818 + 4118 ], "scrim_settings": [ - 3939 + 4239 ], "short_name": [ - 2481 + 2781 ], "tournament_teams_aggregate": [ - 4292 + 4592 ], "__typename": [ 78 @@ -94021,7 +98619,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -94036,7 +98634,7 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -94064,10 +98662,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94086,10 +98684,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94108,10 +98706,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94119,7 +98717,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4012 + 4312 ], "ordering": [ 236 @@ -94136,7 +98734,7 @@ export default { 180 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -94164,10 +98762,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94176,13 +98774,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 3992 + 4292 ], "_set": [ - 4004 + 4304 ], "where": [ - 3990 + 4290 ], "__typename": [ 78 @@ -94201,10 +98799,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94223,10 +98821,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94245,10 +98843,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94258,31 +98856,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4024 + 4324 ], "_gt": [ - 4024 + 4324 ], "_gte": [ - 4024 + 4324 ], "_in": [ - 4024 + 4324 ], "_is_null": [ 3 ], "_lt": [ - 4024 + 4324 ], "_lte": [ - 4024 + 4324 ], "_neq": [ - 4024 + 4324 ], "_nin": [ - 4024 + 4324 ], "__typename": [ 78 @@ -94293,13 +98891,13 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "feeding_brackets": [ - 4026, + 4326, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -94309,11 +98907,11 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], @@ -94321,37 +98919,37 @@ export default { 3 ], "group": [ - 2479 + 2779 ], "id": [ - 4462 + 4762 ], "loser_bracket": [ - 4026 + 4326 ], "loser_parent_bracket_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4762 ], "options": [ - 2176 + 2476 ], "parent_bracket": [ - 4026 + 4326 ], "parent_bracket_id": [ - 4462 + 4762 ], "path": [ 78 @@ -94360,16 +98958,16 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4324 ], "scheduled_eta": [ - 4024 + 4324 ], "scheduling_proposals": [ - 1489, + 1789, { "distinct_on": [ - 1510, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -94379,19 +98977,19 @@ export default { 38 ], "order_by": [ - 1508, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1798 ] } ], "scheduling_proposals_aggregate": [ - 1490, + 1790, { "distinct_on": [ - 1510, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -94401,37 +98999,37 @@ export default { 38 ], "order_by": [ - 1508, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1798 ] } ], "stage": [ - 4154 + 4454 ], "team_1": [ - 4287 + 4587 ], "team_1_seed": [ 38 ], "team_2": [ - 4287 + 4587 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id_1": [ - 4462 + 4762 ], "tournament_team_id_2": [ - 4462 + 4762 ], "__typename": [ 78 @@ -94439,10 +99037,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4032 + 4332 ], "nodes": [ - 4026 + 4326 ], "__typename": [ 78 @@ -94450,13 +99048,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4029 + 4329 ], "bool_or": [ - 4030 + 4330 ], "count": [ - 4031 + 4331 ], "__typename": [ 78 @@ -94464,13 +99062,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4051 + 4351 ], "distinct": [ 3 ], "filter": [ - 4037 + 4337 ], "predicate": [ 4 @@ -94481,13 +99079,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4052 + 4352 ], "distinct": [ 3 ], "filter": [ - 4037 + 4337 ], "predicate": [ 4 @@ -94498,13 +99096,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4050 + 4350 ], "distinct": [ 3 ], "filter": [ - 4037 + 4337 ], "predicate": [ 39 @@ -94515,13 +99113,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4035 + 4335 ], "count": [ 38, { "columns": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -94530,31 +99128,31 @@ export default { } ], "max": [ - 4041 + 4341 ], "min": [ - 4043 + 4343 ], "stddev": [ - 4054 + 4354 ], "stddev_pop": [ - 4056 + 4356 ], "stddev_samp": [ - 4058 + 4358 ], "sum": [ - 4062 + 4362 ], "var_pop": [ - 4066 + 4366 ], "var_samp": [ - 4068 + 4368 ], "variance": [ - 4070 + 4370 ], "__typename": [ 78 @@ -94562,37 +99160,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4036 + 4336 ], "count": [ - 2481 + 2781 ], "max": [ - 4042 + 4342 ], "min": [ - 4044 + 4344 ], "stddev": [ - 4055 + 4355 ], "stddev_pop": [ - 4057 + 4357 ], "stddev_samp": [ - 4059 + 4359 ], "sum": [ - 4063 + 4363 ], "var_pop": [ - 4067 + 4367 ], "var_samp": [ - 4069 + 4369 ], "variance": [ - 4071 + 4371 ], "__typename": [ 78 @@ -94600,10 +99198,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4040 + 4340 ], "on_conflict": [ - 4047 + 4347 ], "__typename": [ 78 @@ -94631,19 +99229,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94651,58 +99249,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4037 + 4337 ], "_not": [ - 4037 + 4337 ], "_or": [ - 4037 + 4337 ], "bye": [ 4 ], "created_at": [ - 4025 + 4325 ], "feeding_brackets": [ - 4037 + 4337 ], "finished": [ 4 ], "group": [ - 2480 + 2780 ], "id": [ - 4464 + 4764 ], "loser_bracket": [ - 4037 + 4337 ], "loser_parent_bracket_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_number": [ 39 ], "match_options_id": [ - 4464 + 4764 ], "options": [ - 2180 + 2480 ], "parent_bracket": [ - 4037 + 4337 ], "parent_bracket_id": [ - 4464 + 4764 ], "path": [ 80 @@ -94711,40 +99309,40 @@ export default { 39 ], "scheduled_at": [ - 4025 + 4325 ], "scheduled_eta": [ - 4025 + 4325 ], "scheduling_proposals": [ - 1498 + 1798 ], "scheduling_proposals_aggregate": [ - 1491 + 1791 ], "stage": [ - 4166 + 4466 ], "team_1": [ - 4296 + 4596 ], "team_1_seed": [ 39 ], "team_2": [ - 4296 + 4596 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 4464 + 4764 ], "tournament_team_id_1": [ - 4464 + 4764 ], "tournament_team_id_2": [ - 4464 + 4764 ], "__typename": [ 78 @@ -94753,7 +99351,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2479 + 2779 ], "match_number": [ 38 @@ -94776,43 +99374,43 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "finished": [ 3 ], "group": [ - 2479 + 2779 ], "id": [ - 4462 + 4762 ], "loser_bracket": [ - 4046 + 4346 ], "loser_parent_bracket_id": [ - 4462 + 4762 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4762 ], "options": [ - 2187 + 2487 ], "parent_bracket": [ - 4046 + 4346 ], "parent_bracket_id": [ - 4462 + 4762 ], "path": [ 78 @@ -94821,37 +99419,37 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4324 ], "scheduled_eta": [ - 4024 + 4324 ], "scheduling_proposals": [ - 1495 + 1795 ], "stage": [ - 4178 + 4478 ], "team_1": [ - 4305 + 4605 ], "team_1_seed": [ 38 ], "team_2": [ - 4305 + 4605 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id_1": [ - 4462 + 4762 ], "tournament_team_id_2": [ - 4462 + 4762 ], "__typename": [ 78 @@ -94859,28 +99457,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4024 + 4324 ], "group": [ - 2479 + 2779 ], "id": [ - 4462 + 4762 ], "loser_parent_bracket_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4762 ], "parent_bracket_id": [ - 4462 + 4762 ], "path": [ 78 @@ -94889,10 +99487,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4324 ], "scheduled_eta": [ - 4024 + 4324 ], "team_1_seed": [ 38 @@ -94901,13 +99499,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id_1": [ - 4462 + 4762 ], "tournament_team_id_2": [ - 4462 + 4762 ], "__typename": [ 78 @@ -94915,55 +99513,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2481 + 2781 ], "group": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "loser_parent_bracket_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "parent_bracket_id": [ - 2481 + 2781 ], "path": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "scheduled_eta": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "tournament_team_id_1": [ - 2481 + 2781 ], "tournament_team_id_2": [ - 2481 + 2781 ], "__typename": [ 78 @@ -94971,28 +99569,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4024 + 4324 ], "group": [ - 2479 + 2779 ], "id": [ - 4462 + 4762 ], "loser_parent_bracket_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4762 ], "parent_bracket_id": [ - 4462 + 4762 ], "path": [ 78 @@ -95001,10 +99599,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4324 ], "scheduled_eta": [ - 4024 + 4324 ], "team_1_seed": [ 38 @@ -95013,13 +99611,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id_1": [ - 4462 + 4762 ], "tournament_team_id_2": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95027,55 +99625,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2481 + 2781 ], "group": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "loser_parent_bracket_id": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "parent_bracket_id": [ - 2481 + 2781 ], "path": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "scheduled_eta": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "tournament_team_id_1": [ - 2481 + 2781 ], "tournament_team_id_2": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95086,7 +99684,7 @@ export default { 38 ], "returning": [ - 4026 + 4326 ], "__typename": [ 78 @@ -95094,10 +99692,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4040 + 4340 ], "on_conflict": [ - 4047 + 4347 ], "__typename": [ 78 @@ -95105,13 +99703,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4038 + 4338 ], "update_columns": [ - 4064 + 4364 ], "where": [ - 4037 + 4337 ], "__typename": [ 78 @@ -95119,88 +99717,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "feeding_brackets_aggregate": [ - 4033 + 4333 ], "finished": [ - 2481 + 2781 ], "group": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "loser_bracket": [ - 4048 + 4348 ], "loser_parent_bracket_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "options": [ - 2189 + 2489 ], "parent_bracket": [ - 4048 + 4348 ], "parent_bracket_id": [ - 2481 + 2781 ], "path": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "scheduled_at": [ - 2481 + 2781 ], "scheduled_eta": [ - 2481 + 2781 ], "scheduling_proposals_aggregate": [ - 1494 + 1794 ], "stage": [ - 4180 + 4480 ], "team_1": [ - 4307 + 4607 ], "team_1_seed": [ - 2481 + 2781 ], "team_2": [ - 4307 + 4607 ], "team_2_seed": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "tournament_team_id_1": [ - 2481 + 2781 ], "tournament_team_id_2": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95208,7 +99806,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95222,31 +99820,31 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "finished": [ 3 ], "group": [ - 2479 + 2779 ], "id": [ - 4462 + 4762 ], "loser_parent_bracket_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4762 ], "parent_bracket_id": [ - 4462 + 4762 ], "path": [ 78 @@ -95255,10 +99853,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4324 ], "scheduled_eta": [ - 4024 + 4324 ], "team_1_seed": [ 38 @@ -95267,13 +99865,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id_1": [ - 4462 + 4762 ], "tournament_team_id_2": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95301,19 +99899,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95341,19 +99939,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95381,19 +99979,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95401,7 +99999,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4061 + 4361 ], "ordering": [ 236 @@ -95415,31 +100013,31 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "finished": [ 3 ], "group": [ - 2479 + 2779 ], "id": [ - 4462 + 4762 ], "loser_parent_bracket_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4762 ], "parent_bracket_id": [ - 4462 + 4762 ], "path": [ 78 @@ -95448,10 +100046,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4324 ], "scheduled_eta": [ - 4024 + 4324 ], "team_1_seed": [ 38 @@ -95460,13 +100058,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id_1": [ - 4462 + 4762 ], "tournament_team_id_2": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95474,7 +100072,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2479 + 2779 ], "match_number": [ 38 @@ -95494,19 +100092,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95515,13 +100113,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4039 + 4339 ], "_set": [ - 4053 + 4353 ], "where": [ - 4037 + 4337 ], "__typename": [ 78 @@ -95549,19 +100147,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95589,19 +100187,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95629,19 +100227,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2481 + 2781 ], "match_number": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "team_1_seed": [ - 2481 + 2781 ], "team_2_seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95649,16 +100247,16 @@ export default { }, "tournament_organizers": { "organizer": [ - 3439 + 3739 ], "steam_id": [ 180 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95666,10 +100264,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4076 + 4376 ], "nodes": [ - 4072 + 4372 ], "__typename": [ 78 @@ -95677,7 +100275,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4075 + 4375 ], "__typename": [ 78 @@ -95685,13 +100283,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4093 + 4393 ], "distinct": [ 3 ], "filter": [ - 4081 + 4381 ], "predicate": [ 39 @@ -95702,13 +100300,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4079 + 4379 ], "count": [ 38, { "columns": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -95717,31 +100315,31 @@ export default { } ], "max": [ - 4085 + 4385 ], "min": [ - 4087 + 4387 ], "stddev": [ - 4095 + 4395 ], "stddev_pop": [ - 4097 + 4397 ], "stddev_samp": [ - 4099 + 4399 ], "sum": [ - 4103 + 4403 ], "var_pop": [ - 4107 + 4407 ], "var_samp": [ - 4109 + 4409 ], "variance": [ - 4111 + 4411 ], "__typename": [ 78 @@ -95749,37 +100347,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4080 + 4380 ], "count": [ - 2481 + 2781 ], "max": [ - 4086 + 4386 ], "min": [ - 4088 + 4388 ], "stddev": [ - 4096 + 4396 ], "stddev_pop": [ - 4098 + 4398 ], "stddev_samp": [ - 4100 + 4400 ], "sum": [ - 4104 + 4404 ], "var_pop": [ - 4108 + 4408 ], "var_samp": [ - 4110 + 4410 ], "variance": [ - 4112 + 4412 ], "__typename": [ 78 @@ -95787,10 +100385,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4084 + 4384 ], "on_conflict": [ - 4090 + 4390 ], "__typename": [ 78 @@ -95806,7 +100404,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95814,25 +100412,25 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4081 + 4381 ], "_not": [ - 4081 + 4381 ], "_or": [ - 4081 + 4381 ], "organizer": [ - 3443 + 3743 ], "steam_id": [ 182 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -95849,16 +100447,16 @@ export default { }, "tournament_organizers_insert_input": { "organizer": [ - 3450 + 3750 ], "steam_id": [ 180 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95869,7 +100467,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95877,10 +100475,10 @@ export default { }, "tournament_organizers_max_order_by": { "steam_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95891,7 +100489,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95899,10 +100497,10 @@ export default { }, "tournament_organizers_min_order_by": { "steam_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95913,7 +100511,7 @@ export default { 38 ], "returning": [ - 4072 + 4372 ], "__typename": [ 78 @@ -95921,13 +100519,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4082 + 4382 ], "update_columns": [ - 4105 + 4405 ], "where": [ - 4081 + 4381 ], "__typename": [ 78 @@ -95935,16 +100533,16 @@ export default { }, "tournament_organizers_order_by": { "organizer": [ - 3452 + 3752 ], "steam_id": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95955,7 +100553,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95967,7 +100565,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -95983,7 +100581,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -95999,7 +100597,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96015,7 +100613,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96023,7 +100621,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4102 + 4402 ], "ordering": [ 236 @@ -96037,7 +100635,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96053,7 +100651,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96062,13 +100660,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4083 + 4383 ], "_set": [ - 4094 + 4394 ], "where": [ - 4081 + 4381 ], "__typename": [ 78 @@ -96084,7 +100682,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96100,7 +100698,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96116,7 +100714,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96124,28 +100722,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "round": [ 38 ], "stage": [ - 4154 + 4454 ], "tournament_stage_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96153,10 +100751,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4117 + 4417 ], "nodes": [ - 4113 + 4413 ], "__typename": [ 78 @@ -96164,7 +100762,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4116 + 4416 ], "__typename": [ 78 @@ -96172,13 +100770,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4134 + 4434 ], "distinct": [ 3 ], "filter": [ - 4122 + 4422 ], "predicate": [ 39 @@ -96189,13 +100787,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4120 + 4420 ], "count": [ 38, { "columns": [ - 4134, + 4434, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -96204,31 +100802,31 @@ export default { } ], "max": [ - 4126 + 4426 ], "min": [ - 4128 + 4428 ], "stddev": [ - 4136 + 4436 ], "stddev_pop": [ - 4138 + 4438 ], "stddev_samp": [ - 4140 + 4440 ], "sum": [ - 4144 + 4444 ], "var_pop": [ - 4148 + 4448 ], "var_samp": [ - 4150 + 4450 ], "variance": [ - 4152 + 4452 ], "__typename": [ 78 @@ -96236,37 +100834,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4121 + 4421 ], "count": [ - 2481 + 2781 ], "max": [ - 4127 + 4427 ], "min": [ - 4129 + 4429 ], "stddev": [ - 4137 + 4437 ], "stddev_pop": [ - 4139 + 4439 ], "stddev_samp": [ - 4141 + 4441 ], "sum": [ - 4145 + 4445 ], "var_pop": [ - 4149 + 4449 ], "var_samp": [ - 4151 + 4451 ], "variance": [ - 4153 + 4453 ], "__typename": [ 78 @@ -96274,10 +100872,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4125 + 4425 ], "on_conflict": [ - 4131 + 4431 ], "__typename": [ 78 @@ -96293,7 +100891,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96301,37 +100899,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4122 + 4422 ], "_not": [ - 4122 + 4422 ], "_or": [ - 4122 + 4422 ], "closes_at": [ - 4025 + 4325 ], "created_at": [ - 4025 + 4325 ], "default_match_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "opens_at": [ - 4025 + 4325 ], "round": [ 39 ], "stage": [ - 4166 + 4466 ], "tournament_stage_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -96348,28 +100946,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "round": [ 38 ], "stage": [ - 4178 + 4478 ], "tournament_stage_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96377,25 +100975,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96403,25 +101001,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "default_match_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "opens_at": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96429,25 +101027,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96455,25 +101053,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "default_match_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "opens_at": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96484,7 +101082,7 @@ export default { 38 ], "returning": [ - 4113 + 4413 ], "__typename": [ 78 @@ -96492,13 +101090,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4123 + 4423 ], "update_columns": [ - 4146 + 4446 ], "where": [ - 4122 + 4422 ], "__typename": [ 78 @@ -96506,28 +101104,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "default_match_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "opens_at": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "stage": [ - 4180 + 4480 ], "tournament_stage_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96535,7 +101133,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96544,25 +101142,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96578,7 +101176,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96594,7 +101192,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96610,7 +101208,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96618,7 +101216,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4143 + 4443 ], "ordering": [ 236 @@ -96629,25 +101227,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4024 + 4324 ], "created_at": [ - 4024 + 4324 ], "default_match_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "opens_at": [ - 4024 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -96663,7 +101261,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96672,13 +101270,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4124 + 4424 ], "_set": [ - 4135 + 4435 ], "where": [ - 4122 + 4422 ], "__typename": [ 78 @@ -96694,7 +101292,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96710,7 +101308,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96726,7 +101324,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -96734,10 +101332,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4026, + 4326, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96747,19 +101345,19 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], "brackets_aggregate": [ - 4027, + 4327, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96769,11 +101367,11 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], @@ -96784,16 +101382,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1098 + 1138 ], "groups": [ 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_rounds": [ 38 @@ -96805,16 +101403,16 @@ export default { 38 ], "options": [ - 2176 + 2476 ], "order": [ 38 ], "results": [ - 5135, + 5486, { "distinct_on": [ - 5167, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96824,19 +101422,19 @@ export default { 38 ], "order_by": [ - 5165, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5505 ] } ], "results_aggregate": [ - 5136, + 5487, { "distinct_on": [ - 5167, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96846,16 +101444,16 @@ export default { 38 ], "order_by": [ - 5165, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5505 ] } ], "settings": [ - 1352, + 1652, { "path": [ 78 @@ -96869,19 +101467,19 @@ export default { 3 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "type": [ - 1103 + 1143 ], "windows": [ - 4113, + 4413, { "distinct_on": [ - 4134, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96891,19 +101489,19 @@ export default { 38 ], "order_by": [ - 4132, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4422 ] } ], "windows_aggregate": [ - 4114, + 4414, { "distinct_on": [ - 4134, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96913,11 +101511,11 @@ export default { 38 ], "order_by": [ - 4132, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4422 ] } ], @@ -96927,10 +101525,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4160 + 4460 ], "nodes": [ - 4154 + 4454 ], "__typename": [ 78 @@ -96938,13 +101536,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4157 + 4457 ], "bool_or": [ - 4158 + 4458 ], "count": [ - 4159 + 4459 ], "__typename": [ 78 @@ -96952,13 +101550,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4184 + 4484 ], "distinct": [ 3 ], "filter": [ - 4166 + 4466 ], "predicate": [ 4 @@ -96969,13 +101567,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4185 + 4485 ], "distinct": [ 3 ], "filter": [ - 4166 + 4466 ], "predicate": [ 4 @@ -96986,13 +101584,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4183 + 4483 ], "distinct": [ 3 ], "filter": [ - 4166 + 4466 ], "predicate": [ 39 @@ -97003,13 +101601,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4164 + 4464 ], "count": [ 38, { "columns": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "distinct": [ @@ -97018,31 +101616,31 @@ export default { } ], "max": [ - 4173 + 4473 ], "min": [ - 4175 + 4475 ], "stddev": [ - 4187 + 4487 ], "stddev_pop": [ - 4189 + 4489 ], "stddev_samp": [ - 4191 + 4491 ], "sum": [ - 4195 + 4495 ], "var_pop": [ - 4199 + 4499 ], "var_samp": [ - 4201 + 4501 ], "variance": [ - 4203 + 4503 ], "__typename": [ 78 @@ -97050,37 +101648,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4165 + 4465 ], "count": [ - 2481 + 2781 ], "max": [ - 4174 + 4474 ], "min": [ - 4176 + 4476 ], "stddev": [ - 4188 + 4488 ], "stddev_pop": [ - 4190 + 4490 ], "stddev_samp": [ - 4192 + 4492 ], "sum": [ - 4196 + 4496 ], "var_pop": [ - 4200 + 4500 ], "var_samp": [ - 4202 + 4502 ], "variance": [ - 4204 + 4504 ], "__typename": [ 78 @@ -97088,7 +101686,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1352 + 1652 ], "__typename": [ 78 @@ -97096,10 +101694,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4172 + 4472 ], "on_conflict": [ - 4179 + 4479 ], "__typename": [ 78 @@ -97133,25 +101731,25 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -97159,19 +101757,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4166 + 4466 ], "_not": [ - 4166 + 4466 ], "_or": [ - 4166 + 4466 ], "brackets": [ - 4037 + 4337 ], "brackets_aggregate": [ - 4028 + 4328 ], "decider_best_of": [ 39 @@ -97180,16 +101778,16 @@ export default { 39 ], "e_tournament_stage_type": [ - 1101 + 1141 ], "groups": [ 39 ], "id": [ - 4464 + 4764 ], "match_options_id": [ - 4464 + 4764 ], "max_rounds": [ 39 @@ -97201,19 +101799,19 @@ export default { 39 ], "options": [ - 2180 + 2480 ], "order": [ 39 ], "results": [ - 5154 + 5505 ], "results_aggregate": [ - 5137 + 5488 ], "settings": [ - 1354 + 1654 ], "swiss_no_elimination": [ 4 @@ -97222,19 +101820,19 @@ export default { 4 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "type": [ - 1104 + 1144 ], "windows": [ - 4122 + 4422 ], "windows_aggregate": [ - 4115 + 4415 ], "__typename": [ 78 @@ -97293,7 +101891,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4034 + 4334 ], "decider_best_of": [ 38 @@ -97302,16 +101900,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1109 + 1149 ], "groups": [ 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_rounds": [ 38 @@ -97323,16 +101921,16 @@ export default { 38 ], "options": [ - 2187 + 2487 ], "order": [ 38 ], "results": [ - 5151 + 5502 ], "settings": [ - 1352 + 1652 ], "swiss_no_elimination": [ 3 @@ -97341,16 +101939,16 @@ export default { 3 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "type": [ - 1103 + 1143 ], "windows": [ - 4119 + 4419 ], "__typename": [ 78 @@ -97367,10 +101965,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_rounds": [ 38 @@ -97385,7 +101983,7 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -97393,34 +101991,34 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -97437,10 +102035,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_rounds": [ 38 @@ -97455,7 +102053,7 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -97463,34 +102061,34 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -97501,7 +102099,7 @@ export default { 38 ], "returning": [ - 4154 + 4454 ], "__typename": [ 78 @@ -97509,10 +102107,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4172 + 4472 ], "on_conflict": [ - 4179 + 4479 ], "__typename": [ 78 @@ -97520,13 +102118,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4167 + 4467 ], "update_columns": [ - 4197 + 4497 ], "where": [ - 4166 + 4466 ], "__typename": [ 78 @@ -97534,64 +102132,64 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4033 + 4333 ], "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "e_tournament_stage_type": [ - 1111 + 1151 ], "groups": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "match_options_id": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "options": [ - 2189 + 2489 ], "order": [ - 2481 + 2781 ], "results_aggregate": [ - 5150 + 5501 ], "settings": [ - 2481 + 2781 ], "swiss_no_elimination": [ - 2481 + 2781 ], "third_place_match": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "windows_aggregate": [ - 4118 + 4418 ], "__typename": [ 78 @@ -97599,7 +102197,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -97607,7 +102205,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1352 + 1652 ], "__typename": [ 78 @@ -97627,10 +102225,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_rounds": [ 38 @@ -97645,7 +102243,7 @@ export default { 38 ], "settings": [ - 1352 + 1652 ], "swiss_no_elimination": [ 3 @@ -97654,10 +102252,10 @@ export default { 3 ], "tournament_id": [ - 4462 + 4762 ], "type": [ - 1103 + 1143 ], "__typename": [ 78 @@ -97691,25 +102289,25 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -97743,25 +102341,25 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -97795,25 +102393,25 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -97821,7 +102419,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4194 + 4494 ], "ordering": [ 236 @@ -97841,10 +102439,10 @@ export default { 38 ], "id": [ - 4462 + 4762 ], "match_options_id": [ - 4462 + 4762 ], "max_rounds": [ 38 @@ -97859,7 +102457,7 @@ export default { 38 ], "settings": [ - 1352 + 1652 ], "swiss_no_elimination": [ 3 @@ -97868,10 +102466,10 @@ export default { 3 ], "tournament_id": [ - 4462 + 4762 ], "type": [ - 1103 + 1143 ], "__typename": [ 78 @@ -97905,25 +102503,25 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -97932,28 +102530,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4162 + 4462 ], "_delete_at_path": [ - 4168 + 4468 ], "_delete_elem": [ - 4169 + 4469 ], "_delete_key": [ - 4170 + 4470 ], "_inc": [ - 4171 + 4471 ], "_prepend": [ - 4182 + 4482 ], "_set": [ - 4186 + 4486 ], "where": [ - 4166 + 4466 ], "__typename": [ 78 @@ -97987,25 +102585,25 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98039,25 +102637,25 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98091,25 +102689,25 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2481 + 2781 ], "default_best_of": [ - 2481 + 2781 ], "groups": [ - 2481 + 2781 ], "max_rounds": [ - 2481 + 2781 ], "max_teams": [ - 2481 + 2781 ], "min_teams": [ - 2481 + 2781 ], "order": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98117,28 +102715,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by": [ - 3439 + 3739 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3439 + 3739 ], "steam_id": [ 180 ], "team": [ - 4287 + 4587 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98146,10 +102744,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4209 + 4509 ], "nodes": [ - 4205 + 4505 ], "__typename": [ 78 @@ -98157,7 +102755,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4208 + 4508 ], "__typename": [ 78 @@ -98165,13 +102763,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4226 + 4526 ], "distinct": [ 3 ], "filter": [ - 4214 + 4514 ], "predicate": [ 39 @@ -98182,13 +102780,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4212 + 4512 ], "count": [ 38, { "columns": [ - 4226, + 4526, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -98197,31 +102795,31 @@ export default { } ], "max": [ - 4218 + 4518 ], "min": [ - 4220 + 4520 ], "stddev": [ - 4228 + 4528 ], "stddev_pop": [ - 4230 + 4530 ], "stddev_samp": [ - 4232 + 4532 ], "sum": [ - 4236 + 4536 ], "var_pop": [ - 4240 + 4540 ], "var_samp": [ - 4242 + 4542 ], "variance": [ - 4244 + 4544 ], "__typename": [ 78 @@ -98229,37 +102827,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4213 + 4513 ], "count": [ - 2481 + 2781 ], "max": [ - 4219 + 4519 ], "min": [ - 4221 + 4521 ], "stddev": [ - 4229 + 4529 ], "stddev_pop": [ - 4231 + 4531 ], "stddev_samp": [ - 4233 + 4533 ], "sum": [ - 4237 + 4537 ], "var_pop": [ - 4241 + 4541 ], "var_samp": [ - 4243 + 4543 ], "variance": [ - 4245 + 4545 ], "__typename": [ 78 @@ -98267,10 +102865,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4217 + 4517 ], "on_conflict": [ - 4223 + 4523 ], "__typename": [ 78 @@ -98289,10 +102887,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98300,37 +102898,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4214 + 4514 ], "_not": [ - 4214 + 4514 ], "_or": [ - 4214 + 4514 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "invited_by": [ - 3443 + 3743 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3443 + 3743 ], "steam_id": [ 182 ], "team": [ - 4296 + 4596 ], "tournament_team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -98350,28 +102948,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by": [ - 3450 + 3750 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3450 + 3750 ], "steam_id": [ 180 ], "team": [ - 4305 + 4605 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98379,10 +102977,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -98391,7 +102989,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98399,19 +102997,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98419,10 +103017,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -98431,7 +103029,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98439,19 +103037,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98462,7 +103060,7 @@ export default { 38 ], "returning": [ - 4205 + 4505 ], "__typename": [ 78 @@ -98470,13 +103068,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4215 + 4515 ], "update_columns": [ - 4238 + 4538 ], "where": [ - 4214 + 4514 ], "__typename": [ 78 @@ -98484,28 +103082,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invited_by": [ - 3452 + 3752 ], "invited_by_player_steam_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "steam_id": [ - 2481 + 2781 ], "team": [ - 4307 + 4607 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98513,7 +103111,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98522,10 +103120,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -98534,7 +103132,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98553,10 +103151,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98575,10 +103173,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98597,10 +103195,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98608,7 +103206,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4235 + 4535 ], "ordering": [ 236 @@ -98619,10 +103217,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -98631,7 +103229,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98650,10 +103248,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98662,13 +103260,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4216 + 4516 ], "_set": [ - 4227 + 4527 ], "where": [ - 4214 + 4514 ], "__typename": [ 78 @@ -98687,10 +103285,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98709,10 +103307,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98731,10 +103329,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98742,28 +103340,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1037 + 1077 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1082 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team": [ - 4287 + 4587 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98771,10 +103369,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4250 + 4550 ], "nodes": [ - 4246 + 4546 ], "__typename": [ 78 @@ -98782,7 +103380,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4249 + 4549 ], "__typename": [ 78 @@ -98790,13 +103388,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4267 + 4567 ], "distinct": [ 3 ], "filter": [ - 4255 + 4555 ], "predicate": [ 39 @@ -98807,13 +103405,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4253 + 4553 ], "count": [ 38, { "columns": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -98822,31 +103420,31 @@ export default { } ], "max": [ - 4259 + 4559 ], "min": [ - 4261 + 4561 ], "stddev": [ - 4269 + 4569 ], "stddev_pop": [ - 4271 + 4571 ], "stddev_samp": [ - 4273 + 4573 ], "sum": [ - 4277 + 4577 ], "var_pop": [ - 4281 + 4581 ], "var_samp": [ - 4283 + 4583 ], "variance": [ - 4285 + 4585 ], "__typename": [ 78 @@ -98854,37 +103452,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4254 + 4554 ], "count": [ - 2481 + 2781 ], "max": [ - 4260 + 4560 ], "min": [ - 4262 + 4562 ], "stddev": [ - 4270 + 4570 ], "stddev_pop": [ - 4272 + 4572 ], "stddev_samp": [ - 4274 + 4574 ], "sum": [ - 4278 + 4578 ], "var_pop": [ - 4282 + 4582 ], "var_samp": [ - 4284 + 4584 ], "variance": [ - 4286 + 4586 ], "__typename": [ 78 @@ -98892,10 +103490,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4258 + 4558 ], "on_conflict": [ - 4264 + 4564 ], "__typename": [ 78 @@ -98911,7 +103509,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -98919,37 +103517,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4255 + 4555 ], "_not": [ - 4255 + 4555 ], "_or": [ - 4255 + 4555 ], "e_team_role": [ - 1040 + 1080 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 ], "role": [ - 1043 + 1083 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "tournament_team": [ - 4296 + 4596 ], "tournament_team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -98966,28 +103564,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1048 + 1088 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1082 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team": [ - 4305 + 4605 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -98998,10 +103596,10 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99009,13 +103607,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99026,10 +103624,10 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99037,13 +103635,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99054,7 +103652,7 @@ export default { 38 ], "returning": [ - 4246 + 4546 ], "__typename": [ 78 @@ -99062,13 +103660,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4256 + 4556 ], "update_columns": [ - 4279 + 4579 ], "where": [ - 4255 + 4555 ], "__typename": [ 78 @@ -99076,28 +103674,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1050 + 1090 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "role": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team": [ - 4307 + 4607 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99108,7 +103706,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99120,13 +103718,13 @@ export default { 180 ], "role": [ - 1042 + 1082 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99142,7 +103740,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99158,7 +103756,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99174,7 +103772,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99182,7 +103780,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4276 + 4576 ], "ordering": [ 236 @@ -99196,13 +103794,13 @@ export default { 180 ], "role": [ - 1042 + 1082 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99218,7 +103816,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99227,13 +103825,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4257 + 4557 ], "_set": [ - 4268 + 4568 ], "where": [ - 4255 + 4555 ], "__typename": [ 78 @@ -99249,7 +103847,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99265,7 +103863,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99281,7 +103879,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99292,28 +103890,28 @@ export default { 3 ], "captain": [ - 3439 + 3739 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "creator": [ - 3439 + 3739 ], "eligible_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invites": [ - 4205, + 4505, { "distinct_on": [ - 4226, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99323,19 +103921,19 @@ export default { 38 ], "order_by": [ - 4224, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4514 ] } ], "invites_aggregate": [ - 4206, + 4506, { "distinct_on": [ - 4226, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99345,11 +103943,11 @@ export default { 38 ], "order_by": [ - 4224, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4514 ] } ], @@ -99360,13 +103958,13 @@ export default { 180 ], "results": [ - 5135 + 5486 ], "roster": [ - 4246, + 4546, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99376,19 +103974,19 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "roster_aggregate": [ - 4247, + 4547, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99398,11 +103996,11 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], @@ -99413,16 +104011,16 @@ export default { 78 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99430,10 +104028,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4291 + 4591 ], "nodes": [ - 4287 + 4587 ], "__typename": [ 78 @@ -99441,7 +104039,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4290 + 4590 ], "__typename": [ 78 @@ -99449,13 +104047,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4309 + 4609 ], "distinct": [ 3 ], "filter": [ - 4296 + 4596 ], "predicate": [ 39 @@ -99466,13 +104064,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4294 + 4594 ], "count": [ 38, { "columns": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "distinct": [ @@ -99481,31 +104079,31 @@ export default { } ], "max": [ - 4300 + 4600 ], "min": [ - 4302 + 4602 ], "stddev": [ - 4311 + 4611 ], "stddev_pop": [ - 4313 + 4613 ], "stddev_samp": [ - 4315 + 4615 ], "sum": [ - 4319 + 4619 ], "var_pop": [ - 4323 + 4623 ], "var_samp": [ - 4325 + 4625 ], "variance": [ - 4327 + 4627 ], "__typename": [ 78 @@ -99513,37 +104111,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4295 + 4595 ], "count": [ - 2481 + 2781 ], "max": [ - 4301 + 4601 ], "min": [ - 4303 + 4603 ], "stddev": [ - 4312 + 4612 ], "stddev_pop": [ - 4314 + 4614 ], "stddev_samp": [ - 4316 + 4616 ], "sum": [ - 4320 + 4620 ], "var_pop": [ - 4324 + 4624 ], "var_samp": [ - 4326 + 4626 ], "variance": [ - 4328 + 4628 ], "__typename": [ 78 @@ -99551,10 +104149,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4299 + 4599 ], "on_conflict": [ - 4306 + 4606 ], "__typename": [ 78 @@ -99576,13 +104174,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99590,40 +104188,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4296 + 4596 ], "_not": [ - 4296 + 4596 ], "_or": [ - 4296 + 4596 ], "can_manage": [ 4 ], "captain": [ - 3443 + 3743 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4325 ], "creator": [ - 3443 + 3743 ], "eligible_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "invites": [ - 4214 + 4514 ], "invites_aggregate": [ - 4207 + 4507 ], "name": [ 80 @@ -99632,13 +104230,13 @@ export default { 182 ], "results": [ - 5154 + 5505 ], "roster": [ - 4255 + 4555 ], "roster_aggregate": [ - 4248 + 4548 ], "seed": [ 39 @@ -99647,16 +104245,16 @@ export default { 80 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -99679,25 +104277,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3450 + 3750 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4324 ], "creator": [ - 3450 + 3750 ], "eligible_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "invites": [ - 4211 + 4511 ], "name": [ 78 @@ -99706,10 +104304,10 @@ export default { 180 ], "results": [ - 5163 + 5514 ], "roster": [ - 4252 + 4552 ], "seed": [ 38 @@ -99718,16 +104316,16 @@ export default { 78 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99738,13 +104336,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "eligible_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -99759,10 +104357,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99770,34 +104368,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "eligible_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "short_name": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99808,13 +104406,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "eligible_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -99829,10 +104427,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99840,34 +104438,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "eligible_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "short_name": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99878,7 +104476,7 @@ export default { 38 ], "returning": [ - 4287 + 4587 ], "__typename": [ 78 @@ -99886,10 +104484,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4299 + 4599 ], "on_conflict": [ - 4306 + 4606 ], "__typename": [ 78 @@ -99897,13 +104495,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4297 + 4597 ], "update_columns": [ - 4321 + 4621 ], "where": [ - 4296 + 4596 ], "__typename": [ 78 @@ -99911,58 +104509,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2481 + 2781 ], "captain": [ - 3452 + 3752 ], "captain_steam_id": [ - 2481 + 2781 ], "created_at": [ - 2481 + 2781 ], "creator": [ - 3452 + 3752 ], "eligible_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "invites_aggregate": [ - 4210 + 4510 ], "name": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "results": [ - 5165 + 5516 ], "roster_aggregate": [ - 4251 + 4551 ], "seed": [ - 2481 + 2781 ], "short_name": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -99970,7 +104568,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -99982,13 +104580,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "eligible_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -100003,10 +104601,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -100028,13 +104626,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100056,13 +104654,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100084,13 +104682,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100098,7 +104696,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4318 + 4618 ], "ordering": [ 236 @@ -100112,13 +104710,13 @@ export default { 180 ], "created_at": [ - 4024 + 4324 ], "eligible_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "name": [ 78 @@ -100133,10 +104731,10 @@ export default { 78 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -100158,13 +104756,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100173,13 +104771,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4298 + 4598 ], "_set": [ - 4310 + 4610 ], "where": [ - 4296 + 4596 ], "__typename": [ 78 @@ -100201,13 +104799,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100229,13 +104827,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100257,13 +104855,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2481 + 2781 ], "owner_steam_id": [ - 2481 + 2781 ], "seed": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100271,10 +104869,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "manual": [ 3 @@ -100286,31 +104884,31 @@ export default { 78 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team": [ - 4287 + 4587 ], "tournament_team_id": [ - 4462 + 4762 ], "trophy_config": [ - 4374 + 4674 ], "__typename": [ 78 @@ -100318,10 +104916,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4335 + 4635 ], "nodes": [ - 4329 + 4629 ], "__typename": [ 78 @@ -100329,13 +104927,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4332 + 4632 ], "bool_or": [ - 4333 + 4633 ], "count": [ - 4334 + 4634 ], "__typename": [ 78 @@ -100343,13 +104941,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4353 + 4653 ], "distinct": [ 3 ], "filter": [ - 4340 + 4640 ], "predicate": [ 4 @@ -100360,13 +104958,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4354 + 4654 ], "distinct": [ 3 ], "filter": [ - 4340 + 4640 ], "predicate": [ 4 @@ -100377,13 +104975,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4352 + 4652 ], "distinct": [ 3 ], "filter": [ - 4340 + 4640 ], "predicate": [ 39 @@ -100394,13 +104992,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4338 + 4638 ], "count": [ 38, { "columns": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -100409,31 +105007,31 @@ export default { } ], "max": [ - 4344 + 4644 ], "min": [ - 4346 + 4646 ], "stddev": [ - 4356 + 4656 ], "stddev_pop": [ - 4358 + 4658 ], "stddev_samp": [ - 4360 + 4660 ], "sum": [ - 4364 + 4664 ], "var_pop": [ - 4368 + 4668 ], "var_samp": [ - 4370 + 4670 ], "variance": [ - 4372 + 4672 ], "__typename": [ 78 @@ -100441,37 +105039,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4339 + 4639 ], "count": [ - 2481 + 2781 ], "max": [ - 4345 + 4645 ], "min": [ - 4347 + 4647 ], "stddev": [ - 4357 + 4657 ], "stddev_pop": [ - 4359 + 4659 ], "stddev_samp": [ - 4361 + 4661 ], "sum": [ - 4365 + 4665 ], "var_pop": [ - 4369 + 4669 ], "var_samp": [ - 4371 + 4671 ], "variance": [ - 4373 + 4673 ], "__typename": [ 78 @@ -100479,10 +105077,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4343 + 4643 ], "on_conflict": [ - 4349 + 4649 ], "__typename": [ 78 @@ -100501,10 +105099,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100512,19 +105110,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4340 + 4640 ], "_not": [ - 4340 + 4640 ], "_or": [ - 4340 + 4640 ], "created_at": [ - 4025 + 4325 ], "id": [ - 4464 + 4764 ], "manual": [ 4 @@ -100536,31 +105134,31 @@ export default { 80 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "tournament_team": [ - 4296 + 4596 ], "tournament_team_id": [ - 4464 + 4764 ], "trophy_config": [ - 4383 + 4683 ], "__typename": [ 78 @@ -100580,10 +105178,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "manual": [ 3 @@ -100592,31 +105190,31 @@ export default { 38 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team": [ - 4305 + 4605 ], "tournament_team_id": [ - 4462 + 4762 ], "trophy_config": [ - 4392 + 4692 ], "__typename": [ 78 @@ -100624,10 +105222,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "placement": [ 38 @@ -100639,13 +105237,13 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -100653,28 +105251,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "placement_tier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100682,10 +105280,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "placement": [ 38 @@ -100697,13 +105295,13 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -100711,28 +105309,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "placement_tier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "team_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100743,7 +105341,7 @@ export default { 38 ], "returning": [ - 4329 + 4629 ], "__typename": [ 78 @@ -100751,13 +105349,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4341 + 4641 ], "update_columns": [ - 4366 + 4666 ], "where": [ - 4340 + 4640 ], "__typename": [ 78 @@ -100765,46 +105363,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "manual": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "placement_tier": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team": [ - 4307 + 4607 ], "tournament_team_id": [ - 2481 + 2781 ], "trophy_config": [ - 4394 + 4694 ], "__typename": [ 78 @@ -100812,7 +105410,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -100823,10 +105421,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "manual": [ 3 @@ -100838,13 +105436,13 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -100863,10 +105461,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100885,10 +105483,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100907,10 +105505,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100918,7 +105516,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4363 + 4663 ], "ordering": [ 236 @@ -100929,10 +105527,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "id": [ - 4462 + 4762 ], "manual": [ 3 @@ -100947,13 +105545,13 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -100972,10 +105570,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -100984,13 +105582,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4342 + 4642 ], "_set": [ - 4355 + 4655 ], "where": [ - 4340 + 4640 ], "__typename": [ 78 @@ -101009,10 +105607,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101031,10 +105629,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101053,10 +105651,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101064,13 +105662,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4024 + 4324 ], "custom_name": [ 78 ], "id": [ - 4462 + 4762 ], "image_url": [ 78 @@ -101082,13 +105680,13 @@ export default { 38 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -101096,10 +105694,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4378 + 4678 ], "nodes": [ - 4374 + 4674 ], "__typename": [ 78 @@ -101107,7 +105705,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4377 + 4677 ], "__typename": [ 78 @@ -101115,13 +105713,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4396 + 4696 ], "distinct": [ 3 ], "filter": [ - 4383 + 4683 ], "predicate": [ 39 @@ -101132,13 +105730,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4381 + 4681 ], "count": [ 38, { "columns": [ - 4396, + 4696, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -101147,31 +105745,31 @@ export default { } ], "max": [ - 4387 + 4687 ], "min": [ - 4389 + 4689 ], "stddev": [ - 4398 + 4698 ], "stddev_pop": [ - 4400 + 4700 ], "stddev_samp": [ - 4402 + 4702 ], "sum": [ - 4406 + 4706 ], "var_pop": [ - 4410 + 4710 ], "var_samp": [ - 4412 + 4712 ], "variance": [ - 4414 + 4714 ], "__typename": [ 78 @@ -101179,37 +105777,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4382 + 4682 ], "count": [ - 2481 + 2781 ], "max": [ - 4388 + 4688 ], "min": [ - 4390 + 4690 ], "stddev": [ - 4399 + 4699 ], "stddev_pop": [ - 4401 + 4701 ], "stddev_samp": [ - 4403 + 4703 ], "sum": [ - 4407 + 4707 ], "var_pop": [ - 4411 + 4711 ], "var_samp": [ - 4413 + 4713 ], "variance": [ - 4415 + 4715 ], "__typename": [ 78 @@ -101217,10 +105815,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4386 + 4686 ], "on_conflict": [ - 4393 + 4693 ], "__typename": [ 78 @@ -101239,10 +105837,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101250,22 +105848,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4383 + 4683 ], "_not": [ - 4383 + 4683 ], "_or": [ - 4383 + 4683 ], "created_at": [ - 4025 + 4325 ], "custom_name": [ 80 ], "id": [ - 4464 + 4764 ], "image_url": [ 80 @@ -101277,13 +105875,13 @@ export default { 39 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "updated_at": [ - 4025 + 4325 ], "__typename": [ 78 @@ -101303,13 +105901,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4024 + 4324 ], "custom_name": [ 78 ], "id": [ - 4462 + 4762 ], "image_url": [ 78 @@ -101321,13 +105919,13 @@ export default { 38 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -101335,13 +105933,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4024 + 4324 ], "custom_name": [ 78 ], "id": [ - 4462 + 4762 ], "image_url": [ 78 @@ -101353,10 +105951,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -101364,28 +105962,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2481 + 2781 ], "custom_name": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "image_url": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101393,13 +105991,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4024 + 4324 ], "custom_name": [ 78 ], "id": [ - 4462 + 4762 ], "image_url": [ 78 @@ -101411,10 +106009,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -101422,28 +106020,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2481 + 2781 ], "custom_name": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "image_url": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101454,7 +106052,7 @@ export default { 38 ], "returning": [ - 4374 + 4674 ], "__typename": [ 78 @@ -101462,10 +106060,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4386 + 4686 ], "on_conflict": [ - 4393 + 4693 ], "__typename": [ 78 @@ -101473,13 +106071,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4384 + 4684 ], "update_columns": [ - 4408 + 4708 ], "where": [ - 4383 + 4683 ], "__typename": [ 78 @@ -101487,31 +106085,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2481 + 2781 ], "custom_name": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "image_url": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "updated_at": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101519,7 +106117,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -101528,13 +106126,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4024 + 4324 ], "custom_name": [ 78 ], "id": [ - 4462 + 4762 ], "image_url": [ 78 @@ -101546,10 +106144,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -101568,10 +106166,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101590,10 +106188,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101612,10 +106210,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101623,7 +106221,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4405 + 4705 ], "ordering": [ 236 @@ -101634,13 +106232,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4024 + 4324 ], "custom_name": [ 78 ], "id": [ - 4462 + 4762 ], "image_url": [ 78 @@ -101652,10 +106250,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "updated_at": [ - 4024 + 4324 ], "__typename": [ 78 @@ -101674,10 +106272,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101686,13 +106284,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4385 + 4685 ], "_set": [ - 4397 + 4697 ], "where": [ - 4383 + 4683 ], "__typename": [ 78 @@ -101711,10 +106309,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101733,10 +106331,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101755,10 +106353,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2481 + 2781 ], "silhouette": [ - 2481 + 2781 ], "__typename": [ 78 @@ -101766,7 +106364,7 @@ export default { }, "tournaments": { "admin": [ - 3439 + 3739 ], "auto_start": [ 3 @@ -101796,7 +106394,7 @@ export default { 3 ], "created_at": [ - 4024 + 4324 ], "description": [ 78 @@ -101853,13 +106451,13 @@ export default { 78 ], "e_tournament_status": [ - 1119 + 1159 ], "has_min_teams": [ 3 ], "id": [ - 4462 + 4762 ], "is_league": [ 3 @@ -101871,10 +106469,10 @@ export default { 3 ], "league_season_division": [ - 1530 + 1830 ], "match_options_id": [ - 4462 + 4762 ], "max_players_per_lineup": [ 38 @@ -101886,16 +106484,16 @@ export default { 78 ], "options": [ - 2176 + 2476 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4072, + 4372, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101905,19 +106503,19 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "organizers_aggregate": [ - 4073, + 4373, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101927,19 +106525,19 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "player_stats": [ - 5246, + 5597, { "distinct_on": [ - 5272, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101949,19 +106547,19 @@ export default { 38 ], "order_by": [ - 5271, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5616 ] } ], "player_stats_aggregate": [ - 5247, + 5598, { "distinct_on": [ - 5272, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101971,19 +106569,19 @@ export default { 38 ], "order_by": [ - 5271, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5616 ] } ], "results": [ - 5195, + 5546, { "distinct_on": [ - 5221, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -101993,19 +106591,19 @@ export default { 38 ], "order_by": [ - 5220, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5565 ] } ], "results_aggregate": [ - 5196, + 5547, { "distinct_on": [ - 5221, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -102015,19 +106613,19 @@ export default { 38 ], "order_by": [ - 5220, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5565 ] } ], "rosters": [ - 4246, + 4546, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102037,19 +106635,19 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "rosters_aggregate": [ - 4247, + 4547, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102059,11 +106657,11 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], @@ -102071,10 +106669,10 @@ export default { 78 ], "stages": [ - 4154, + 4454, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -102084,19 +106682,19 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], "stages_aggregate": [ - 4155, + 4455, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -102106,25 +106704,25 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], "start": [ - 4024 + 4324 ], "status": [ - 1124 + 1164 ], "teams": [ - 4287, + 4587, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -102134,19 +106732,19 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], "teams_aggregate": [ - 4288, + 4588, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -102156,19 +106754,19 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], "trophies": [ - 4329, + 4629, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -102178,19 +106776,19 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], "trophies_aggregate": [ - 4330, + 4630, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -102200,11 +106798,11 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], @@ -102212,10 +106810,10 @@ export default { 3 ], "trophy_configs": [ - 4374, + 4674, { "distinct_on": [ - 4396, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -102225,452 +106823,955 @@ export default { 38 ], "order_by": [ - 4394, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4683 + ] + } + ], + "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 + ] + } + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate": { + "aggregate": [ + 4722 + ], + "nodes": [ + 4716 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp": { + "bool_and": [ + 4719 + ], + "bool_or": [ + 4720 + ], + "count": [ + 4721 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_bool_and": { + "arguments": [ + 4741 + ], + "distinct": [ + 3 + ], + "filter": [ + 4727 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_bool_or": { + "arguments": [ + 4742 + ], + "distinct": [ + 3 + ], + "filter": [ + 4727 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_count": { + "arguments": [ + 4740 + ], + "distinct": [ + 3 + ], + "filter": [ + 4727 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_fields": { + "avg": [ + 4725 + ], + "count": [ + 38, + { + "columns": [ + 4740, + "[tournaments_select_column!]" + ], + "distinct": [ + 3 ] } ], - "trophy_configs_aggregate": [ - 4375, - { - "distinct_on": [ - 4396, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4394, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4383 - ] - } + "max": [ + 4731 + ], + "min": [ + 4733 + ], + "stddev": [ + 4744 + ], + "stddev_pop": [ + 4746 + ], + "stddev_samp": [ + 4748 + ], + "sum": [ + 4752 + ], + "var_pop": [ + 4756 + ], + "var_samp": [ + 4758 + ], + "variance": [ + 4760 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_order_by": { + "avg": [ + 4726 + ], + "count": [ + 2781 + ], + "max": [ + 4732 + ], + "min": [ + 4734 + ], + "stddev": [ + 4745 + ], + "stddev_pop": [ + 4747 + ], + "stddev_samp": [ + 4749 + ], + "sum": [ + 4753 + ], + "var_pop": [ + 4757 + ], + "var_samp": [ + 4759 + ], + "variance": [ + 4761 + ], + "__typename": [ + 78 + ] + }, + "tournaments_arr_rel_insert_input": { + "data": [ + 4730 + ], + "on_conflict": [ + 4737 + ], + "__typename": [ + 78 + ] + }, + "tournaments_avg_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_avg_order_by": { + "organizer_steam_id": [ + 2781 + ], + "__typename": [ + 78 + ] + }, + "tournaments_bool_exp": { + "_and": [ + 4727 + ], + "_not": [ + 4727 + ], + "_or": [ + 4727 + ], + "admin": [ + 3743 + ], + "auto_start": [ + 4 + ], + "can_cancel": [ + 4 + ], + "can_close_registration": [ + 4 + ], + "can_join": [ + 4 + ], + "can_open_registration": [ + 4 + ], + "can_pause": [ + 4 + ], + "can_resume": [ + 4 + ], + "can_setup": [ + 4 + ], + "can_start": [ + 4 + ], + "created_at": [ + 4325 + ], + "description": [ + 80 + ], + "discord_guild_id": [ + 80 + ], + "discord_notifications_enabled": [ + 4 + ], + "discord_notify_Canceled": [ + 4 + ], + "discord_notify_Finished": [ + 4 + ], + "discord_notify_Forfeit": [ + 4 + ], + "discord_notify_Live": [ + 4 + ], + "discord_notify_MapPaused": [ + 4 + ], + "discord_notify_PickingPlayers": [ + 4 + ], + "discord_notify_Scheduled": [ + 4 + ], + "discord_notify_Surrendered": [ + 4 + ], + "discord_notify_Tie": [ + 4 + ], + "discord_notify_Veto": [ + 4 + ], + "discord_notify_WaitingForCheckIn": [ + 4 + ], + "discord_notify_WaitingForServer": [ + 4 + ], + "discord_role_id": [ + 80 + ], + "discord_voice_enabled": [ + 4 + ], + "discord_webhook": [ + 80 + ], + "e_tournament_status": [ + 1162 + ], + "has_min_teams": [ + 4 + ], + "id": [ + 4764 + ], + "is_league": [ + 4 + ], + "is_organizer": [ + 4 + ], + "joined_tournament": [ + 4 + ], + "league_season_division": [ + 1837 + ], + "match_options_id": [ + 4764 + ], + "max_players_per_lineup": [ + 39 + ], + "min_players_per_lineup": [ + 39 + ], + "name": [ + 80 + ], + "options": [ + 2480 + ], + "organizer_steam_id": [ + 182 + ], + "organizers": [ + 4381 + ], + "organizers_aggregate": [ + 4374 + ], + "player_stats": [ + 5616 + ], + "player_stats_aggregate": [ + 5599 + ], + "results": [ + 5565 + ], + "results_aggregate": [ + 5548 + ], + "rosters": [ + 4555 + ], + "rosters_aggregate": [ + 4548 + ], + "scheduling_mode": [ + 80 + ], + "stages": [ + 4466 + ], + "stages_aggregate": [ + 4456 + ], + "start": [ + 4325 + ], + "status": [ + 1165 + ], + "teams": [ + 4596 + ], + "teams_aggregate": [ + 4589 + ], + "trophies": [ + 4640 + ], + "trophies_aggregate": [ + 4631 + ], + "trophies_enabled": [ + 4 + ], + "trophy_configs": [ + 4683 + ], + "trophy_configs_aggregate": [ + 4676 + ], + "__typename": [ + 78 + ] + }, + "tournaments_constraint": {}, + "tournaments_inc_input": { + "organizer_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "tournaments_insert_input": { + "admin": [ + 3750 + ], + "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 + ], + "e_tournament_status": [ + 1170 + ], + "id": [ + 4762 + ], + "is_league": [ + 3 + ], + "league_season_division": [ + 1845 + ], + "match_options_id": [ + 4762 + ], + "name": [ + 78 + ], + "options": [ + 2487 + ], + "organizer_steam_id": [ + 180 + ], + "organizers": [ + 4378 + ], + "player_stats": [ + 5613 + ], + "results": [ + 5562 + ], + "rosters": [ + 4552 + ], + "scheduling_mode": [ + 78 + ], + "stages": [ + 4463 + ], + "start": [ + 4324 + ], + "status": [ + 1164 + ], + "teams": [ + 4593 + ], + "trophies": [ + 4637 + ], + "trophies_enabled": [ + 3 + ], + "trophy_configs": [ + 4680 ], "__typename": [ 78 ] }, - "tournaments_aggregate": { - "aggregate": [ - 4422 - ], - "nodes": [ - 4416 + "tournaments_max_fields": { + "created_at": [ + 4324 ], - "__typename": [ + "description": [ 78 - ] - }, - "tournaments_aggregate_bool_exp": { - "bool_and": [ - 4419 ], - "bool_or": [ - 4420 + "discord_guild_id": [ + 78 ], - "count": [ - 4421 + "discord_role_id": [ + 78 ], - "__typename": [ + "discord_webhook": [ 78 - ] - }, - "tournaments_aggregate_bool_exp_bool_and": { - "arguments": [ - 4441 ], - "distinct": [ - 3 + "id": [ + 4762 ], - "filter": [ - 4427 + "match_options_id": [ + 4762 ], - "predicate": [ - 4 + "max_players_per_lineup": [ + 38 ], - "__typename": [ + "min_players_per_lineup": [ + 38 + ], + "name": [ 78 - ] - }, - "tournaments_aggregate_bool_exp_bool_or": { - "arguments": [ - 4442 ], - "distinct": [ - 3 + "organizer_steam_id": [ + 180 ], - "filter": [ - 4427 + "scheduling_mode": [ + 78 ], - "predicate": [ - 4 + "start": [ + 4324 ], "__typename": [ 78 ] }, - "tournaments_aggregate_bool_exp_count": { - "arguments": [ - 4440 + "tournaments_max_order_by": { + "created_at": [ + 2781 ], - "distinct": [ - 3 + "description": [ + 2781 ], - "filter": [ - 4427 + "discord_guild_id": [ + 2781 ], - "predicate": [ - 39 + "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_aggregate_fields": { - "avg": [ - 4425 + "tournaments_min_fields": { + "created_at": [ + 4324 ], - "count": [ - 38, - { - "columns": [ - 4440, - "[tournaments_select_column!]" - ], - "distinct": [ - 3 - ] - } + "description": [ + 78 ], - "max": [ - 4431 + "discord_guild_id": [ + 78 ], - "min": [ - 4433 + "discord_role_id": [ + 78 ], - "stddev": [ - 4444 + "discord_webhook": [ + 78 ], - "stddev_pop": [ - 4446 + "id": [ + 4762 ], - "stddev_samp": [ - 4448 + "match_options_id": [ + 4762 ], - "sum": [ - 4452 + "max_players_per_lineup": [ + 38 ], - "var_pop": [ - 4456 + "min_players_per_lineup": [ + 38 ], - "var_samp": [ - 4458 + "name": [ + 78 ], - "variance": [ - 4460 + "organizer_steam_id": [ + 180 + ], + "scheduling_mode": [ + 78 + ], + "start": [ + 4324 ], "__typename": [ 78 ] }, - "tournaments_aggregate_order_by": { - "avg": [ - 4426 + "tournaments_min_order_by": { + "created_at": [ + 2781 ], - "count": [ - 2481 + "description": [ + 2781 ], - "max": [ - 4432 + "discord_guild_id": [ + 2781 ], - "min": [ - 4434 + "discord_role_id": [ + 2781 ], - "stddev": [ - 4445 + "discord_webhook": [ + 2781 ], - "stddev_pop": [ - 4447 + "id": [ + 2781 ], - "stddev_samp": [ - 4449 + "match_options_id": [ + 2781 ], - "sum": [ - 4453 + "name": [ + 2781 ], - "var_pop": [ - 4457 + "organizer_steam_id": [ + 2781 ], - "var_samp": [ - 4459 + "scheduling_mode": [ + 2781 ], - "variance": [ - 4461 + "start": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_arr_rel_insert_input": { - "data": [ - 4430 + "tournaments_mutation_response": { + "affected_rows": [ + 38 ], - "on_conflict": [ - 4437 + "returning": [ + 4716 ], "__typename": [ 78 ] }, - "tournaments_avg_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 + "tournaments_obj_rel_insert_input": { + "data": [ + 4730 ], - "organizer_steam_id": [ - 29 + "on_conflict": [ + 4737 ], "__typename": [ 78 ] }, - "tournaments_avg_order_by": { - "organizer_steam_id": [ - 2481 + "tournaments_on_conflict": { + "constraint": [ + 4728 + ], + "update_columns": [ + 4754 + ], + "where": [ + 4727 ], "__typename": [ 78 ] }, - "tournaments_bool_exp": { - "_and": [ - 4427 - ], - "_not": [ - 4427 - ], - "_or": [ - 4427 - ], + "tournaments_order_by": { "admin": [ - 3443 + 3752 ], "auto_start": [ - 4 + 2781 ], "can_cancel": [ - 4 + 2781 ], "can_close_registration": [ - 4 + 2781 ], "can_join": [ - 4 + 2781 ], "can_open_registration": [ - 4 + 2781 ], "can_pause": [ - 4 + 2781 ], "can_resume": [ - 4 + 2781 ], "can_setup": [ - 4 + 2781 ], "can_start": [ - 4 + 2781 ], "created_at": [ - 4025 + 2781 ], "description": [ - 80 + 2781 ], "discord_guild_id": [ - 80 + 2781 ], "discord_notifications_enabled": [ - 4 + 2781 ], "discord_notify_Canceled": [ - 4 + 2781 ], "discord_notify_Finished": [ - 4 + 2781 ], "discord_notify_Forfeit": [ - 4 + 2781 ], "discord_notify_Live": [ - 4 + 2781 ], "discord_notify_MapPaused": [ - 4 + 2781 ], "discord_notify_PickingPlayers": [ - 4 + 2781 ], "discord_notify_Scheduled": [ - 4 + 2781 ], "discord_notify_Surrendered": [ - 4 + 2781 ], "discord_notify_Tie": [ - 4 + 2781 ], "discord_notify_Veto": [ - 4 + 2781 ], "discord_notify_WaitingForCheckIn": [ - 4 + 2781 ], "discord_notify_WaitingForServer": [ - 4 + 2781 ], "discord_role_id": [ - 80 + 2781 ], "discord_voice_enabled": [ - 4 + 2781 ], "discord_webhook": [ - 80 + 2781 ], "e_tournament_status": [ - 1122 + 1172 ], "has_min_teams": [ - 4 + 2781 ], "id": [ - 4464 + 2781 ], "is_league": [ - 4 + 2781 ], "is_organizer": [ - 4 + 2781 ], "joined_tournament": [ - 4 + 2781 ], "league_season_division": [ - 1537 + 1847 ], "match_options_id": [ - 4464 + 2781 ], "max_players_per_lineup": [ - 39 + 2781 ], "min_players_per_lineup": [ - 39 + 2781 ], "name": [ - 80 + 2781 ], "options": [ - 2180 + 2489 ], "organizer_steam_id": [ - 182 - ], - "organizers": [ - 4081 + 2781 ], "organizers_aggregate": [ - 4074 - ], - "player_stats": [ - 5265 + 4377 ], "player_stats_aggregate": [ - 5248 - ], - "results": [ - 5214 + 5612 ], "results_aggregate": [ - 5197 - ], - "rosters": [ - 4255 + 5561 ], "rosters_aggregate": [ - 4248 + 4551 ], "scheduling_mode": [ - 80 - ], - "stages": [ - 4166 + 2781 ], "stages_aggregate": [ - 4156 + 4461 ], "start": [ - 4025 + 2781 ], "status": [ - 1125 - ], - "teams": [ - 4296 + 2781 ], "teams_aggregate": [ - 4289 - ], - "trophies": [ - 4340 + 4592 ], "trophies_aggregate": [ - 4331 + 4636 ], "trophies_enabled": [ - 4 - ], - "trophy_configs": [ - 4383 + 2781 ], "trophy_configs_aggregate": [ - 4376 + 4679 ], "__typename": [ 78 ] }, - "tournaments_constraint": {}, - "tournaments_inc_input": { - "organizer_steam_id": [ - 180 + "tournaments_pk_columns_input": { + "id": [ + 4762 ], "__typename": [ 78 ] }, - "tournaments_insert_input": { - "admin": [ - 3450 - ], + "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": [ - 4024 + 4324 ], "description": [ 78 @@ -102726,73 +107827,120 @@ export default { "discord_webhook": [ 78 ], - "e_tournament_status": [ - 1130 - ], "id": [ - 4462 + 4762 ], "is_league": [ 3 ], - "league_season_division": [ - 1545 - ], "match_options_id": [ - 4462 + 4762 ], "name": [ 78 ], - "options": [ - 2187 - ], "organizer_steam_id": [ 180 ], - "organizers": [ - 4078 + "scheduling_mode": [ + 78 ], - "player_stats": [ - 5262 + "start": [ + 4324 ], - "results": [ - 5211 + "status": [ + 1164 ], - "rosters": [ - 4252 + "trophies_enabled": [ + 3 ], - "scheduling_mode": [ + "__typename": [ 78 + ] + }, + "tournaments_stddev_fields": { + "max_players_per_lineup": [ + 38 ], - "stages": [ - 4163 + "min_players_per_lineup": [ + 38 ], - "start": [ - 4024 + "organizer_steam_id": [ + 29 ], - "status": [ - 1124 + "__typename": [ + 78 + ] + }, + "tournaments_stddev_order_by": { + "organizer_steam_id": [ + 2781 ], - "teams": [ - 4293 + "__typename": [ + 78 + ] + }, + "tournaments_stddev_pop_fields": { + "max_players_per_lineup": [ + 38 ], - "trophies": [ - 4337 + "min_players_per_lineup": [ + 38 ], - "trophies_enabled": [ - 3 + "organizer_steam_id": [ + 29 ], - "trophy_configs": [ - 4380 + "__typename": [ + 78 + ] + }, + "tournaments_stddev_pop_order_by": { + "organizer_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_max_fields": { + "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": [ - 4024 + 4324 ], "description": [ 78 @@ -102800,535 +107948,1103 @@ 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": [ - 4462 + 4762 + ], + "is_league": [ + 3 ], "match_options_id": [ - 4462 + 4762 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ + 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 ], - "name": [ + "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 ], - "scheduling_mode": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate": { + "aggregate": [ + 4779 ], - "start": [ - 4024 + "nodes": [ + 4765 ], "__typename": [ 78 ] }, - "tournaments_max_order_by": { - "created_at": [ - 2481 + "v_event_player_stats_aggregate_bool_exp": { + "avg": [ + 4768 ], - "description": [ - 2481 + "corr": [ + 4769 ], - "discord_guild_id": [ - 2481 + "count": [ + 4771 ], - "discord_role_id": [ - 2481 + "covar_samp": [ + 4772 ], - "discord_webhook": [ - 2481 + "max": [ + 4774 ], - "id": [ - 2481 + "min": [ + 4775 ], - "match_options_id": [ - 2481 + "stddev_samp": [ + 4776 ], - "name": [ - 2481 + "sum": [ + 4777 ], - "organizer_steam_id": [ - 2481 + "var_samp": [ + 4778 ], - "scheduling_mode": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_avg": { + "arguments": [ + 4792 ], - "start": [ - 2481 + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 ], "__typename": [ 78 ] }, - "tournaments_min_fields": { - "created_at": [ - 4024 + "v_event_player_stats_aggregate_bool_exp_corr": { + "arguments": [ + 4770 ], - "description": [ + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 + ], + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_corr_arguments": { + "X": [ + 4793 ], - "discord_guild_id": [ + "Y": [ + 4793 + ], + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_count": { + "arguments": [ + 4791 ], - "discord_role_id": [ + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 39 + ], + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_covar_samp": { + "arguments": [ + 4773 ], - "discord_webhook": [ + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 + ], + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 4794 ], - "id": [ - 4462 + "Y": [ + 4794 ], - "match_options_id": [ - 4462 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_max": { + "arguments": [ + 4795 + ], + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_min": { + "arguments": [ + 4796 + ], + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 4797 + ], + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_sum": { + "arguments": [ + 4798 + ], + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_var_samp": { + "arguments": [ + 4799 + ], + "distinct": [ + 3 + ], + "filter": [ + 4784 + ], + "predicate": [ + 1500 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_fields": { + "avg": [ + 4782 + ], + "count": [ + 38, + { + "columns": [ + 4791, + "[v_event_player_stats_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 4786 + ], + "min": [ + 4788 + ], + "stddev": [ + 4800 ], - "max_players_per_lineup": [ - 38 + "stddev_pop": [ + 4802 ], - "min_players_per_lineup": [ - 38 + "stddev_samp": [ + 4804 ], - "name": [ - 78 + "sum": [ + 4808 ], - "organizer_steam_id": [ - 180 + "var_pop": [ + 4810 ], - "scheduling_mode": [ - 78 + "var_samp": [ + 4812 ], - "start": [ - 4024 + "variance": [ + 4814 ], "__typename": [ 78 ] }, - "tournaments_min_order_by": { - "created_at": [ - 2481 + "v_event_player_stats_aggregate_order_by": { + "avg": [ + 4783 ], - "description": [ - 2481 + "count": [ + 2781 ], - "discord_guild_id": [ - 2481 + "max": [ + 4787 ], - "discord_role_id": [ - 2481 + "min": [ + 4789 ], - "discord_webhook": [ - 2481 + "stddev": [ + 4801 ], - "id": [ - 2481 + "stddev_pop": [ + 4803 ], - "match_options_id": [ - 2481 + "stddev_samp": [ + 4805 ], - "name": [ - 2481 + "sum": [ + 4809 ], - "organizer_steam_id": [ - 2481 + "var_pop": [ + 4811 ], - "scheduling_mode": [ - 2481 + "var_samp": [ + 4813 ], - "start": [ - 2481 + "variance": [ + 4815 ], "__typename": [ 78 ] }, - "tournaments_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 4416 + "v_event_player_stats_arr_rel_insert_input": { + "data": [ + 4785 ], "__typename": [ 78 ] }, - "tournaments_obj_rel_insert_input": { - "data": [ - 4430 + "v_event_player_stats_avg_fields": { + "assists": [ + 29 ], - "on_conflict": [ - 4437 + "deaths": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_on_conflict": { - "constraint": [ - 4428 + "headshot_percentage": [ + 29 ], - "update_columns": [ - 4454 + "headshots": [ + 29 ], - "where": [ - 4427 + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "tournaments_order_by": { - "admin": [ - 3452 - ], - "auto_start": [ - 2481 - ], - "can_cancel": [ - 2481 - ], - "can_close_registration": [ - 2481 + "v_event_player_stats_avg_order_by": { + "assists": [ + 2781 ], - "can_join": [ - 2481 + "deaths": [ + 2781 ], - "can_open_registration": [ - 2481 + "headshot_percentage": [ + 2781 ], - "can_pause": [ - 2481 + "headshots": [ + 2781 ], - "can_resume": [ - 2481 + "kdr": [ + 2781 ], - "can_setup": [ - 2481 + "kills": [ + 2781 ], - "can_start": [ - 2481 + "matches_played": [ + 2781 ], - "created_at": [ - 2481 + "player_steam_id": [ + 2781 ], - "description": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_bool_exp": { + "_and": [ + 4784 ], - "discord_guild_id": [ - 2481 + "_not": [ + 4784 ], - "discord_notifications_enabled": [ - 2481 + "_or": [ + 4784 ], - "discord_notify_Canceled": [ - 2481 + "assists": [ + 39 ], - "discord_notify_Finished": [ - 2481 + "deaths": [ + 39 ], - "discord_notify_Forfeit": [ - 2481 + "event": [ + 1475 ], - "discord_notify_Live": [ - 2481 + "event_id": [ + 4764 ], - "discord_notify_MapPaused": [ - 2481 + "headshot_percentage": [ + 1500 ], - "discord_notify_PickingPlayers": [ - 2481 + "headshots": [ + 39 ], - "discord_notify_Scheduled": [ - 2481 + "kdr": [ + 1500 ], - "discord_notify_Surrendered": [ - 2481 + "kills": [ + 39 ], - "discord_notify_Tie": [ - 2481 + "matches_played": [ + 39 ], - "discord_notify_Veto": [ - 2481 + "player": [ + 3743 ], - "discord_notify_WaitingForCheckIn": [ - 2481 + "player_steam_id": [ + 182 ], - "discord_notify_WaitingForServer": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_insert_input": { + "assists": [ + 38 ], - "discord_role_id": [ - 2481 + "deaths": [ + 38 ], - "discord_voice_enabled": [ - 2481 + "event": [ + 1482 ], - "discord_webhook": [ - 2481 + "event_id": [ + 4762 ], - "e_tournament_status": [ - 1132 + "headshot_percentage": [ + 1499 ], - "has_min_teams": [ - 2481 + "headshots": [ + 38 ], - "id": [ - 2481 + "kdr": [ + 1499 ], - "is_league": [ - 2481 + "kills": [ + 38 ], - "is_organizer": [ - 2481 + "matches_played": [ + 38 ], - "joined_tournament": [ - 2481 + "player": [ + 3750 ], - "league_season_division": [ - 1547 + "player_steam_id": [ + 180 ], - "match_options_id": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_max_fields": { + "assists": [ + 38 ], - "max_players_per_lineup": [ - 2481 + "deaths": [ + 38 ], - "min_players_per_lineup": [ - 2481 + "event_id": [ + 4762 ], - "name": [ - 2481 + "headshot_percentage": [ + 1499 ], - "options": [ - 2189 + "headshots": [ + 38 ], - "organizer_steam_id": [ - 2481 + "kdr": [ + 1499 ], - "organizers_aggregate": [ - 4077 + "kills": [ + 38 ], - "player_stats_aggregate": [ - 5261 + "matches_played": [ + 38 ], - "results_aggregate": [ - 5210 + "player_steam_id": [ + 180 ], - "rosters_aggregate": [ - 4251 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_max_order_by": { + "assists": [ + 2781 ], - "scheduling_mode": [ - 2481 + "deaths": [ + 2781 ], - "stages_aggregate": [ - 4161 + "event_id": [ + 2781 ], - "start": [ - 2481 + "headshot_percentage": [ + 2781 ], - "status": [ - 2481 + "headshots": [ + 2781 ], - "teams_aggregate": [ - 4292 + "kdr": [ + 2781 ], - "trophies_aggregate": [ - 4336 + "kills": [ + 2781 ], - "trophies_enabled": [ - 2481 + "matches_played": [ + 2781 ], - "trophy_configs_aggregate": [ - 4379 + "player_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_pk_columns_input": { - "id": [ - 4462 + "v_event_player_stats_min_fields": { + "assists": [ + 38 ], - "__typename": [ - 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 + "deaths": [ + 38 ], - "created_at": [ - 4024 + "event_id": [ + 4762 ], - "description": [ - 78 + "headshot_percentage": [ + 1499 ], - "discord_guild_id": [ - 78 + "headshots": [ + 38 ], - "discord_notifications_enabled": [ - 3 + "kdr": [ + 1499 ], - "discord_notify_Canceled": [ - 3 + "kills": [ + 38 ], - "discord_notify_Finished": [ - 3 + "matches_played": [ + 38 ], - "discord_notify_Forfeit": [ - 3 + "player_steam_id": [ + 180 ], - "discord_notify_Live": [ - 3 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_min_order_by": { + "assists": [ + 2781 ], - "discord_notify_MapPaused": [ - 3 + "deaths": [ + 2781 ], - "discord_notify_PickingPlayers": [ - 3 + "event_id": [ + 2781 ], - "discord_notify_Scheduled": [ - 3 + "headshot_percentage": [ + 2781 ], - "discord_notify_Surrendered": [ - 3 + "headshots": [ + 2781 ], - "discord_notify_Tie": [ - 3 + "kdr": [ + 2781 ], - "discord_notify_Veto": [ - 3 + "kills": [ + 2781 ], - "discord_notify_WaitingForCheckIn": [ - 3 + "matches_played": [ + 2781 ], - "discord_notify_WaitingForServer": [ - 3 + "player_steam_id": [ + 2781 ], - "discord_role_id": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_order_by": { + "assists": [ + 2781 ], - "discord_voice_enabled": [ - 3 - ], - "discord_webhook": [ - 78 + "deaths": [ + 2781 ], - "id": [ - 4462 + "event": [ + 1484 ], - "is_league": [ - 3 + "event_id": [ + 2781 ], - "match_options_id": [ - 4462 + "headshot_percentage": [ + 2781 ], - "name": [ - 78 + "headshots": [ + 2781 ], - "organizer_steam_id": [ - 180 + "kdr": [ + 2781 ], - "scheduling_mode": [ - 78 + "kills": [ + 2781 ], - "start": [ - 4024 + "matches_played": [ + 2781 ], - "status": [ - 1124 + "player": [ + 3752 ], - "trophies_enabled": [ - 3 + "player_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_stddev_fields": { - "max_players_per_lineup": [ - 38 + "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 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_stddev_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_stddev_order_by": { + "assists": [ + 2781 + ], + "deaths": [ + 2781 + ], + "headshot_percentage": [ + 2781 + ], + "headshots": [ + 2781 + ], + "kdr": [ + 2781 + ], + "kills": [ + 2781 + ], + "matches_played": [ + 2781 + ], + "player_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_stddev_pop_fields": { - "max_players_per_lineup": [ - 38 + "v_event_player_stats_stddev_pop_fields": { + "assists": [ + 29 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_stddev_pop_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_stddev_pop_order_by": { + "assists": [ + 2781 + ], + "deaths": [ + 2781 + ], + "headshot_percentage": [ + 2781 + ], + "headshots": [ + 2781 + ], + "kdr": [ + 2781 + ], + "kills": [ + 2781 + ], + "matches_played": [ + 2781 + ], + "player_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_stddev_samp_fields": { - "max_players_per_lineup": [ - 38 + "v_event_player_stats_stddev_samp_fields": { + "assists": [ + 29 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_stddev_samp_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_stddev_samp_order_by": { + "assists": [ + 2781 + ], + "deaths": [ + 2781 + ], + "headshot_percentage": [ + 2781 + ], + "headshots": [ + 2781 + ], + "kdr": [ + 2781 + ], + "kills": [ + 2781 + ], + "matches_played": [ + 2781 + ], + "player_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_stream_cursor_input": { + "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 4451 + 4807 ], "ordering": [ 236 @@ -103337,267 +109053,265 @@ export default { 78 ] }, - "tournaments_stream_cursor_value_input": { - "auto_start": [ - 3 + "v_event_player_stats_stream_cursor_value_input": { + "assists": [ + 38 ], - "created_at": [ - 4024 + "deaths": [ + 38 ], - "description": [ - 78 + "event_id": [ + 4762 ], - "discord_guild_id": [ - 78 + "headshot_percentage": [ + 1499 ], - "discord_notifications_enabled": [ - 3 + "headshots": [ + 38 ], - "discord_notify_Canceled": [ - 3 + "kdr": [ + 1499 ], - "discord_notify_Finished": [ - 3 + "kills": [ + 38 ], - "discord_notify_Forfeit": [ - 3 + "matches_played": [ + 38 ], - "discord_notify_Live": [ - 3 + "player_steam_id": [ + 180 ], - "discord_notify_MapPaused": [ - 3 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_sum_fields": { + "assists": [ + 38 ], - "discord_notify_PickingPlayers": [ - 3 + "deaths": [ + 38 ], - "discord_notify_Scheduled": [ - 3 + "headshot_percentage": [ + 1499 ], - "discord_notify_Surrendered": [ - 3 + "headshots": [ + 38 ], - "discord_notify_Tie": [ - 3 + "kdr": [ + 1499 ], - "discord_notify_Veto": [ - 3 + "kills": [ + 38 ], - "discord_notify_WaitingForCheckIn": [ - 3 + "matches_played": [ + 38 ], - "discord_notify_WaitingForServer": [ - 3 + "player_steam_id": [ + 180 ], - "discord_role_id": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_sum_order_by": { + "assists": [ + 2781 ], - "discord_voice_enabled": [ - 3 + "deaths": [ + 2781 ], - "discord_webhook": [ - 78 + "headshot_percentage": [ + 2781 ], - "id": [ - 4462 + "headshots": [ + 2781 ], - "is_league": [ - 3 + "kdr": [ + 2781 ], - "match_options_id": [ - 4462 + "kills": [ + 2781 ], - "name": [ - 78 + "matches_played": [ + 2781 ], - "organizer_steam_id": [ - 180 + "player_steam_id": [ + 2781 ], - "scheduling_mode": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_var_pop_fields": { + "assists": [ + 29 ], - "start": [ - 4024 + "deaths": [ + 29 ], - "status": [ - 1124 + "headshot_percentage": [ + 29 ], - "trophies_enabled": [ - 3 + "headshots": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_sum_fields": { - "max_players_per_lineup": [ - 38 + "kdr": [ + 29 ], - "min_players_per_lineup": [ - 38 + "kills": [ + 29 ], - "organizer_steam_id": [ - 180 + "matches_played": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_sum_order_by": { - "organizer_steam_id": [ - 2481 + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "tournaments_update_column": {}, - "tournaments_updates": { - "_inc": [ - 4429 + "v_event_player_stats_var_pop_order_by": { + "assists": [ + 2781 ], - "_set": [ - 4443 + "deaths": [ + 2781 ], - "where": [ - 4427 + "headshot_percentage": [ + 2781 ], - "__typename": [ - 78 - ] - }, - "tournaments_var_pop_fields": { - "max_players_per_lineup": [ - 38 + "headshots": [ + 2781 ], - "min_players_per_lineup": [ - 38 + "kdr": [ + 2781 ], - "organizer_steam_id": [ - 29 + "kills": [ + 2781 ], - "__typename": [ - 78 - ] - }, - "tournaments_var_pop_order_by": { - "organizer_steam_id": [ - 2481 + "matches_played": [ + 2781 + ], + "player_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "tournaments_var_samp_fields": { - "max_players_per_lineup": [ - 38 + "v_event_player_stats_var_samp_fields": { + "assists": [ + 29 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_var_samp_order_by": { - "organizer_steam_id": [ - 2481 + "headshots": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_variance_fields": { - "max_players_per_lineup": [ - 38 + "kdr": [ + 29 ], - "min_players_per_lineup": [ - 38 + "kills": [ + 29 ], - "organizer_steam_id": [ + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_variance_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_var_samp_order_by": { + "assists": [ + 2781 + ], + "deaths": [ + 2781 + ], + "headshot_percentage": [ + 2781 + ], + "headshots": [ + 2781 + ], + "kdr": [ + 2781 + ], + "kills": [ + 2781 + ], + "matches_played": [ + 2781 + ], + "player_steam_id": [ + 2781 ], "__typename": [ 78 ] }, - "uuid": {}, - "uuid_array_comparison_exp": { - "_contained_in": [ - 4462 - ], - "_contains": [ - 4462 - ], - "_eq": [ - 4462 - ], - "_gt": [ - 4462 + "v_event_player_stats_variance_fields": { + "assists": [ + 29 ], - "_gte": [ - 4462 + "deaths": [ + 29 ], - "_in": [ - 4462 + "headshot_percentage": [ + 29 ], - "_is_null": [ - 3 + "headshots": [ + 29 ], - "_lt": [ - 4462 + "kdr": [ + 29 ], - "_lte": [ - 4462 + "kills": [ + 29 ], - "_neq": [ - 4462 + "matches_played": [ + 29 ], - "_nin": [ - 4462 + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "uuid_comparison_exp": { - "_eq": [ - 4462 - ], - "_gt": [ - 4462 + "v_event_player_stats_variance_order_by": { + "assists": [ + 2781 ], - "_gte": [ - 4462 + "deaths": [ + 2781 ], - "_in": [ - 4462 + "headshot_percentage": [ + 2781 ], - "_is_null": [ - 3 + "headshots": [ + 2781 ], - "_lt": [ - 4462 + "kdr": [ + 2781 ], - "_lte": [ - 4462 + "kills": [ + 2781 ], - "_neq": [ - 4462 + "matches_played": [ + 2781 ], - "_nin": [ - 4462 + "player_steam_id": [ + 2781 ], "__typename": [ 78 @@ -103652,10 +109366,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4467 + 4818 ], "nodes": [ - 4465 + 4816 ], "__typename": [ 78 @@ -103663,13 +109377,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4468 + 4819 ], "count": [ 38, { "columns": [ - 4473, + 4824, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -103678,31 +109392,31 @@ export default { } ], "max": [ - 4470 + 4821 ], "min": [ - 4471 + 4822 ], "stddev": [ - 4474 + 4825 ], "stddev_pop": [ - 4475 + 4826 ], "stddev_samp": [ - 4476 + 4827 ], "sum": [ - 4479 + 4830 ], "var_pop": [ - 4480 + 4831 ], "var_samp": [ - 4481 + 4832 ], "variance": [ - 4482 + 4833 ], "__typename": [ 78 @@ -103745,13 +109459,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4469 + 4820 ], "_not": [ - 4469 + 4820 ], "_or": [ - 4469 + 4820 ], "demo_free_gpu_nodes": [ 39 @@ -103871,46 +109585,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2481 + 2781 ], "demo_in_progress": [ - 2481 + 2781 ], "demo_total_gpu_nodes": [ - 2481 + 2781 ], "free_gpu_nodes": [ - 2481 + 2781 ], "free_gpu_nodes_for_batch": [ - 2481 + 2781 ], "highlights_in_progress": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "live_in_progress": [ - 2481 + 2781 ], "registered_gpu_nodes": [ - 2481 + 2781 ], "rendering_total_gpu_nodes": [ - 2481 + 2781 ], "renders_paused_for_active_match": [ - 2481 + 2781 ], "streaming_free_gpu_nodes": [ - 2481 + 2781 ], "streaming_total_gpu_nodes": [ - 2481 + 2781 ], "total_gpu_nodes": [ - 2481 + 2781 ], "__typename": [ 78 @@ -104024,7 +109738,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4478 + 4829 ], "ordering": [ 236 @@ -104228,22 +109942,22 @@ export default { 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1712 + 2012 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "losses": [ 38 @@ -104273,13 +109987,13 @@ export default { 38 ], "season_division": [ - 1530 + 1830 ], "team_season": [ - 1670 + 1970 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -104290,10 +110004,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4487 + 4838 ], "nodes": [ - 4483 + 4834 ], "__typename": [ 78 @@ -104301,7 +110015,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4486 + 4837 ], "__typename": [ 78 @@ -104309,13 +110023,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4499 + 4850 ], "distinct": [ 3 ], "filter": [ - 4492 + 4843 ], "predicate": [ 39 @@ -104326,13 +110040,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4490 + 4841 ], "count": [ 38, { "columns": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -104341,31 +110055,31 @@ export default { } ], "max": [ - 4494 + 4845 ], "min": [ - 4496 + 4847 ], "stddev": [ - 4500 + 4851 ], "stddev_pop": [ - 4502 + 4853 ], "stddev_samp": [ - 4504 + 4855 ], "sum": [ - 4508 + 4859 ], "var_pop": [ - 4510 + 4861 ], "var_samp": [ - 4512 + 4863 ], "variance": [ - 4514 + 4865 ], "__typename": [ 78 @@ -104373,37 +110087,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4491 + 4842 ], "count": [ - 2481 + 2781 ], "max": [ - 4495 + 4846 ], "min": [ - 4497 + 4848 ], "stddev": [ - 4501 + 4852 ], "stddev_pop": [ - 4503 + 4854 ], "stddev_samp": [ - 4505 + 4856 ], "sum": [ - 4509 + 4860 ], "var_pop": [ - 4511 + 4862 ], "var_samp": [ - 4513 + 4864 ], "variance": [ - 4515 + 4866 ], "__typename": [ 78 @@ -104411,7 +110125,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4493 + 4844 ], "__typename": [ 78 @@ -104460,40 +110174,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -104501,13 +110215,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4492 + 4843 ], "_not": [ - 4492 + 4843 ], "_or": [ - 4492 + 4843 ], "head_to_head_match_wins": [ 39 @@ -104516,22 +110230,22 @@ export default { 39 ], "league_division_id": [ - 4464 + 4764 ], "league_season_division_id": [ - 4464 + 4764 ], "league_season_id": [ - 4464 + 4764 ], "league_team": [ - 1715 + 2015 ], "league_team_id": [ - 4464 + 4764 ], "league_team_season_id": [ - 4464 + 4764 ], "losses": [ 39 @@ -104561,13 +110275,13 @@ export default { 39 ], "season_division": [ - 1537 + 1837 ], "team_season": [ - 1679 + 1979 ], "tournament_team_id": [ - 4464 + 4764 ], "wins": [ 39 @@ -104584,22 +110298,22 @@ export default { 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1721 + 2021 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "losses": [ 38 @@ -104629,13 +110343,13 @@ export default { 38 ], "season_division": [ - 1545 + 1845 ], "team_season": [ - 1688 + 1988 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -104652,19 +110366,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "losses": [ 38 @@ -104694,7 +110408,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -104705,58 +110419,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -104770,19 +110484,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "losses": [ 38 @@ -104812,7 +110526,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -104823,58 +110537,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -104882,67 +110596,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team": [ - 1723 + 2023 ], "league_team_id": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "season_division": [ - 1547 + 1847 ], "team_season": [ - 1690 + 1990 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -104992,40 +110706,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -105074,40 +110788,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -105156,40 +110870,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -105197,7 +110911,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4507 + 4858 ], "ordering": [ 236 @@ -105214,19 +110928,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "losses": [ 38 @@ -105256,7 +110970,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -105308,40 +111022,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -105390,40 +111104,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -105472,40 +111186,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -105554,40 +111268,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "round_diff": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -105601,40 +111315,40 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1712 + 2012 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "matches_played": [ 38 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 @@ -105645,10 +111359,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4530 + 4881 ], "nodes": [ - 4516 + 4867 ], "__typename": [ 78 @@ -105656,31 +111370,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4519 + 4870 ], "corr": [ - 4520 + 4871 ], "count": [ - 4522 + 4873 ], "covar_samp": [ - 4523 + 4874 ], "max": [ - 4525 + 4876 ], "min": [ - 4526 + 4877 ], "stddev_samp": [ - 4527 + 4878 ], "sum": [ - 4528 + 4879 ], "var_samp": [ - 4529 + 4880 ], "__typename": [ 78 @@ -105688,16 +111402,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4543 + 4894 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105705,16 +111419,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4521 + 4872 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105722,10 +111436,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4544 + 4895 ], "Y": [ - 4544 + 4895 ], "__typename": [ 78 @@ -105733,13 +111447,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4542 + 4893 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ 39 @@ -105750,16 +111464,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4524 + 4875 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105767,10 +111481,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4545 + 4896 ], "Y": [ - 4545 + 4896 ], "__typename": [ 78 @@ -105778,16 +111492,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4546 + 4897 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105795,16 +111509,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4547 + 4898 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105812,16 +111526,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4548 + 4899 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105829,16 +111543,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4549 + 4900 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105846,16 +111560,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4550 + 4901 ], "distinct": [ 3 ], "filter": [ - 4535 + 4886 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -105863,13 +111577,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4533 + 4884 ], "count": [ 38, { "columns": [ - 4542, + 4893, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -105878,31 +111592,31 @@ export default { } ], "max": [ - 4537 + 4888 ], "min": [ - 4539 + 4890 ], "stddev": [ - 4551 + 4902 ], "stddev_pop": [ - 4553 + 4904 ], "stddev_samp": [ - 4555 + 4906 ], "sum": [ - 4559 + 4910 ], "var_pop": [ - 4561 + 4912 ], "var_samp": [ - 4563 + 4914 ], "variance": [ - 4565 + 4916 ], "__typename": [ 78 @@ -105910,37 +111624,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4534 + 4885 ], "count": [ - 2481 + 2781 ], "max": [ - 4538 + 4889 ], "min": [ - 4540 + 4891 ], "stddev": [ - 4552 + 4903 ], "stddev_pop": [ - 4554 + 4905 ], "stddev_samp": [ - 4556 + 4907 ], "sum": [ - 4560 + 4911 ], "var_pop": [ - 4562 + 4913 ], "var_samp": [ - 4564 + 4915 ], "variance": [ - 4566 + 4917 ], "__typename": [ 78 @@ -105948,7 +111662,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4536 + 4887 ], "__typename": [ 78 @@ -105985,28 +111699,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106014,13 +111728,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4535 + 4886 ], "_not": [ - 4535 + 4886 ], "_or": [ - 4535 + 4886 ], "assists": [ 39 @@ -106029,40 +111743,40 @@ export default { 39 ], "headshot_percentage": [ - 1201 + 1500 ], "headshots": [ 39 ], "kdr": [ - 1201 + 1500 ], "kills": [ 39 ], "league_division_id": [ - 4464 + 4764 ], "league_season_division_id": [ - 4464 + 4764 ], "league_season_id": [ - 4464 + 4764 ], "league_team": [ - 1715 + 2015 ], "league_team_id": [ - 4464 + 4764 ], "league_team_season_id": [ - 4464 + 4764 ], "matches_played": [ 39 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 @@ -106079,40 +111793,40 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team": [ - 1721 + 2021 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "matches_played": [ 38 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 @@ -106129,31 +111843,31 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "matches_played": [ 38 @@ -106167,43 +111881,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106217,31 +111931,31 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "matches_played": [ 38 @@ -106255,43 +111969,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team_id": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106299,49 +112013,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "league_division_id": [ - 2481 + 2781 ], "league_season_division_id": [ - 2481 + 2781 ], "league_season_id": [ - 2481 + 2781 ], "league_team": [ - 1723 + 2023 ], "league_team_id": [ - 2481 + 2781 ], "league_team_season_id": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106387,28 +112101,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106445,28 +112159,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106503,28 +112217,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106532,7 +112246,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4558 + 4909 ], "ordering": [ 236 @@ -106549,31 +112263,31 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4762 ], "league_season_division_id": [ - 4462 + 4762 ], "league_season_id": [ - 4462 + 4762 ], "league_team_id": [ - 4462 + 4762 ], "league_team_season_id": [ - 4462 + 4762 ], "matches_played": [ 38 @@ -106593,13 +112307,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 @@ -106616,28 +112330,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106674,28 +112388,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106732,28 +112446,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106790,28 +112504,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -106825,19 +112539,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3439 + 3739 ], "steam_id": [ 180 @@ -106848,10 +112562,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4569 + 4920 ], "nodes": [ - 4567 + 4918 ], "__typename": [ 78 @@ -106859,13 +112573,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4570 + 4921 ], "count": [ 38, { "columns": [ - 4579, + 4930, "[v_match_captains_select_column!]" ], "distinct": [ @@ -106874,31 +112588,31 @@ export default { } ], "max": [ - 4574 + 4925 ], "min": [ - 4575 + 4926 ], "stddev": [ - 4581 + 4932 ], "stddev_pop": [ - 4582 + 4933 ], "stddev_samp": [ - 4583 + 4934 ], "sum": [ - 4586 + 4937 ], "var_pop": [ - 4588 + 4939 ], "var_samp": [ - 4589 + 4940 ], "variance": [ - 4590 + 4941 ], "__typename": [ 78 @@ -106914,13 +112628,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4571 + 4922 ], "_not": [ - 4571 + 4922 ], "_or": [ - 4571 + 4922 ], "captain": [ 4 @@ -106929,19 +112643,19 @@ export default { 80 ], "id": [ - 4464 + 4764 ], "lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "placeholder_name": [ 80 ], "player": [ - 3443 + 3743 ], "steam_id": [ 182 @@ -106966,19 +112680,19 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "lineup": [ - 1994 + 2294 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3450 + 3750 ], "steam_id": [ 180 @@ -106992,10 +112706,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -107012,10 +112726,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -107032,7 +112746,7 @@ export default { 38 ], "returning": [ - 4567 + 4918 ], "__typename": [ 78 @@ -107040,7 +112754,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4573 + 4924 ], "__typename": [ 78 @@ -107048,28 +112762,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2481 + 2781 ], "discord_id": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "placeholder_name": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107084,10 +112798,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -107125,7 +112839,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4585 + 4936 ], "ordering": [ 236 @@ -107142,10 +112856,10 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "placeholder_name": [ 78 @@ -107167,13 +112881,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4572 + 4923 ], "_set": [ - 4580 + 4931 ], "where": [ - 4571 + 4922 ], "__typename": [ 78 @@ -107208,7 +112922,7 @@ export default { 38 ], "clutcher": [ - 3439 + 3739 ], "clutcher_steam_id": [ 180 @@ -107217,22 +112931,22 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "outcome": [ 78 @@ -107249,10 +112963,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4595 + 4946 ], "nodes": [ - 4591 + 4942 ], "__typename": [ 78 @@ -107260,7 +112974,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4594 + 4945 ], "__typename": [ 78 @@ -107268,13 +112982,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4607 + 4958 ], "distinct": [ 3 ], "filter": [ - 4600 + 4951 ], "predicate": [ 39 @@ -107285,13 +112999,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4598 + 4949 ], "count": [ 38, { "columns": [ - 4607, + 4958, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -107300,31 +113014,31 @@ export default { } ], "max": [ - 4602 + 4953 ], "min": [ - 4604 + 4955 ], "stddev": [ - 4608 + 4959 ], "stddev_pop": [ - 4610 + 4961 ], "stddev_samp": [ - 4612 + 4963 ], "sum": [ - 4616 + 4967 ], "var_pop": [ - 4618 + 4969 ], "var_samp": [ - 4620 + 4971 ], "variance": [ - 4622 + 4973 ], "__typename": [ 78 @@ -107332,37 +113046,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4599 + 4950 ], "count": [ - 2481 + 2781 ], "max": [ - 4603 + 4954 ], "min": [ - 4605 + 4956 ], "stddev": [ - 4609 + 4960 ], "stddev_pop": [ - 4611 + 4962 ], "stddev_samp": [ - 4613 + 4964 ], "sum": [ - 4617 + 4968 ], "var_pop": [ - 4619 + 4970 ], "var_samp": [ - 4621 + 4972 ], "variance": [ - 4623 + 4974 ], "__typename": [ 78 @@ -107370,7 +113084,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4601 + 4952 ], "__typename": [ 78 @@ -107395,16 +113109,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107412,19 +113126,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4600 + 4951 ], "_not": [ - 4600 + 4951 ], "_or": [ - 4600 + 4951 ], "against_count": [ 39 ], "clutcher": [ - 3443 + 3743 ], "clutcher_steam_id": [ 182 @@ -107433,22 +113147,22 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "outcome": [ 80 @@ -107468,7 +113182,7 @@ export default { 38 ], "clutcher": [ - 3450 + 3750 ], "clutcher_steam_id": [ 180 @@ -107477,22 +113191,22 @@ export default { 38 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1994 + 2294 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "outcome": [ 78 @@ -107518,13 +113232,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "outcome": [ 78 @@ -107541,31 +113255,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "outcome": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107582,13 +113296,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "outcome": [ 78 @@ -107605,31 +113319,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "outcome": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107637,43 +113351,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher": [ - 3452 + 3752 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "outcome": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107699,16 +113413,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107733,16 +113447,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107767,16 +113481,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107784,7 +113498,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4615 + 4966 ], "ordering": [ 236 @@ -107804,13 +113518,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "outcome": [ 78 @@ -107844,16 +113558,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107878,16 +113592,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107912,16 +113626,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107946,16 +113660,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2481 + 2781 ], "clutcher_steam_id": [ - 2481 + 2781 ], "kills_in_clutch": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -107972,16 +113686,16 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "victim_side": [ 78 @@ -107998,10 +113712,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4626 + 4977 ], "nodes": [ - 4624 + 4975 ], "__typename": [ 78 @@ -108009,13 +113723,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4627 + 4978 ], "count": [ 38, { "columns": [ - 4632, + 4983, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -108024,31 +113738,31 @@ export default { } ], "max": [ - 4629 + 4980 ], "min": [ - 4630 + 4981 ], "stddev": [ - 4633 + 4984 ], "stddev_pop": [ - 4634 + 4985 ], "stddev_samp": [ - 4635 + 4986 ], "sum": [ - 4638 + 4989 ], "var_pop": [ - 4639 + 4990 ], "var_samp": [ - 4640 + 4991 ], "variance": [ - 4641 + 4992 ], "__typename": [ 78 @@ -108070,13 +113784,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4628 + 4979 ], "_not": [ - 4628 + 4979 ], "_or": [ - 4628 + 4979 ], "killer_side": [ 80 @@ -108088,16 +113802,16 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "victim_side": [ 80 @@ -108123,10 +113837,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "victim_side": [ 78 @@ -108152,10 +113866,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "victim_side": [ 78 @@ -108172,34 +113886,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2481 + 2781 ], "killer_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "victim_side": [ - 2481 + 2781 ], "victim_steam_id": [ - 2481 + 2781 ], "weapon": [ - 2481 + 2781 ], "__typename": [ 78 @@ -108250,7 +113964,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4637 + 4988 ], "ordering": [ 236 @@ -108270,10 +113984,10 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "victim_side": [ 78 @@ -108346,22 +114060,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 @@ -108381,10 +114095,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4644 + 4995 ], "nodes": [ - 4642 + 4993 ], "__typename": [ 78 @@ -108392,13 +114106,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4645 + 4996 ], "count": [ 38, { "columns": [ - 4650, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -108407,31 +114121,31 @@ export default { } ], "max": [ - 4647 + 4998 ], "min": [ - 4648 + 4999 ], "stddev": [ - 4651 + 5002 ], "stddev_pop": [ - 4652 + 5003 ], "stddev_samp": [ - 4653 + 5004 ], "sum": [ - 4656 + 5007 ], "var_pop": [ - 4657 + 5008 ], "var_samp": [ - 4658 + 5009 ], "variance": [ - 4659 + 5010 ], "__typename": [ 78 @@ -108450,31 +114164,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4646 + 4997 ], "_not": [ - 4646 + 4997 ], "_or": [ - 4646 + 4997 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "matchup": [ 80 @@ -108494,13 +114208,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 @@ -108520,13 +114234,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 @@ -108546,34 +114260,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "matchup": [ - 2481 + 2781 ], "rounds": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -108615,7 +114329,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 4655 + 5006 ], "ordering": [ 236 @@ -108626,13 +114340,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 @@ -108708,22 +114422,22 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "opening_attempts": [ 38 @@ -108764,10 +114478,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 4662 + 5013 ], "nodes": [ - 4660 + 5011 ], "__typename": [ 78 @@ -108775,13 +114489,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 4663 + 5014 ], "count": [ 38, { "columns": [ - 4668, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -108790,31 +114504,31 @@ export default { } ], "max": [ - 4665 + 5016 ], "min": [ - 4666 + 5017 ], "stddev": [ - 4669 + 5020 ], "stddev_pop": [ - 4670 + 5021 ], "stddev_samp": [ - 4671 + 5022 ], "sum": [ - 4674 + 5025 ], "var_pop": [ - 4675 + 5026 ], "var_samp": [ - 4676 + 5027 ], "variance": [ - 4677 + 5028 ], "__typename": [ 78 @@ -108869,13 +114583,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 4664 + 5015 ], "_not": [ - 4664 + 5015 ], "_or": [ - 4664 + 5015 ], "man_adv_rounds": [ 39 @@ -108890,22 +114604,22 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "opening_attempts": [ 39 @@ -108958,13 +114672,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "opening_attempts": [ 38 @@ -109017,13 +114731,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "opening_attempts": [ 38 @@ -109064,67 +114778,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2481 + 2781 ], "man_adv_wins": [ - 2481 + 2781 ], "man_dis_rounds": [ - 2481 + 2781 ], "man_dis_wins": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "opening_attempts": [ - 2481 + 2781 ], "opening_wins": [ - 2481 + 2781 ], "pistol_rounds": [ - 2481 + 2781 ], "pistol_wins": [ - 2481 + 2781 ], "round_wins": [ - 2481 + 2781 ], "rounds": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "won_buy_eco": [ - 2481 + 2781 ], "won_buy_force": [ - 2481 + 2781 ], "won_buy_full": [ - 2481 + 2781 ], "won_buy_pistol": [ - 2481 + 2781 ], "__typename": [ 78 @@ -109274,7 +114988,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 4673 + 5024 ], "ordering": [ 236 @@ -109297,13 +115011,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "opening_attempts": [ 38 @@ -109535,7 +115249,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -109546,10 +115260,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 4680 + 5031 ], "nodes": [ - 4678 + 5029 ], "__typename": [ 78 @@ -109557,13 +115271,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 4681 + 5032 ], "count": [ 38, { "columns": [ - 4689, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -109572,31 +115286,31 @@ export default { } ], "max": [ - 4685 + 5036 ], "min": [ - 4686 + 5037 ], "stddev": [ - 4691 + 5042 ], "stddev_pop": [ - 4692 + 5043 ], "stddev_samp": [ - 4693 + 5044 ], "sum": [ - 4696 + 5047 ], "var_pop": [ - 4698 + 5049 ], "var_samp": [ - 4699 + 5050 ], "variance": [ - 4700 + 5051 ], "__typename": [ 78 @@ -109612,19 +115326,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 4682 + 5033 ], "_not": [ - 4682 + 5033 ], "_or": [ - 4682 + 5033 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4464 + 4764 ], "round": [ 39 @@ -109646,7 +115360,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -109657,7 +115371,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -109668,7 +115382,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -109682,7 +115396,7 @@ export default { 38 ], "returning": [ - 4678 + 5029 ], "__typename": [ 78 @@ -109690,13 +115404,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -109708,7 +115422,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -109743,7 +115457,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 4695 + 5046 ], "ordering": [ 236 @@ -109757,7 +115471,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4762 ], "round": [ 38 @@ -109776,13 +115490,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 4683 + 5034 ], "_set": [ - 4690 + 5041 ], "where": [ - 4682 + 5033 ], "__typename": [ 78 @@ -109820,28 +115534,28 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 ], "player": [ - 3439 + 3739 ], "rounds": [ 38 @@ -109858,10 +115572,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 4703 + 5054 ], "nodes": [ - 4701 + 5052 ], "__typename": [ 78 @@ -109869,13 +115583,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 4704 + 5055 ], "count": [ 38, { "columns": [ - 4709, + 5060, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -109884,31 +115598,31 @@ export default { } ], "max": [ - 4706 + 5057 ], "min": [ - 4707 + 5058 ], "stddev": [ - 4710 + 5061 ], "stddev_pop": [ - 4711 + 5062 ], "stddev_samp": [ - 4712 + 5063 ], "sum": [ - 4715 + 5066 ], "var_pop": [ - 4716 + 5067 ], "var_samp": [ - 4717 + 5068 ], "variance": [ - 4718 + 5069 ], "__typename": [ 78 @@ -109933,13 +115647,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 4705 + 5056 ], "_not": [ - 4705 + 5056 ], "_or": [ - 4705 + 5056 ], "deaths": [ 39 @@ -109948,28 +115662,28 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "matchup": [ 80 ], "player": [ - 3443 + 3743 ], "rounds": [ 39 @@ -109992,13 +115706,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 @@ -110024,13 +115738,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 @@ -110050,43 +115764,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "matchup": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "rounds": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110146,7 +115860,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 4714 + 5065 ], "ordering": [ 236 @@ -110163,13 +115877,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "matchup": [ 78 @@ -110263,25 +115977,25 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1976 + 2276 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "side": [ 78 @@ -110301,10 +116015,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 4723 + 5074 ], "nodes": [ - 4719 + 5070 ], "__typename": [ 78 @@ -110312,7 +116026,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 4722 + 5073 ], "__typename": [ 78 @@ -110320,13 +116034,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4735 + 5086 ], "distinct": [ 3 ], "filter": [ - 4728 + 5079 ], "predicate": [ 39 @@ -110337,13 +116051,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 4726 + 5077 ], "count": [ 38, { "columns": [ - 4735, + 5086, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -110352,31 +116066,31 @@ export default { } ], "max": [ - 4730 + 5081 ], "min": [ - 4732 + 5083 ], "stddev": [ - 4736 + 5087 ], "stddev_pop": [ - 4738 + 5089 ], "stddev_samp": [ - 4740 + 5091 ], "sum": [ - 4744 + 5095 ], "var_pop": [ - 4746 + 5097 ], "var_samp": [ - 4748 + 5099 ], "variance": [ - 4750 + 5101 ], "__typename": [ 78 @@ -110384,37 +116098,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 4727 + 5078 ], "count": [ - 2481 + 2781 ], "max": [ - 4731 + 5082 ], "min": [ - 4733 + 5084 ], "stddev": [ - 4737 + 5088 ], "stddev_pop": [ - 4739 + 5090 ], "stddev_samp": [ - 4741 + 5092 ], "sum": [ - 4745 + 5096 ], "var_pop": [ - 4747 + 5098 ], "var_samp": [ - 4749 + 5100 ], "variance": [ - 4751 + 5102 ], "__typename": [ 78 @@ -110422,7 +116136,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4729 + 5080 ], "__typename": [ 78 @@ -110450,19 +116164,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110470,13 +116184,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4728 + 5079 ], "_not": [ - 4728 + 5079 ], "_or": [ - 4728 + 5079 ], "attempts": [ 39 @@ -110485,25 +116199,25 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_lineup": [ - 1985 + 2285 ], "match_lineup_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "side": [ 80 @@ -110529,25 +116243,25 @@ export default { 38 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_lineup": [ - 1994 + 2294 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "side": [ 78 @@ -110573,13 +116287,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "side": [ 78 @@ -110599,31 +116313,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110637,13 +116351,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "side": [ 78 @@ -110663,31 +116377,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "side": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110695,43 +116409,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_lineup": [ - 1996 + 2296 ], "match_lineup_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "side": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110760,19 +116474,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110800,19 +116514,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110840,19 +116554,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110860,7 +116574,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4743 + 5094 ], "ordering": [ 236 @@ -110877,13 +116591,13 @@ export default { 38 ], "match_id": [ - 4462 + 4762 ], "match_lineup_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "side": [ 78 @@ -110923,19 +116637,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -110963,19 +116677,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -111003,19 +116717,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -111043,19 +116757,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "traded_deaths": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -111069,10 +116783,10 @@ export default { 180 ], "nemsis": [ - 3439 + 3739 ], "player": [ - 3439 + 3739 ], "victim_id": [ 180 @@ -111083,10 +116797,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4754 + 5105 ], "nodes": [ - 4752 + 5103 ], "__typename": [ 78 @@ -111094,13 +116808,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4755 + 5106 ], "count": [ 38, { "columns": [ - 4760, + 5111, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -111109,31 +116823,31 @@ export default { } ], "max": [ - 4757 + 5108 ], "min": [ - 4758 + 5109 ], "stddev": [ - 4761 + 5112 ], "stddev_pop": [ - 4762 + 5113 ], "stddev_samp": [ - 4763 + 5114 ], "sum": [ - 4766 + 5117 ], "var_pop": [ - 4767 + 5118 ], "var_samp": [ - 4768 + 5119 ], "variance": [ - 4769 + 5120 ], "__typename": [ 78 @@ -111155,13 +116869,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4756 + 5107 ], "_not": [ - 4756 + 5107 ], "_or": [ - 4756 + 5107 ], "attacker_id": [ 182 @@ -111170,10 +116884,10 @@ export default { 182 ], "nemsis": [ - 3443 + 3743 ], "player": [ - 3443 + 3743 ], "victim_id": [ 182 @@ -111212,19 +116926,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2481 + 2781 ], "kill_count": [ - 2481 + 2781 ], "nemsis": [ - 3452 + 3752 ], "player": [ - 3452 + 3752 ], "victim_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -111275,7 +116989,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4765 + 5116 ], "ordering": [ 236 @@ -111359,7 +117073,7 @@ export default { 180 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 @@ -111376,10 +117090,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 4772 + 5123 ], "nodes": [ - 4770 + 5121 ], "__typename": [ 78 @@ -111387,13 +117101,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 4773 + 5124 ], "count": [ 38, { "columns": [ - 4778, + 5129, "[v_player_damage_select_column!]" ], "distinct": [ @@ -111402,31 +117116,31 @@ export default { } ], "max": [ - 4775 + 5126 ], "min": [ - 4776 + 5127 ], "stddev": [ - 4779 + 5130 ], "stddev_pop": [ - 4780 + 5131 ], "stddev_samp": [ - 4781 + 5132 ], "sum": [ - 4784 + 5135 ], "var_pop": [ - 4785 + 5136 ], "var_samp": [ - 4786 + 5137 ], "variance": [ - 4787 + 5138 ], "__typename": [ 78 @@ -111451,19 +117165,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 4774 + 5125 ], "_not": [ - 4774 + 5125 ], "_or": [ - 4774 + 5125 ], "avg_damage_per_round": [ 182 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 @@ -111514,19 +117228,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "total_damage": [ - 2481 + 2781 ], "total_rounds": [ - 2481 + 2781 ], "__typename": [ 78 @@ -111586,7 +117300,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 4783 + 5134 ], "ordering": [ 236 @@ -111682,7 +117396,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 @@ -111694,7 +117408,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 @@ -111703,16 +117417,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 1200 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -111724,22 +117438,22 @@ export default { 38 ], "match": [ - 2296 + 2596 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_name": [ 78 @@ -111748,16 +117462,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ 78 @@ -111771,10 +117485,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 4802 + 5153 ], "nodes": [ - 4788 + 5139 ], "__typename": [ 78 @@ -111782,31 +117496,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 4791 + 5142 ], "corr": [ - 4792 + 5143 ], "count": [ - 4794 + 5145 ], "covar_samp": [ - 4795 + 5146 ], "max": [ - 4797 + 5148 ], "min": [ - 4798 + 5149 ], "stddev_samp": [ - 4799 + 5150 ], "sum": [ - 4800 + 5151 ], "var_samp": [ - 4801 + 5152 ], "__typename": [ 78 @@ -111814,16 +117528,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 4815 + 5166 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111831,16 +117545,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 4793 + 5144 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111848,10 +117562,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 4816 + 5167 ], "Y": [ - 4816 + 5167 ], "__typename": [ 78 @@ -111859,13 +117573,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 4814 + 5165 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ 39 @@ -111876,16 +117590,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 4796 + 5147 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111893,10 +117607,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4817 + 5168 ], "Y": [ - 4817 + 5168 ], "__typename": [ 78 @@ -111904,16 +117618,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 4818 + 5169 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111921,16 +117635,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 4819 + 5170 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111938,16 +117652,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4820 + 5171 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111955,16 +117669,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 4821 + 5172 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111972,16 +117686,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 4822 + 5173 ], "distinct": [ 3 ], "filter": [ - 4807 + 5158 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -111989,13 +117703,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 4805 + 5156 ], "count": [ 38, { "columns": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "distinct": [ @@ -112004,31 +117718,31 @@ export default { } ], "max": [ - 4809 + 5160 ], "min": [ - 4811 + 5162 ], "stddev": [ - 4823 + 5174 ], "stddev_pop": [ - 4825 + 5176 ], "stddev_samp": [ - 4827 + 5178 ], "sum": [ - 4831 + 5182 ], "var_pop": [ - 4833 + 5184 ], "var_samp": [ - 4835 + 5186 ], "variance": [ - 4837 + 5188 ], "__typename": [ 78 @@ -112036,37 +117750,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 4806 + 5157 ], "count": [ - 2481 + 2781 ], "max": [ - 4810 + 5161 ], "min": [ - 4812 + 5163 ], "stddev": [ - 4824 + 5175 ], "stddev_pop": [ - 4826 + 5177 ], "stddev_samp": [ - 4828 + 5179 ], "sum": [ - 4832 + 5183 ], "var_pop": [ - 4834 + 5185 ], "var_samp": [ - 4836 + 5187 ], "variance": [ - 4838 + 5189 ], "__typename": [ 78 @@ -112074,7 +117788,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 4808 + 5159 ], "__typename": [ 78 @@ -112150,67 +117864,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -112218,16 +117932,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 4807 + 5158 ], "_not": [ - 4807 + 5158 ], "_or": [ - 4807 + 5158 ], "actual_score": [ - 1201 + 1500 ], "assists": [ 39 @@ -112239,7 +117953,7 @@ export default { 39 ], "damage_percent": [ - 1201 + 1500 ], "deaths": [ 39 @@ -112248,16 +117962,16 @@ export default { 39 ], "expected_score": [ - 1201 + 1500 ], "impact": [ - 1201 + 1500 ], "k_factor": [ 39 ], "kda": [ - 1201 + 1500 ], "kills": [ 39 @@ -112269,22 +117983,22 @@ export default { 39 ], "match": [ - 2305 + 2605 ], "match_created_at": [ - 4025 + 4325 ], "match_id": [ - 4464 + 4764 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1201 + 1500 ], "performance_multiplier": [ - 1201 + 1500 ], "player_name": [ 80 @@ -112293,16 +118007,16 @@ export default { 182 ], "player_team_elo_avg": [ - 1201 + 1500 ], "season_id": [ - 4464 + 4764 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1201 + 1500 ], "type": [ 80 @@ -112316,7 +118030,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 @@ -112328,7 +118042,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 @@ -112337,16 +118051,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 1200 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -112358,22 +118072,22 @@ export default { 38 ], "match": [ - 2314 + 2614 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_name": [ 78 @@ -112382,16 +118096,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ 78 @@ -112405,7 +118119,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 @@ -112417,7 +118131,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 @@ -112426,16 +118140,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 1200 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -112447,19 +118161,19 @@ export default { 38 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_name": [ 78 @@ -112468,16 +118182,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ 78 @@ -112491,85 +118205,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "match_created_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_result": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_name": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "season_id": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -112577,7 +118291,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 @@ -112589,7 +118303,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 @@ -112598,16 +118312,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 1200 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -112619,19 +118333,19 @@ export default { 38 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_name": [ 78 @@ -112640,16 +118354,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ 78 @@ -112663,85 +118377,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "match_created_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_result": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_name": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "season_id": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -112749,88 +118463,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_created_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_result": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_name": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "season_id": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -112915,67 +118629,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -113051,67 +118765,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -113187,67 +118901,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -113255,7 +118969,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 4830 + 5181 ], "ordering": [ 236 @@ -113266,7 +118980,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 @@ -113278,7 +118992,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 @@ -113287,16 +119001,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 1200 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -113308,19 +119022,19 @@ export default { 38 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_name": [ 78 @@ -113329,16 +119043,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1499 ], "season_id": [ - 4462 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1499 ], "type": [ 78 @@ -113352,7 +119066,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1200 + 1499 ], "assists": [ 38 @@ -113364,7 +119078,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1499 ], "deaths": [ 38 @@ -113373,16 +119087,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1499 ], "impact": [ - 1200 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1499 ], "kills": [ 38 @@ -113394,22 +119108,22 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1200 + 1499 ], "performance_multiplier": [ - 1200 + 1499 ], "player_steam_id": [ 180 ], "player_team_elo_avg": [ - 1200 + 1499 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1499 ], "updated_elo": [ 38 @@ -113420,67 +119134,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -113556,67 +119270,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -113692,67 +119406,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -113828,67 +119542,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2481 + 2781 ], "assists": [ - 2481 + 2781 ], "current_elo": [ - 2481 + 2781 ], "damage": [ - 2481 + 2781 ], "damage_percent": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "elo_change": [ - 2481 + 2781 ], "expected_score": [ - 2481 + 2781 ], "impact": [ - 2481 + 2781 ], "k_factor": [ - 2481 + 2781 ], "kda": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map_losses": [ - 2481 + 2781 ], "map_wins": [ - 2481 + 2781 ], "opponent_team_elo_avg": [ - 2481 + 2781 ], "performance_multiplier": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "player_team_elo_avg": [ - 2481 + 2781 ], "series_multiplier": [ - 2481 + 2781 ], "team_avg_kda": [ - 2481 + 2781 ], "updated_elo": [ - 2481 + 2781 ], "__typename": [ 78 @@ -113896,19 +119610,19 @@ export default { }, "v_player_map_losses": { "map": [ - 1814 + 2114 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -113919,10 +119633,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 4841 + 5192 ], "nodes": [ - 4839 + 5190 ], "__typename": [ 78 @@ -113930,13 +119644,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 4842 + 5193 ], "count": [ 38, { "columns": [ - 4847, + 5198, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -113945,31 +119659,31 @@ export default { } ], "max": [ - 4844 + 5195 ], "min": [ - 4845 + 5196 ], "stddev": [ - 4848 + 5199 ], "stddev_pop": [ - 4849 + 5200 ], "stddev_samp": [ - 4850 + 5201 ], "sum": [ - 4853 + 5204 ], "var_pop": [ - 4854 + 5205 ], "var_samp": [ - 4855 + 5206 ], "variance": [ - 4856 + 5207 ], "__typename": [ 78 @@ -113985,28 +119699,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 4843 + 5194 ], "_not": [ - 4843 + 5194 ], "_or": [ - 4843 + 5194 ], "map": [ - 1823 + 2123 ], "map_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "started_at": [ - 4025 + 4325 ], "steam_id": [ 182 @@ -114017,13 +119731,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -114034,13 +119748,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -114051,22 +119765,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 1833 + 2133 ], "map_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "started_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -114099,7 +119813,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 4852 + 5203 ], "ordering": [ 236 @@ -114110,13 +119824,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -114159,19 +119873,19 @@ export default { }, "v_player_map_wins": { "map": [ - 1814 + 2114 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -114182,10 +119896,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 4859 + 5210 ], "nodes": [ - 4857 + 5208 ], "__typename": [ 78 @@ -114193,13 +119907,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 4860 + 5211 ], "count": [ 38, { "columns": [ - 4865, + 5216, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -114208,31 +119922,31 @@ export default { } ], "max": [ - 4862 + 5213 ], "min": [ - 4863 + 5214 ], "stddev": [ - 4866 + 5217 ], "stddev_pop": [ - 4867 + 5218 ], "stddev_samp": [ - 4868 + 5219 ], "sum": [ - 4871 + 5222 ], "var_pop": [ - 4872 + 5223 ], "var_samp": [ - 4873 + 5224 ], "variance": [ - 4874 + 5225 ], "__typename": [ 78 @@ -114248,28 +119962,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 4861 + 5212 ], "_not": [ - 4861 + 5212 ], "_or": [ - 4861 + 5212 ], "map": [ - 1823 + 2123 ], "map_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "started_at": [ - 4025 + 4325 ], "steam_id": [ 182 @@ -114280,13 +119994,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -114297,13 +120011,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -114314,22 +120028,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 1833 + 2133 ], "map_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "started_at": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -114362,7 +120076,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 4870 + 5221 ], "ordering": [ 236 @@ -114373,13 +120087,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "started_at": [ - 4024 + 4324 ], "steam_id": [ 180 @@ -114422,13 +120136,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3439 + 3739 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3439 + 3739 ], "attacker_steam_id": [ 180 @@ -114449,10 +120163,10 @@ export default { 180 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -114460,10 +120174,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 4877 + 5228 ], "nodes": [ - 4875 + 5226 ], "__typename": [ 78 @@ -114471,13 +120185,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 4878 + 5229 ], "count": [ 38, { "columns": [ - 4883, + 5234, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -114486,31 +120200,31 @@ export default { } ], "max": [ - 4880 + 5231 ], "min": [ - 4881 + 5232 ], "stddev": [ - 4884 + 5235 ], "stddev_pop": [ - 4885 + 5236 ], "stddev_samp": [ - 4886 + 5237 ], "sum": [ - 4889 + 5240 ], "var_pop": [ - 4890 + 5241 ], "var_samp": [ - 4891 + 5242 ], "variance": [ - 4892 + 5243 ], "__typename": [ 78 @@ -114544,22 +120258,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 4879 + 5230 ], "_not": [ - 4879 + 5230 ], "_or": [ - 4879 + 5230 ], "attacked": [ - 3443 + 3743 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3443 + 3743 ], "attacker_steam_id": [ 182 @@ -114580,10 +120294,10 @@ export default { 182 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -114612,7 +120326,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -114641,7 +120355,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -114649,37 +120363,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3452 + 3752 ], "attacked_steam_id": [ - 2481 + 2781 ], "attacker": [ - 3452 + 3752 ], "attacker_steam_id": [ - 2481 + 2781 ], "damage_dealt": [ - 2481 + 2781 ], "flash_count": [ - 2481 + 2781 ], "headshot_kills": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -114766,7 +120480,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 4888 + 5239 ], "ordering": [ 236 @@ -114798,7 +120512,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -114910,37 +120624,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "rounds_played": [ 38 @@ -114954,10 +120668,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 4897 + 5248 ], "nodes": [ - 4893 + 5244 ], "__typename": [ 78 @@ -114965,7 +120679,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 4896 + 5247 ], "__typename": [ 78 @@ -114973,13 +120687,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 4911 + 5262 ], "distinct": [ 3 ], "filter": [ - 4902 + 5253 ], "predicate": [ 39 @@ -114990,13 +120704,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 4900 + 5251 ], "count": [ 38, { "columns": [ - 4911, + 5262, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -115005,31 +120719,31 @@ export default { } ], "max": [ - 4905 + 5256 ], "min": [ - 4907 + 5258 ], "stddev": [ - 4913 + 5264 ], "stddev_pop": [ - 4915 + 5266 ], "stddev_samp": [ - 4917 + 5268 ], "sum": [ - 4921 + 5272 ], "var_pop": [ - 4924 + 5275 ], "var_samp": [ - 4926 + 5277 ], "variance": [ - 4928 + 5279 ], "__typename": [ 78 @@ -115037,37 +120751,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 4901 + 5252 ], "count": [ - 2481 + 2781 ], "max": [ - 4906 + 5257 ], "min": [ - 4908 + 5259 ], "stddev": [ - 4914 + 5265 ], "stddev_pop": [ - 4916 + 5267 ], "stddev_samp": [ - 4918 + 5269 ], "sum": [ - 4922 + 5273 ], "var_pop": [ - 4925 + 5276 ], "var_samp": [ - 4927 + 5278 ], "variance": [ - 4929 + 5280 ], "__typename": [ 78 @@ -115075,7 +120789,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 4904 + 5255 ], "__typename": [ 78 @@ -115112,28 +120826,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115141,46 +120855,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 4902 + 5253 ], "_not": [ - 4902 + 5253 ], "_or": [ - 4902 + 5253 ], "adr": [ - 2480 + 2780 ], "apr": [ - 2480 + 2780 ], "dpr": [ - 2480 + 2780 ], "hltv_rating": [ - 2480 + 2780 ], "kast_pct": [ - 2480 + 2780 ], "kpr": [ - 2480 + 2780 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "rounds_played": [ 39 @@ -115194,22 +120908,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "rounds_played": [ 38 @@ -115223,37 +120937,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match": [ - 2314 + 2614 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2152 + 2452 ], "match_map_id": [ - 4462 + 4762 ], "player": [ - 3450 + 3750 ], "rounds_played": [ 38 @@ -115267,28 +120981,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "rounds_played": [ 38 @@ -115302,34 +121016,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115337,28 +121051,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "rounds_played": [ 38 @@ -115372,34 +121086,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_map_id": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115410,7 +121124,7 @@ export default { 38 ], "returning": [ - 4893 + 5244 ], "__typename": [ 78 @@ -115418,43 +121132,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115463,28 +121177,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "rounds_played": [ 38 @@ -115527,28 +121241,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115585,28 +121299,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115643,28 +121357,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115672,7 +121386,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 4920 + 5271 ], "ordering": [ 236 @@ -115683,28 +121397,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "rounds_played": [ 38 @@ -115718,22 +121432,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2479 + 2779 ], "apr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "rounds_played": [ 38 @@ -115747,28 +121461,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115776,13 +121490,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 4903 + 5254 ], "_set": [ - 4912 + 5263 ], "where": [ - 4902 + 5253 ], "__typename": [ 78 @@ -115819,28 +121533,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115877,28 +121591,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115935,28 +121649,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2481 + 2781 ], "apr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -115964,52 +121678,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2479 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2779 ], "entry_rate": [ - 2479 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kills": [ 38 ], "kpr": [ - 2479 + 2779 ], "lineup_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "match_map": [ - 2134 + 2434 ], "match_map_id": [ - 4462 + 4762 ], "open_deaths": [ 38 @@ -116021,7 +121735,7 @@ export default { 38 ], "player": [ - 3439 + 3739 ], "role": [ 78 @@ -116033,7 +121747,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2779 ], "total_kills": [ 38 @@ -116053,10 +121767,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 4932 + 5283 ], "nodes": [ - 4930 + 5281 ], "__typename": [ 78 @@ -116064,13 +121778,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 4933 + 5284 ], "count": [ 38, { "columns": [ - 4938, + 5289, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -116079,31 +121793,31 @@ export default { } ], "max": [ - 4935 + 5286 ], "min": [ - 4936 + 5287 ], "stddev": [ - 4939 + 5290 ], "stddev_pop": [ - 4940 + 5291 ], "stddev_samp": [ - 4941 + 5292 ], "sum": [ - 4944 + 5295 ], "var_pop": [ - 4945 + 5296 ], "var_samp": [ - 4946 + 5297 ], "variance": [ - 4947 + 5298 ], "__typename": [ 78 @@ -116179,61 +121893,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 4934 + 5285 ], "_not": [ - 4934 + 5285 ], "_or": [ - 4934 + 5285 ], "adr": [ - 2480 + 2780 ], "awp_kills": [ 39 ], "awp_share": [ - 2480 + 2780 ], "deaths": [ 39 ], "dpr": [ - 2480 + 2780 ], "entry_rate": [ - 2480 + 2780 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2480 + 2780 ], "kast_pct": [ - 2480 + 2780 ], "kills": [ 39 ], "kpr": [ - 2480 + 2780 ], "lineup_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "match_map": [ - 2143 + 2443 ], "match_map_id": [ - 4464 + 4764 ], "open_deaths": [ 39 @@ -116245,7 +121959,7 @@ export default { 39 ], "player": [ - 3443 + 3743 ], "role": [ 80 @@ -116257,7 +121971,7 @@ export default { 182 ], "support_idx": [ - 2480 + 2780 ], "total_kills": [ 39 @@ -116277,46 +121991,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2479 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2779 ], "entry_rate": [ - 2479 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kills": [ 38 ], "kpr": [ - 2479 + 2779 ], "lineup_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "open_deaths": [ 38 @@ -116337,7 +122051,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2779 ], "total_kills": [ 38 @@ -116357,46 +122071,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2479 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2779 ], "entry_rate": [ - 2479 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kills": [ 38 ], "kpr": [ - 2479 + 2779 ], "lineup_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "open_deaths": [ 38 @@ -116417,7 +122131,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2779 ], "total_kills": [ 38 @@ -116437,88 +122151,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2481 + 2781 ], "awp_kills": [ - 2481 + 2781 ], "awp_share": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "entry_rate": [ - 2481 + 2781 ], "flash_assists": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "lineup_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "match_map": [ - 2154 + 2454 ], "match_map_id": [ - 2481 + 2781 ], "open_deaths": [ - 2481 + 2781 ], "open_kills": [ - 2481 + 2781 ], "opening_attempts": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "role": [ - 2481 + 2781 ], "rounds": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "support_idx": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "trade_kill_successes": [ - 2481 + 2781 ], "traded_death_successes": [ - 2481 + 2781 ], "util_damage": [ - 2481 + 2781 ], "__typename": [ 78 @@ -116731,7 +122445,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 4943 + 5294 ], "ordering": [ 236 @@ -116742,46 +122456,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2479 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2779 ], "entry_rate": [ - 2479 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kills": [ 38 ], "kpr": [ - 2479 + 2779 ], "lineup_id": [ - 4462 + 4762 ], "match_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462 + 4762 ], "open_deaths": [ 38 @@ -116802,7 +122516,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2779 ], "total_kills": [ 38 @@ -116822,37 +122536,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2479 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2779 ], "entry_rate": [ - 2479 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kills": [ 38 ], "kpr": [ - 2479 + 2779 ], "open_deaths": [ 38 @@ -116870,7 +122584,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2779 ], "total_kills": [ 38 @@ -117103,19 +122817,19 @@ export default { 38 ], "map": [ - 1814 + 2114 ], "map_id": [ - 4462 + 4762 ], "match": [ - 2296 + 2596 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 @@ -117135,10 +122849,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 4950 + 5301 ], "nodes": [ - 4948 + 5299 ], "__typename": [ 78 @@ -117146,13 +122860,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 4951 + 5302 ], "count": [ 38, { "columns": [ - 4956, + 5307, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -117161,31 +122875,31 @@ export default { } ], "max": [ - 4953 + 5304 ], "min": [ - 4954 + 5305 ], "stddev": [ - 4957 + 5308 ], "stddev_pop": [ - 4958 + 5309 ], "stddev_samp": [ - 4959 + 5310 ], "sum": [ - 4962 + 5313 ], "var_pop": [ - 4963 + 5314 ], "var_samp": [ - 4964 + 5315 ], "variance": [ - 4965 + 5316 ], "__typename": [ 78 @@ -117210,13 +122924,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 4952 + 5303 ], "_not": [ - 4952 + 5303 ], "_or": [ - 4952 + 5303 ], "assists": [ 39 @@ -117228,19 +122942,19 @@ export default { 39 ], "map": [ - 1823 + 2123 ], "map_id": [ - 4464 + 4764 ], "match": [ - 2305 + 2605 ], "match_created_at": [ - 4025 + 4325 ], "match_id": [ - 4464 + 4764 ], "match_result": [ 80 @@ -117269,13 +122983,13 @@ export default { 38 ], "map_id": [ - 4462 + 4762 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 @@ -117304,13 +123018,13 @@ export default { 38 ], "map_id": [ - 4462 + 4762 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 @@ -117330,40 +123044,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "map": [ - 1833 + 2133 ], "map_id": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_created_at": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "match_result": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "source": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "__typename": [ 78 @@ -117423,7 +123137,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 4961 + 5312 ], "ordering": [ 236 @@ -117443,13 +123157,13 @@ export default { 38 ], "map_id": [ - 4462 + 4762 ], "match_created_at": [ - 4024 + 4324 ], "match_id": [ - 4462 + 4762 ], "match_result": [ 78 @@ -117537,28 +123251,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match": [ - 2296 + 2596 ], "match_id": [ - 4462 + 4762 ], "player": [ - 3439 + 3739 ], "rounds_played": [ 38 @@ -117572,10 +123286,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 4968 + 5319 ], "nodes": [ - 4966 + 5317 ], "__typename": [ 78 @@ -117583,13 +123297,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 4969 + 5320 ], "count": [ 38, { "columns": [ - 4974, + 5325, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -117598,31 +123312,31 @@ export default { } ], "max": [ - 4971 + 5322 ], "min": [ - 4972 + 5323 ], "stddev": [ - 4975 + 5326 ], "stddev_pop": [ - 4976 + 5327 ], "stddev_samp": [ - 4977 + 5328 ], "sum": [ - 4980 + 5331 ], "var_pop": [ - 4981 + 5332 ], "var_samp": [ - 4982 + 5333 ], "variance": [ - 4983 + 5334 ], "__typename": [ 78 @@ -117656,37 +123370,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 4970 + 5321 ], "_not": [ - 4970 + 5321 ], "_or": [ - 4970 + 5321 ], "adr": [ - 2480 + 2780 ], "dpr": [ - 2480 + 2780 ], "hltv_rating": [ - 2480 + 2780 ], "kast_pct": [ - 2480 + 2780 ], "kpr": [ - 2480 + 2780 ], "match": [ - 2305 + 2605 ], "match_id": [ - 4464 + 4764 ], "player": [ - 3443 + 3743 ], "rounds_played": [ 39 @@ -117700,22 +123414,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "rounds_played": [ 38 @@ -117729,22 +123443,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "rounds_played": [ 38 @@ -117758,34 +123472,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2481 + 2781 ], "dpr": [ - 2481 + 2781 ], "hltv_rating": [ - 2481 + 2781 ], "kast_pct": [ - 2481 + 2781 ], "kpr": [ - 2481 + 2781 ], "match": [ - 2316 + 2616 ], "match_id": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "rounds_played": [ - 2481 + 2781 ], "steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -117872,7 +123586,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 4979 + 5330 ], "ordering": [ 236 @@ -117883,22 +123597,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "match_id": [ - 4462 + 4762 ], "rounds_played": [ 38 @@ -117912,19 +123626,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2479 + 2779 ], "dpr": [ - 2479 + 2779 ], "hltv_rating": [ - 2479 + 2779 ], "kast_pct": [ - 2479 + 2779 ], "kpr": [ - 2479 + 2779 ], "rounds_played": [ 38 @@ -118022,7 +123736,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "round": [ 38 @@ -118033,10 +123747,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 4988 + 5339 ], "nodes": [ - 4984 + 5335 ], "__typename": [ 78 @@ -118044,7 +123758,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 4987 + 5338 ], "__typename": [ 78 @@ -118052,13 +123766,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5000 + 5351 ], "distinct": [ 3 ], "filter": [ - 4993 + 5344 ], "predicate": [ 39 @@ -118069,13 +123783,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 4991 + 5342 ], "count": [ 38, { "columns": [ - 5000, + 5351, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -118084,31 +123798,31 @@ export default { } ], "max": [ - 4995 + 5346 ], "min": [ - 4997 + 5348 ], "stddev": [ - 5001 + 5352 ], "stddev_pop": [ - 5003 + 5354 ], "stddev_samp": [ - 5005 + 5356 ], "sum": [ - 5009 + 5360 ], "var_pop": [ - 5011 + 5362 ], "var_samp": [ - 5013 + 5364 ], "variance": [ - 5015 + 5366 ], "__typename": [ 78 @@ -118116,37 +123830,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 4992 + 5343 ], "count": [ - 2481 + 2781 ], "max": [ - 4996 + 5347 ], "min": [ - 4998 + 5349 ], "stddev": [ - 5002 + 5353 ], "stddev_pop": [ - 5004 + 5355 ], "stddev_samp": [ - 5006 + 5357 ], "sum": [ - 5010 + 5361 ], "var_pop": [ - 5012 + 5363 ], "var_samp": [ - 5014 + 5365 ], "variance": [ - 5016 + 5367 ], "__typename": [ 78 @@ -118154,7 +123868,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 4994 + 5345 ], "__typename": [ 78 @@ -118176,13 +123890,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118190,13 +123904,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 4993 + 5344 ], "_not": [ - 4993 + 5344 ], "_or": [ - 4993 + 5344 ], "attacker_steam_id": [ 182 @@ -118205,7 +123919,7 @@ export default { 182 ], "match_id": [ - 4464 + 4764 ], "round": [ 39 @@ -118222,7 +123936,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "round": [ 38 @@ -118239,7 +123953,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "round": [ 38 @@ -118250,16 +123964,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118273,7 +123987,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "round": [ 38 @@ -118284,16 +123998,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118301,16 +124015,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "match_id": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118333,13 +124047,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118361,13 +124075,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118389,13 +124103,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118403,7 +124117,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5008 + 5359 ], "ordering": [ 236 @@ -118420,7 +124134,7 @@ export default { 180 ], "match_id": [ - 4462 + 4762 ], "round": [ 38 @@ -118445,13 +124159,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118473,13 +124187,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118501,13 +124215,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118529,13 +124243,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "round": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118566,10 +124280,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5019 + 5370 ], "nodes": [ - 5017 + 5368 ], "__typename": [ 78 @@ -118577,13 +124291,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5020 + 5371 ], "count": [ 38, { "columns": [ - 5025, + 5376, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -118592,31 +124306,31 @@ export default { } ], "max": [ - 5022 + 5373 ], "min": [ - 5023 + 5374 ], "stddev": [ - 5026 + 5377 ], "stddev_pop": [ - 5027 + 5378 ], "stddev_samp": [ - 5028 + 5379 ], "sum": [ - 5031 + 5382 ], "var_pop": [ - 5032 + 5383 ], "var_samp": [ - 5033 + 5384 ], "variance": [ - 5034 + 5385 ], "__typename": [ 78 @@ -118638,13 +124352,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5021 + 5372 ], "_not": [ - 5021 + 5372 ], "_or": [ - 5021 + 5372 ], "damage": [ 182 @@ -118716,22 +124430,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2481 + 2781 ], "hits": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "source": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -118782,7 +124496,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5030 + 5381 ], "ordering": [ 236 @@ -118895,10 +124609,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5037 + 5388 ], "nodes": [ - 5035 + 5386 ], "__typename": [ 78 @@ -118906,13 +124620,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5038 + 5389 ], "count": [ 38, { "columns": [ - 5043, + 5394, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -118921,31 +124635,31 @@ export default { } ], "max": [ - 5040 + 5391 ], "min": [ - 5041 + 5392 ], "stddev": [ - 5044 + 5395 ], "stddev_pop": [ - 5045 + 5396 ], "stddev_samp": [ - 5046 + 5397 ], "sum": [ - 5049 + 5400 ], "var_pop": [ - 5050 + 5401 ], "var_samp": [ - 5051 + 5402 ], "variance": [ - 5052 + 5403 ], "__typename": [ 78 @@ -118967,13 +124681,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5039 + 5390 ], "_not": [ - 5039 + 5390 ], "_or": [ - 5039 + 5390 ], "kill_count": [ 182 @@ -119045,22 +124759,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "rounds": [ - 2481 + 2781 ], "source": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "with": [ - 2481 + 2781 ], "__typename": [ 78 @@ -119111,7 +124825,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5048 + 5399 ], "ordering": [ 236 @@ -119204,16 +124918,16 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "map_pool": [ - 1795 + 2095 ], "map_pool_id": [ - 4462 + 4762 ], "name": [ 78 @@ -119236,10 +124950,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5059 + 5410 ], "nodes": [ - 5053 + 5404 ], "__typename": [ 78 @@ -119247,13 +124961,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5056 + 5407 ], "bool_or": [ - 5057 + 5408 ], "count": [ - 5058 + 5409 ], "__typename": [ 78 @@ -119261,13 +124975,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5071 + 5422 ], "distinct": [ 3 ], "filter": [ - 5062 + 5413 ], "predicate": [ 4 @@ -119278,13 +124992,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5072 + 5423 ], "distinct": [ 3 ], "filter": [ - 5062 + 5413 ], "predicate": [ 4 @@ -119295,13 +125009,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5070 + 5421 ], "distinct": [ 3 ], "filter": [ - 5062 + 5413 ], "predicate": [ 39 @@ -119315,7 +125029,7 @@ export default { 38, { "columns": [ - 5070, + 5421, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -119324,10 +125038,10 @@ export default { } ], "max": [ - 5064 + 5415 ], "min": [ - 5066 + 5417 ], "__typename": [ 78 @@ -119335,13 +125049,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2481 + 2781 ], "max": [ - 5065 + 5416 ], "min": [ - 5067 + 5418 ], "__typename": [ 78 @@ -119349,7 +125063,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5063 + 5414 ], "__typename": [ 78 @@ -119357,28 +125071,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5062 + 5413 ], "_not": [ - 5062 + 5413 ], "_or": [ - 5062 + 5413 ], "active_pool": [ 4 ], "id": [ - 4464 + 4764 ], "label": [ 80 ], "map_pool": [ - 1798 + 2098 ], "map_pool_id": [ - 4464 + 4764 ], "name": [ 80 @@ -119404,16 +125118,16 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "map_pool": [ - 1804 + 2104 ], "map_pool_id": [ - 4462 + 4762 ], "name": [ 78 @@ -119436,13 +125150,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4462 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4762 ], "name": [ 78 @@ -119465,28 +125179,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "map_pool_id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "patch": [ - 2481 + 2781 ], "poster": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "workshop_map_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -119494,13 +125208,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4462 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4762 ], "name": [ 78 @@ -119523,28 +125237,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "map_pool_id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "patch": [ - 2481 + 2781 ], "poster": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "workshop_map_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -119555,7 +125269,7 @@ export default { 38 ], "returning": [ - 5053 + 5404 ], "__typename": [ 78 @@ -119563,34 +125277,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "label": [ - 2481 + 2781 ], "map_pool": [ - 1806 + 2106 ], "map_pool_id": [ - 2481 + 2781 ], "name": [ - 2481 + 2781 ], "patch": [ - 2481 + 2781 ], "poster": [ - 2481 + 2781 ], "type": [ - 2481 + 2781 ], "workshop_map_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -119604,13 +125318,13 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4762 ], "name": [ 78 @@ -119633,7 +125347,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5075 + 5426 ], "ordering": [ 236 @@ -119647,13 +125361,13 @@ export default { 3 ], "id": [ - 4462 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4762 ], "name": [ 78 @@ -119676,10 +125390,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5073 + 5424 ], "where": [ - 5062 + 5413 ], "__typename": [ 78 @@ -119704,10 +125418,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5079 + 5430 ], "nodes": [ - 5077 + 5428 ], "__typename": [ 78 @@ -119715,13 +125429,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5080 + 5431 ], "count": [ 38, { "columns": [ - 5085, + 5436, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -119730,31 +125444,31 @@ export default { } ], "max": [ - 5082 + 5433 ], "min": [ - 5083 + 5434 ], "stddev": [ - 5086 + 5437 ], "stddev_pop": [ - 5087 + 5438 ], "stddev_samp": [ - 5088 + 5439 ], "sum": [ - 5091 + 5442 ], "var_pop": [ - 5092 + 5443 ], "var_samp": [ - 5093 + 5444 ], "variance": [ - 5094 + 5445 ], "__typename": [ 78 @@ -119779,13 +125493,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5081 + 5432 ], "_not": [ - 5081 + 5432 ], "_or": [ - 5081 + 5432 ], "busy_accounts": [ 39 @@ -119839,16 +125553,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2481 + 2781 ], "free_accounts": [ - 2481 + 2781 ], "id": [ - 2481 + 2781 ], "total_accounts": [ - 2481 + 2781 ], "__typename": [ 78 @@ -119908,7 +125622,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5090 + 5441 ], "ordering": [ 236 @@ -120010,7 +125724,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1499 ], "avg_premier": [ 38 @@ -120025,10 +125739,10 @@ export default { 180 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120036,10 +125750,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5097 + 5448 ], "nodes": [ - 5095 + 5446 ], "__typename": [ 78 @@ -120047,13 +125761,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5098 + 5449 ], "count": [ 38, { "columns": [ - 5105, + 5456, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -120062,31 +125776,31 @@ export default { } ], "max": [ - 5101 + 5452 ], "min": [ - 5102 + 5453 ], "stddev": [ - 5106 + 5457 ], "stddev_pop": [ - 5107 + 5458 ], "stddev_samp": [ - 5108 + 5459 ], "sum": [ - 5111 + 5462 ], "var_pop": [ - 5112 + 5463 ], "var_samp": [ - 5113 + 5464 ], "variance": [ - 5114 + 5465 ], "__typename": [ 78 @@ -120120,13 +125834,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5099 + 5450 ], "_not": [ - 5099 + 5450 ], "_or": [ - 5099 + 5450 ], "avg_elo": [ 39 @@ -120135,7 +125849,7 @@ export default { 39 ], "avg_faceit_level": [ - 1201 + 1500 ], "avg_premier": [ 39 @@ -120150,10 +125864,10 @@ export default { 182 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -120167,7 +125881,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1499 ], "avg_premier": [ 38 @@ -120182,10 +125896,10 @@ export default { 180 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120199,7 +125913,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1499 ], "avg_premier": [ 38 @@ -120214,7 +125928,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120228,7 +125942,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1499 ], "avg_premier": [ 38 @@ -120243,7 +125957,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120251,7 +125965,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5100 + 5451 ], "__typename": [ 78 @@ -120259,31 +125973,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2481 + 2781 ], "avg_faceit_elo": [ - 2481 + 2781 ], "avg_faceit_level": [ - 2481 + 2781 ], "avg_premier": [ - 2481 + 2781 ], "max_elo": [ - 2481 + 2781 ], "min_elo": [ - 2481 + 2781 ], "roster_size": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -120370,7 +126084,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5110 + 5461 ], "ordering": [ 236 @@ -120387,7 +126101,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1499 ], "avg_premier": [ 38 @@ -120402,7 +126116,7 @@ export default { 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120416,7 +126130,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1499 ], "avg_premier": [ 38 @@ -120520,16 +126234,16 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2779 ], "scrims_completed": [ 180 ], "team": [ - 3981 + 4281 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120537,10 +126251,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5117 + 5468 ], "nodes": [ - 5115 + 5466 ], "__typename": [ 78 @@ -120548,13 +126262,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5118 + 5469 ], "count": [ 38, { "columns": [ - 5125, + 5476, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -120563,31 +126277,31 @@ export default { } ], "max": [ - 5121 + 5472 ], "min": [ - 5122 + 5473 ], "stddev": [ - 5126 + 5477 ], "stddev_pop": [ - 5127 + 5478 ], "stddev_samp": [ - 5128 + 5479 ], "sum": [ - 5131 + 5482 ], "var_pop": [ - 5132 + 5483 ], "var_samp": [ - 5133 + 5484 ], "variance": [ - 5134 + 5485 ], "__typename": [ 78 @@ -120612,13 +126326,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5119 + 5470 ], "_not": [ - 5119 + 5470 ], "_or": [ - 5119 + 5470 ], "late_cancels": [ 182 @@ -120627,16 +126341,16 @@ export default { 182 ], "reliability_pct": [ - 2480 + 2780 ], "scrims_completed": [ 182 ], "team": [ - 3990 + 4290 ], "team_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -120650,16 +126364,16 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2779 ], "scrims_completed": [ 180 ], "team": [ - 3999 + 4299 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120673,13 +126387,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2779 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120693,13 +126407,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2779 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120707,7 +126421,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5120 + 5471 ], "__typename": [ 78 @@ -120715,22 +126429,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2481 + 2781 ], "no_shows": [ - 2481 + 2781 ], "reliability_pct": [ - 2481 + 2781 ], "scrims_completed": [ - 2481 + 2781 ], "team": [ - 4001 + 4301 ], "team_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -120790,7 +126504,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5130 + 5481 ], "ordering": [ 236 @@ -120807,13 +126521,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2779 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -120827,7 +126541,7 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2779 ], "scrims_completed": [ 180 @@ -120925,13 +126639,13 @@ export default { 38 ], "stage": [ - 4154 + 4454 ], "team": [ - 4287 + 4587 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -120940,10 +126654,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -120954,10 +126668,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5149 + 5500 ], "nodes": [ - 5135 + 5486 ], "__typename": [ 78 @@ -120965,31 +126679,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5138 + 5489 ], "corr": [ - 5139 + 5490 ], "count": [ - 5141 + 5492 ], "covar_samp": [ - 5142 + 5493 ], "max": [ - 5144 + 5495 ], "min": [ - 5145 + 5496 ], "stddev_samp": [ - 5146 + 5497 ], "sum": [ - 5147 + 5498 ], "var_samp": [ - 5148 + 5499 ], "__typename": [ 78 @@ -120997,16 +126711,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5168 + 5519 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121014,16 +126728,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5140 + 5491 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121031,10 +126745,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5169 + 5520 ], "Y": [ - 5169 + 5520 ], "__typename": [ 78 @@ -121042,13 +126756,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5167 + 5518 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ 39 @@ -121059,16 +126773,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5143 + 5494 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121076,10 +126790,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5170 + 5521 ], "Y": [ - 5170 + 5521 ], "__typename": [ 78 @@ -121087,16 +126801,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5171 + 5522 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121104,16 +126818,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5172 + 5523 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121121,16 +126835,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5173 + 5524 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121138,16 +126852,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5174 + 5525 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121155,16 +126869,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5175 + 5526 ], "distinct": [ 3 ], "filter": [ - 5154 + 5505 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -121172,13 +126886,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5152 + 5503 ], "count": [ 38, { "columns": [ - 5167, + 5518, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -121187,31 +126901,31 @@ export default { } ], "max": [ - 5158 + 5509 ], "min": [ - 5160 + 5511 ], "stddev": [ - 5177 + 5528 ], "stddev_pop": [ - 5179 + 5530 ], "stddev_samp": [ - 5181 + 5532 ], "sum": [ - 5185 + 5536 ], "var_pop": [ - 5189 + 5540 ], "var_samp": [ - 5191 + 5542 ], "variance": [ - 5193 + 5544 ], "__typename": [ 78 @@ -121219,37 +126933,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5153 + 5504 ], "count": [ - 2481 + 2781 ], "max": [ - 5159 + 5510 ], "min": [ - 5161 + 5512 ], "stddev": [ - 5178 + 5529 ], "stddev_pop": [ - 5180 + 5531 ], "stddev_samp": [ - 5182 + 5533 ], "sum": [ - 5186 + 5537 ], "var_pop": [ - 5190 + 5541 ], "var_samp": [ - 5192 + 5543 ], "variance": [ - 5194 + 5545 ], "__typename": [ 78 @@ -121257,10 +126971,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5157 + 5508 ], "on_conflict": [ - 5164 + 5515 ], "__typename": [ 78 @@ -121321,52 +127035,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -121374,13 +127088,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5154 + 5505 ], "_not": [ - 5154 + 5505 ], "_or": [ - 5154 + 5505 ], "group_number": [ 39 @@ -121419,13 +127133,13 @@ export default { 39 ], "stage": [ - 4166 + 4466 ], "team": [ - 4296 + 4596 ], "team_kdr": [ - 1201 + 1500 ], "total_deaths": [ 39 @@ -121434,10 +127148,10 @@ export default { 39 ], "tournament_stage_id": [ - 4464 + 4764 ], "tournament_team_id": [ - 4464 + 4764 ], "wins": [ 39 @@ -121485,7 +127199,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -121538,13 +127252,13 @@ export default { 38 ], "stage": [ - 4178 + 4478 ], "team": [ - 4305 + 4605 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -121553,10 +127267,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -121603,7 +127317,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -121612,10 +127326,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -121626,58 +127340,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -121721,7 +127435,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -121730,10 +127444,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -121744,58 +127458,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -121806,7 +127520,7 @@ export default { 38 ], "returning": [ - 5135 + 5486 ], "__typename": [ 78 @@ -121814,10 +127528,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5157 + 5508 ], "on_conflict": [ - 5164 + 5515 ], "__typename": [ 78 @@ -121825,13 +127539,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5155 + 5506 ], "update_columns": [ - 5187 + 5538 ], "where": [ - 5154 + 5505 ], "__typename": [ 78 @@ -121839,64 +127553,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "stage": [ - 4180 + 4480 ], "team": [ - 4307 + 4607 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "tournament_stage_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -121904,10 +127618,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -121960,7 +127674,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -121969,10 +127683,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -122036,52 +127750,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -122142,52 +127856,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -122248,52 +127962,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -122301,7 +128015,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5184 + 5535 ], "ordering": [ 236 @@ -122348,7 +128062,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -122357,10 +128071,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -122407,7 +128121,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -122424,52 +128138,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -122478,13 +128192,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5156 + 5507 ], "_set": [ - 5176 + 5527 ], "where": [ - 5154 + 5505 ], "__typename": [ 78 @@ -122545,52 +128259,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -122651,52 +128365,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -122757,52 +128471,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2481 + 2781 ], "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "placement": [ - 2481 + 2781 ], "rank": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -122837,10 +128551,10 @@ export default { 38 ], "team": [ - 4287 + 4587 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -122849,13 +128563,13 @@ export default { 38 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -122866,10 +128580,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5209 + 5560 ], "nodes": [ - 5195 + 5546 ], "__typename": [ 78 @@ -122877,31 +128591,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5198 + 5549 ], "corr": [ - 5199 + 5550 ], "count": [ - 5201 + 5552 ], "covar_samp": [ - 5202 + 5553 ], "max": [ - 5204 + 5555 ], "min": [ - 5205 + 5556 ], "stddev_samp": [ - 5206 + 5557 ], "sum": [ - 5207 + 5558 ], "var_samp": [ - 5208 + 5559 ], "__typename": [ 78 @@ -122909,16 +128623,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5222 + 5573 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -122926,16 +128640,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5200 + 5551 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -122943,10 +128657,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5223 + 5574 ], "Y": [ - 5223 + 5574 ], "__typename": [ 78 @@ -122954,13 +128668,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5221 + 5572 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ 39 @@ -122971,16 +128685,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5203 + 5554 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -122988,10 +128702,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5224 + 5575 ], "Y": [ - 5224 + 5575 ], "__typename": [ 78 @@ -122999,16 +128713,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5225 + 5576 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -123016,16 +128730,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5226 + 5577 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -123033,16 +128747,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5227 + 5578 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -123050,16 +128764,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5228 + 5579 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -123067,16 +128781,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5229 + 5580 ], "distinct": [ 3 ], "filter": [ - 5214 + 5565 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -123084,13 +128798,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5212 + 5563 ], "count": [ 38, { "columns": [ - 5221, + 5572, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -123099,31 +128813,31 @@ export default { } ], "max": [ - 5216 + 5567 ], "min": [ - 5218 + 5569 ], "stddev": [ - 5230 + 5581 ], "stddev_pop": [ - 5232 + 5583 ], "stddev_samp": [ - 5234 + 5585 ], "sum": [ - 5238 + 5589 ], "var_pop": [ - 5240 + 5591 ], "var_samp": [ - 5242 + 5593 ], "variance": [ - 5244 + 5595 ], "__typename": [ 78 @@ -123131,37 +128845,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5213 + 5564 ], "count": [ - 2481 + 2781 ], "max": [ - 5217 + 5568 ], "min": [ - 5219 + 5570 ], "stddev": [ - 5231 + 5582 ], "stddev_pop": [ - 5233 + 5584 ], "stddev_samp": [ - 5235 + 5586 ], "sum": [ - 5239 + 5590 ], "var_pop": [ - 5241 + 5592 ], "var_samp": [ - 5243 + 5594 ], "variance": [ - 5245 + 5596 ], "__typename": [ 78 @@ -123169,7 +128883,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5215 + 5566 ], "__typename": [ 78 @@ -123221,43 +128935,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -123265,13 +128979,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5214 + 5565 ], "_not": [ - 5214 + 5565 ], "_or": [ - 5214 + 5565 ], "head_to_head_match_wins": [ 39 @@ -123301,10 +129015,10 @@ export default { 39 ], "team": [ - 4296 + 4596 ], "team_kdr": [ - 1201 + 1500 ], "total_deaths": [ 39 @@ -123313,13 +129027,13 @@ export default { 39 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "tournament_team_id": [ - 4464 + 4764 ], "wins": [ 39 @@ -123357,10 +129071,10 @@ export default { 38 ], "team": [ - 4305 + 4605 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -123369,13 +129083,13 @@ export default { 38 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -123413,7 +129127,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -123422,10 +129136,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -123436,49 +129150,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -123513,7 +129227,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -123522,10 +129236,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -123536,49 +129250,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -123586,55 +129300,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team": [ - 4307 + 4607 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "tournament_team_id": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -123695,43 +129409,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -123783,43 +129497,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -123871,43 +129585,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -123915,7 +129629,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5237 + 5588 ], "ordering": [ 236 @@ -123953,7 +129667,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -123962,10 +129676,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4762 ], "tournament_team_id": [ - 4462 + 4762 ], "wins": [ 38 @@ -124003,7 +129717,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1499 ], "total_deaths": [ 38 @@ -124020,43 +129734,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -124108,43 +129822,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -124196,43 +129910,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -124284,43 +129998,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2481 + 2781 ], "head_to_head_rounds_won": [ - 2481 + 2781 ], "losses": [ - 2481 + 2781 ], "maps_lost": [ - 2481 + 2781 ], "maps_won": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "matches_remaining": [ - 2481 + 2781 ], "rounds_lost": [ - 2481 + 2781 ], "rounds_won": [ - 2481 + 2781 ], "team_kdr": [ - 2481 + 2781 ], "total_deaths": [ - 2481 + 2781 ], "total_kills": [ - 2481 + 2781 ], "wins": [ - 2481 + 2781 ], "__typename": [ 78 @@ -124334,13 +130048,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 @@ -124349,16 +130063,16 @@ export default { 38 ], "player": [ - 3439 + 3739 ], "player_steam_id": [ 180 ], "tournament": [ - 4416 + 4716 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -124366,10 +130080,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5260 + 5611 ], "nodes": [ - 5246 + 5597 ], "__typename": [ 78 @@ -124377,31 +130091,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5249 + 5600 ], "corr": [ - 5250 + 5601 ], "count": [ - 5252 + 5603 ], "covar_samp": [ - 5253 + 5604 ], "max": [ - 5255 + 5606 ], "min": [ - 5256 + 5607 ], "stddev_samp": [ - 5257 + 5608 ], "sum": [ - 5258 + 5609 ], "var_samp": [ - 5259 + 5610 ], "__typename": [ 78 @@ -124409,16 +130123,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5273 + 5624 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124426,16 +130140,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5251 + 5602 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124443,10 +130157,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5274 + 5625 ], "Y": [ - 5274 + 5625 ], "__typename": [ 78 @@ -124454,13 +130168,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5272 + 5623 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ 39 @@ -124471,16 +130185,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5254 + 5605 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124488,10 +130202,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5275 + 5626 ], "Y": [ - 5275 + 5626 ], "__typename": [ 78 @@ -124499,16 +130213,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5276 + 5627 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124516,16 +130230,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5277 + 5628 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124533,16 +130247,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5278 + 5629 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124550,16 +130264,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5279 + 5630 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124567,16 +130281,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5280 + 5631 ], "distinct": [ 3 ], "filter": [ - 5265 + 5616 ], "predicate": [ - 1201 + 1500 ], "__typename": [ 78 @@ -124584,13 +130298,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5263 + 5614 ], "count": [ 38, { "columns": [ - 5272, + 5623, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -124599,31 +130313,31 @@ export default { } ], "max": [ - 5267 + 5618 ], "min": [ - 5269 + 5620 ], "stddev": [ - 5281 + 5632 ], "stddev_pop": [ - 5283 + 5634 ], "stddev_samp": [ - 5285 + 5636 ], "sum": [ - 5289 + 5640 ], "var_pop": [ - 5291 + 5642 ], "var_samp": [ - 5293 + 5644 ], "variance": [ - 5295 + 5646 ], "__typename": [ 78 @@ -124631,37 +130345,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5264 + 5615 ], "count": [ - 2481 + 2781 ], "max": [ - 5268 + 5619 ], "min": [ - 5270 + 5621 ], "stddev": [ - 5282 + 5633 ], "stddev_pop": [ - 5284 + 5635 ], "stddev_samp": [ - 5286 + 5637 ], "sum": [ - 5290 + 5641 ], "var_pop": [ - 5292 + 5643 ], "var_samp": [ - 5294 + 5645 ], "variance": [ - 5296 + 5647 ], "__typename": [ 78 @@ -124669,7 +130383,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5266 + 5617 ], "__typename": [ 78 @@ -124706,28 +130420,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -124735,13 +130449,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5265 + 5616 ], "_not": [ - 5265 + 5616 ], "_or": [ - 5265 + 5616 ], "assists": [ 39 @@ -124750,13 +130464,13 @@ export default { 39 ], "headshot_percentage": [ - 1201 + 1500 ], "headshots": [ 39 ], "kdr": [ - 1201 + 1500 ], "kills": [ 39 @@ -124765,16 +130479,16 @@ export default { 39 ], "player": [ - 3443 + 3743 ], "player_steam_id": [ 182 ], "tournament": [ - 4427 + 4727 ], "tournament_id": [ - 4464 + 4764 ], "__typename": [ 78 @@ -124788,13 +130502,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 @@ -124803,16 +130517,16 @@ export default { 38 ], "player": [ - 3450 + 3750 ], "player_steam_id": [ 180 ], "tournament": [ - 4436 + 4736 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -124826,13 +130540,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 @@ -124844,7 +130558,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -124852,31 +130566,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -124890,13 +130604,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 @@ -124908,7 +130622,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -124916,31 +130630,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -124948,37 +130662,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player": [ - 3452 + 3752 ], "player_steam_id": [ - 2481 + 2781 ], "tournament": [ - 4438 + 4738 ], "tournament_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125024,28 +130738,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125082,28 +130796,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125140,28 +130854,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125169,7 +130883,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5288 + 5639 ], "ordering": [ 236 @@ -125186,13 +130900,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 @@ -125204,7 +130918,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4762 ], "__typename": [ 78 @@ -125218,13 +130932,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1499 ], "kills": [ 38 @@ -125241,28 +130955,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125299,28 +131013,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125357,28 +131071,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125415,28 +131129,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2481 + 2781 ], "deaths": [ - 2481 + 2781 ], "headshot_percentage": [ - 2481 + 2781 ], "headshots": [ - 2481 + 2781 ], "kdr": [ - 2481 + 2781 ], "kills": [ - 2481 + 2781 ], "matches_played": [ - 2481 + 2781 ], "player_steam_id": [ - 2481 + 2781 ], "__typename": [ 78 @@ -125491,11 +131205,11 @@ export default { 92, { "map_id": [ - 4462, + 4762, "uuid!" ], "map_pool_id": [ - 4462, + 4762, "uuid!" ] } @@ -125548,7 +131262,7 @@ export default { 111, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -125601,7 +131315,7 @@ export default { 152, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -125654,7 +131368,7 @@ export default { 185, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -125710,7 +131424,7 @@ export default { 237, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -125763,7 +131477,7 @@ export default { 264, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -125816,7 +131530,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -125873,7 +131587,7 @@ export default { 354, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -126196,11 +131910,117 @@ export default { ] } ], - "e_friend_status": [ + "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, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_friend_status": [ + 565, { "distinct_on": [ - 540, + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -126210,19 +132030,19 @@ export default { 38 ], "order_by": [ - 538, + 578, "[e_friend_status_order_by!]" ], "where": [ - 528 + 568 ] } ], "e_friend_status_aggregate": [ - 526, + 566, { "distinct_on": [ - 540, + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -126232,16 +132052,16 @@ export default { 38 ], "order_by": [ - 538, + 578, "[e_friend_status_order_by!]" ], "where": [ - 528 + 568 ] } ], "e_friend_status_by_pk": [ - 525, + 565, { "value": [ 78, @@ -126250,10 +132070,10 @@ export default { } ], "e_game_cfg_types": [ - 546, + 586, { "distinct_on": [ - 560, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -126263,19 +132083,19 @@ export default { 38 ], "order_by": [ - 558, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 589 ] } ], "e_game_cfg_types_aggregate": [ - 547, + 587, { "distinct_on": [ - 560, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -126285,16 +132105,16 @@ export default { 38 ], "order_by": [ - 558, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 589 ] } ], "e_game_cfg_types_by_pk": [ - 546, + 586, { "value": [ 78, @@ -126303,10 +132123,10 @@ export default { } ], "e_game_server_node_statuses": [ - 566, + 606, { "distinct_on": [ - 581, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -126316,19 +132136,19 @@ export default { 38 ], "order_by": [ - 579, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 609 ] } ], "e_game_server_node_statuses_aggregate": [ - 567, + 607, { "distinct_on": [ - 581, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -126338,16 +132158,16 @@ export default { 38 ], "order_by": [ - 579, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 609 ] } ], "e_game_server_node_statuses_by_pk": [ - 566, + 606, { "value": [ 78, @@ -126356,10 +132176,10 @@ export default { } ], "e_league_movement_types": [ - 587, + 627, { "distinct_on": [ - 602, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -126369,19 +132189,19 @@ export default { 38 ], "order_by": [ - 600, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 630 ] } ], "e_league_movement_types_aggregate": [ - 588, + 628, { "distinct_on": [ - 602, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -126391,16 +132211,16 @@ export default { 38 ], "order_by": [ - 600, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 630 ] } ], "e_league_movement_types_by_pk": [ - 587, + 627, { "value": [ 78, @@ -126409,10 +132229,10 @@ export default { } ], "e_league_proposal_statuses": [ - 608, + 648, { "distinct_on": [ - 623, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -126422,19 +132242,19 @@ export default { 38 ], "order_by": [ - 621, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 651 ] } ], "e_league_proposal_statuses_aggregate": [ - 609, + 649, { "distinct_on": [ - 623, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -126444,16 +132264,16 @@ export default { 38 ], "order_by": [ - 621, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 651 ] } ], "e_league_proposal_statuses_by_pk": [ - 608, + 648, { "value": [ 78, @@ -126462,10 +132282,10 @@ export default { } ], "e_league_registration_statuses": [ - 629, + 669, { "distinct_on": [ - 644, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -126475,19 +132295,19 @@ export default { 38 ], "order_by": [ - 642, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 672 ] } ], "e_league_registration_statuses_aggregate": [ - 630, + 670, { "distinct_on": [ - 644, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -126497,16 +132317,16 @@ export default { 38 ], "order_by": [ - 642, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 672 ] } ], "e_league_registration_statuses_by_pk": [ - 629, + 669, { "value": [ 78, @@ -126515,10 +132335,10 @@ export default { } ], "e_league_season_statuses": [ - 650, + 690, { "distinct_on": [ - 665, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -126528,19 +132348,19 @@ export default { 38 ], "order_by": [ - 663, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 693 ] } ], "e_league_season_statuses_aggregate": [ - 651, + 691, { "distinct_on": [ - 665, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -126550,16 +132370,16 @@ export default { 38 ], "order_by": [ - 663, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 693 ] } ], "e_league_season_statuses_by_pk": [ - 650, + 690, { "value": [ 78, @@ -126568,10 +132388,10 @@ export default { } ], "e_lobby_access": [ - 671, + 711, { "distinct_on": [ - 686, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -126581,19 +132401,19 @@ export default { 38 ], "order_by": [ - 684, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 714 ] } ], "e_lobby_access_aggregate": [ - 672, + 712, { "distinct_on": [ - 686, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -126603,16 +132423,16 @@ export default { 38 ], "order_by": [ - 684, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 714 ] } ], "e_lobby_access_by_pk": [ - 671, + 711, { "value": [ 78, @@ -126621,10 +132441,10 @@ export default { } ], "e_lobby_player_status": [ - 692, + 732, { "distinct_on": [ - 706, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -126634,19 +132454,19 @@ export default { 38 ], "order_by": [ - 704, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 735 ] } ], "e_lobby_player_status_aggregate": [ - 693, + 733, { "distinct_on": [ - 706, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -126656,16 +132476,16 @@ export default { 38 ], "order_by": [ - 704, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 735 ] } ], "e_lobby_player_status_by_pk": [ - 692, + 732, { "value": [ 78, @@ -126674,10 +132494,10 @@ export default { } ], "e_map_pool_types": [ - 712, + 752, { "distinct_on": [ - 727, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -126687,19 +132507,19 @@ export default { 38 ], "order_by": [ - 725, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 755 ] } ], "e_map_pool_types_aggregate": [ - 713, + 753, { "distinct_on": [ - 727, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -126709,16 +132529,16 @@ export default { 38 ], "order_by": [ - 725, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 755 ] } ], "e_map_pool_types_by_pk": [ - 712, + 752, { "value": [ 78, @@ -126727,10 +132547,10 @@ export default { } ], "e_match_clip_visibility": [ - 733, + 773, { "distinct_on": [ - 747, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -126740,19 +132560,19 @@ export default { 38 ], "order_by": [ - 745, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 776 ] } ], "e_match_clip_visibility_aggregate": [ - 734, + 774, { "distinct_on": [ - 747, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -126762,16 +132582,16 @@ export default { 38 ], "order_by": [ - 745, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 776 ] } ], "e_match_clip_visibility_by_pk": [ - 733, + 773, { "value": [ 78, @@ -126780,10 +132600,10 @@ export default { } ], "e_match_map_status": [ - 753, + 793, { "distinct_on": [ - 768, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -126793,19 +132613,19 @@ export default { 38 ], "order_by": [ - 766, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 796 ] } ], "e_match_map_status_aggregate": [ - 754, + 794, { "distinct_on": [ - 768, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -126815,16 +132635,16 @@ export default { 38 ], "order_by": [ - 766, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 796 ] } ], "e_match_map_status_by_pk": [ - 753, + 793, { "value": [ 78, @@ -126833,10 +132653,10 @@ export default { } ], "e_match_mode": [ - 774, + 814, { "distinct_on": [ - 788, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -126846,19 +132666,19 @@ export default { 38 ], "order_by": [ - 786, + 826, "[e_match_mode_order_by!]" ], "where": [ - 777 + 817 ] } ], "e_match_mode_aggregate": [ - 775, + 815, { "distinct_on": [ - 788, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -126868,16 +132688,16 @@ export default { 38 ], "order_by": [ - 786, + 826, "[e_match_mode_order_by!]" ], "where": [ - 777 + 817 ] } ], "e_match_mode_by_pk": [ - 774, + 814, { "value": [ 78, @@ -126886,10 +132706,10 @@ export default { } ], "e_match_status": [ - 794, + 834, { "distinct_on": [ - 809, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -126899,19 +132719,19 @@ export default { 38 ], "order_by": [ - 807, + 847, "[e_match_status_order_by!]" ], "where": [ - 797 + 837 ] } ], "e_match_status_aggregate": [ - 795, + 835, { "distinct_on": [ - 809, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -126921,16 +132741,16 @@ export default { 38 ], "order_by": [ - 807, + 847, "[e_match_status_order_by!]" ], "where": [ - 797 + 837 ] } ], "e_match_status_by_pk": [ - 794, + 834, { "value": [ 78, @@ -126939,10 +132759,10 @@ export default { } ], "e_match_types": [ - 815, + 855, { "distinct_on": [ - 830, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -126952,19 +132772,19 @@ export default { 38 ], "order_by": [ - 828, + 868, "[e_match_types_order_by!]" ], "where": [ - 818 + 858 ] } ], "e_match_types_aggregate": [ - 816, + 856, { "distinct_on": [ - 830, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -126974,16 +132794,16 @@ export default { 38 ], "order_by": [ - 828, + 868, "[e_match_types_order_by!]" ], "where": [ - 818 + 858 ] } ], "e_match_types_by_pk": [ - 815, + 855, { "value": [ 78, @@ -126992,10 +132812,10 @@ export default { } ], "e_notification_types": [ - 836, + 876, { "distinct_on": [ - 850, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -127005,19 +132825,19 @@ export default { 38 ], "order_by": [ - 848, + 888, "[e_notification_types_order_by!]" ], "where": [ - 839 + 879 ] } ], "e_notification_types_aggregate": [ - 837, + 877, { "distinct_on": [ - 850, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -127027,16 +132847,16 @@ export default { 38 ], "order_by": [ - 848, + 888, "[e_notification_types_order_by!]" ], "where": [ - 839 + 879 ] } ], "e_notification_types_by_pk": [ - 836, + 876, { "value": [ 78, @@ -127045,10 +132865,10 @@ export default { } ], "e_objective_types": [ - 856, + 896, { "distinct_on": [ - 870, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -127058,19 +132878,19 @@ export default { 38 ], "order_by": [ - 868, + 908, "[e_objective_types_order_by!]" ], "where": [ - 859 + 899 ] } ], "e_objective_types_aggregate": [ - 857, + 897, { "distinct_on": [ - 870, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -127080,16 +132900,16 @@ export default { 38 ], "order_by": [ - 868, + 908, "[e_objective_types_order_by!]" ], "where": [ - 859 + 899 ] } ], "e_objective_types_by_pk": [ - 856, + 896, { "value": [ 78, @@ -127098,10 +132918,10 @@ export default { } ], "e_player_roles": [ - 876, + 916, { "distinct_on": [ - 890, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -127111,19 +132931,19 @@ export default { 38 ], "order_by": [ - 888, + 928, "[e_player_roles_order_by!]" ], "where": [ - 879 + 919 ] } ], "e_player_roles_aggregate": [ - 877, + 917, { "distinct_on": [ - 890, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -127133,16 +132953,16 @@ export default { 38 ], "order_by": [ - 888, + 928, "[e_player_roles_order_by!]" ], "where": [ - 879 + 919 ] } ], "e_player_roles_by_pk": [ - 876, + 916, { "value": [ 78, @@ -127151,10 +132971,10 @@ export default { } ], "e_plugin_runtimes": [ - 896, + 936, { "distinct_on": [ - 910, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -127164,19 +132984,19 @@ export default { 38 ], "order_by": [ - 908, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 939 ] } ], "e_plugin_runtimes_aggregate": [ - 897, + 937, { "distinct_on": [ - 910, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -127186,16 +133006,16 @@ export default { 38 ], "order_by": [ - 908, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 939 ] } ], "e_plugin_runtimes_by_pk": [ - 896, + 936, { "value": [ 78, @@ -127204,10 +133024,10 @@ export default { } ], "e_ready_settings": [ - 916, + 956, { "distinct_on": [ - 930, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -127217,19 +133037,19 @@ export default { 38 ], "order_by": [ - 928, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 959 ] } ], "e_ready_settings_aggregate": [ - 917, + 957, { "distinct_on": [ - 930, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -127239,16 +133059,16 @@ export default { 38 ], "order_by": [ - 928, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 959 ] } ], "e_ready_settings_by_pk": [ - 916, + 956, { "value": [ 78, @@ -127257,10 +133077,10 @@ export default { } ], "e_sanction_types": [ - 936, + 976, { "distinct_on": [ - 951, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -127270,19 +133090,19 @@ export default { 38 ], "order_by": [ - 949, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 979 ] } ], "e_sanction_types_aggregate": [ - 937, + 977, { "distinct_on": [ - 951, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -127292,16 +133112,16 @@ export default { 38 ], "order_by": [ - 949, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 979 ] } ], "e_sanction_types_by_pk": [ - 936, + 976, { "value": [ 78, @@ -127310,10 +133130,10 @@ export default { } ], "e_scrim_request_statuses": [ - 957, + 997, { "distinct_on": [ - 971, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -127323,19 +133143,19 @@ export default { 38 ], "order_by": [ - 969, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 1000 ] } ], "e_scrim_request_statuses_aggregate": [ - 958, + 998, { "distinct_on": [ - 971, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -127345,16 +133165,16 @@ export default { 38 ], "order_by": [ - 969, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 1000 ] } ], "e_scrim_request_statuses_by_pk": [ - 957, + 997, { "value": [ 78, @@ -127363,10 +133183,10 @@ export default { } ], "e_server_types": [ - 977, + 1017, { "distinct_on": [ - 991, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -127376,19 +133196,19 @@ export default { 38 ], "order_by": [ - 989, + 1029, "[e_server_types_order_by!]" ], "where": [ - 980 + 1020 ] } ], "e_server_types_aggregate": [ - 978, + 1018, { "distinct_on": [ - 991, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -127398,16 +133218,16 @@ export default { 38 ], "order_by": [ - 989, + 1029, "[e_server_types_order_by!]" ], "where": [ - 980 + 1020 ] } ], "e_server_types_by_pk": [ - 977, + 1017, { "value": [ 78, @@ -127416,10 +133236,10 @@ export default { } ], "e_sides": [ - 997, + 1037, { "distinct_on": [ - 1011, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -127429,19 +133249,19 @@ export default { 38 ], "order_by": [ - 1009, + 1049, "[e_sides_order_by!]" ], "where": [ - 1000 + 1040 ] } ], "e_sides_aggregate": [ - 998, + 1038, { "distinct_on": [ - 1011, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -127451,16 +133271,16 @@ export default { 38 ], "order_by": [ - 1009, + 1049, "[e_sides_order_by!]" ], "where": [ - 1000 + 1040 ] } ], "e_sides_by_pk": [ - 997, + 1037, { "value": [ 78, @@ -127469,10 +133289,10 @@ export default { } ], "e_system_alert_types": [ - 1017, + 1057, { "distinct_on": [ - 1031, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -127482,19 +133302,19 @@ export default { 38 ], "order_by": [ - 1029, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1060 ] } ], "e_system_alert_types_aggregate": [ - 1018, + 1058, { "distinct_on": [ - 1031, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -127504,16 +133324,16 @@ export default { 38 ], "order_by": [ - 1029, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1060 ] } ], "e_system_alert_types_by_pk": [ - 1017, + 1057, { "value": [ 78, @@ -127522,10 +133342,10 @@ export default { } ], "e_team_roles": [ - 1037, + 1077, { "distinct_on": [ - 1052, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -127535,19 +133355,19 @@ export default { 38 ], "order_by": [ - 1050, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1080 ] } ], "e_team_roles_aggregate": [ - 1038, + 1078, { "distinct_on": [ - 1052, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -127557,16 +133377,16 @@ export default { 38 ], "order_by": [ - 1050, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1080 ] } ], "e_team_roles_by_pk": [ - 1037, + 1077, { "value": [ 78, @@ -127575,10 +133395,10 @@ export default { } ], "e_team_roster_statuses": [ - 1058, + 1098, { "distinct_on": [ - 1072, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -127588,19 +133408,19 @@ export default { 38 ], "order_by": [ - 1070, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1101 ] } ], "e_team_roster_statuses_aggregate": [ - 1059, + 1099, { "distinct_on": [ - 1072, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -127610,16 +133430,16 @@ export default { 38 ], "order_by": [ - 1070, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1101 ] } ], "e_team_roster_statuses_by_pk": [ - 1058, + 1098, { "value": [ 78, @@ -127628,10 +133448,10 @@ export default { } ], "e_timeout_settings": [ - 1078, + 1118, { "distinct_on": [ - 1092, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -127641,19 +133461,19 @@ export default { 38 ], "order_by": [ - 1090, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1121 ] } ], "e_timeout_settings_aggregate": [ - 1079, + 1119, { "distinct_on": [ - 1092, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -127663,16 +133483,16 @@ export default { 38 ], "order_by": [ - 1090, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1121 ] } ], "e_timeout_settings_by_pk": [ - 1078, + 1118, { "value": [ 78, @@ -127681,10 +133501,10 @@ export default { } ], "e_tournament_stage_types": [ - 1098, + 1138, { "distinct_on": [ - 1113, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -127694,19 +133514,19 @@ export default { 38 ], "order_by": [ - 1111, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1141 ] } ], "e_tournament_stage_types_aggregate": [ - 1099, + 1139, { "distinct_on": [ - 1113, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -127716,16 +133536,16 @@ export default { 38 ], "order_by": [ - 1111, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1141 ] } ], "e_tournament_stage_types_by_pk": [ - 1098, + 1138, { "value": [ 78, @@ -127734,10 +133554,10 @@ export default { } ], "e_tournament_status": [ - 1119, + 1159, { "distinct_on": [ - 1134, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -127747,19 +133567,19 @@ export default { 38 ], "order_by": [ - 1132, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1162 ] } ], "e_tournament_status_aggregate": [ - 1120, + 1160, { "distinct_on": [ - 1134, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -127769,16 +133589,16 @@ export default { 38 ], "order_by": [ - 1132, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1162 ] } ], "e_tournament_status_by_pk": [ - 1119, + 1159, { "value": [ 78, @@ -127787,10 +133607,10 @@ export default { } ], "e_utility_types": [ - 1140, + 1180, { "distinct_on": [ - 1154, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -127800,19 +133620,19 @@ export default { 38 ], "order_by": [ - 1152, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1183 ] } ], "e_utility_types_aggregate": [ - 1141, + 1181, { "distinct_on": [ - 1154, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -127822,16 +133642,16 @@ export default { 38 ], "order_by": [ - 1152, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1183 ] } ], "e_utility_types_by_pk": [ - 1140, + 1180, { "value": [ 78, @@ -127840,10 +133660,10 @@ export default { } ], "e_veto_pick_types": [ - 1160, + 1200, { "distinct_on": [ - 1174, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -127853,19 +133673,19 @@ export default { 38 ], "order_by": [ - 1172, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1203 ] } ], "e_veto_pick_types_aggregate": [ - 1161, + 1201, { "distinct_on": [ - 1174, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -127875,16 +133695,16 @@ export default { 38 ], "order_by": [ - 1172, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1203 ] } ], "e_veto_pick_types_by_pk": [ - 1160, + 1200, { "value": [ 78, @@ -127893,10 +133713,10 @@ export default { } ], "e_winning_reasons": [ - 1180, + 1220, { "distinct_on": [ - 1194, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -127906,19 +133726,19 @@ export default { 38 ], "order_by": [ - 1192, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1223 ] } ], "e_winning_reasons_aggregate": [ - 1181, + 1221, { "distinct_on": [ - 1194, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -127928,16 +133748,16 @@ export default { 38 ], "order_by": [ - 1192, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1223 ] } ], "e_winning_reasons_by_pk": [ - 1180, + 1220, { "value": [ 78, @@ -127945,11 +133765,459 @@ 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": [ - 1202, + 1501, { "distinct_on": [ - 1216, + 1515, "[friends_select_column!]" ], "limit": [ @@ -127959,19 +134227,19 @@ export default { 38 ], "order_by": [ - 1214, + 1513, "[friends_order_by!]" ], "where": [ - 1206 + 1505 ] } ], "friends_aggregate": [ - 1203, + 1502, { "distinct_on": [ - 1216, + 1515, "[friends_select_column!]" ], "limit": [ @@ -127981,16 +134249,16 @@ export default { 38 ], "order_by": [ - 1214, + 1513, "[friends_order_by!]" ], "where": [ - 1206 + 1505 ] } ], "friends_by_pk": [ - 1202, + 1501, { "other_player_steam_id": [ 180, @@ -128003,10 +134271,10 @@ export default { } ], "game_server_nodes": [ - 1229, + 1528, { "distinct_on": [ - 1258, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -128016,19 +134284,19 @@ export default { 38 ], "order_by": [ - 1255, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1540 ] } ], "game_server_nodes_aggregate": [ - 1230, + 1529, { "distinct_on": [ - 1258, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -128038,16 +134306,16 @@ export default { 38 ], "order_by": [ - 1255, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1540 ] } ], "game_server_nodes_by_pk": [ - 1229, + 1528, { "id": [ 78, @@ -128056,10 +134324,10 @@ export default { } ], "game_versions": [ - 1280, + 1579, { "distinct_on": [ - 1300, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -128069,19 +134337,19 @@ export default { 38 ], "order_by": [ - 1297, + 1596, "[game_versions_order_by!]" ], "where": [ - 1285 + 1584 ] } ], "game_versions_aggregate": [ - 1281, + 1580, { "distinct_on": [ - 1300, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -128091,16 +134359,16 @@ export default { 38 ], "order_by": [ - 1297, + 1596, "[game_versions_order_by!]" ], "where": [ - 1285 + 1584 ] } ], "game_versions_by_pk": [ - 1280, + 1579, { "build_id": [ 38, @@ -128109,10 +134377,10 @@ export default { } ], "gamedata_signature_validations": [ - 1313, + 1612, { "distinct_on": [ - 1332, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -128122,19 +134390,19 @@ export default { 38 ], "order_by": [ - 1329, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1617 ] } ], "gamedata_signature_validations_aggregate": [ - 1314, + 1613, { "distinct_on": [ - 1332, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -128144,19 +134412,19 @@ export default { 38 ], "order_by": [ - 1329, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1617 ] } ], "gamedata_signature_validations_by_pk": [ - 1313, + 1612, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -128192,7 +134460,7 @@ export default { 34, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "target_steam_id": [ @@ -128276,15 +134544,67 @@ 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": [ - 1355, + 1655, { "args": [ - 1345, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128294,23 +134614,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_leaderboard_aggregate": [ - 1356, + 1656, { "args": [ - 1345, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128320,23 +134640,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_league_season_leaderboard": [ - 1355, + 1655, { "args": [ - 1346, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128346,23 +134666,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_league_season_leaderboard_aggregate": [ - 1356, + 1656, { "args": [ - 1346, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128372,23 +134692,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_player_leaderboard_rank": [ - 2922, + 3222, { "args": [ - 1347, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128398,23 +134718,23 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2923, + 3223, { "args": [ - 1347, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128424,19 +134744,19 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "leaderboard_entries": [ - 1355, + 1655, { "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128446,19 +134766,19 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "leaderboard_entries_aggregate": [ - 1356, + 1656, { "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128468,19 +134788,19 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "league_divisions": [ - 1379, + 1679, { "distinct_on": [ - 1394, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -128490,19 +134810,19 @@ export default { 38 ], "order_by": [ - 1392, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1683 ] } ], "league_divisions_aggregate": [ - 1380, + 1680, { "distinct_on": [ - 1394, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -128512,28 +134832,28 @@ export default { 38 ], "order_by": [ - 1392, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1683 ] } ], "league_divisions_by_pk": [ - 1379, + 1679, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_match_weeks": [ - 1407, + 1707, { "distinct_on": [ - 1428, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -128543,19 +134863,19 @@ export default { 38 ], "order_by": [ - 1426, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1716 ] } ], "league_match_weeks_aggregate": [ - 1408, + 1708, { "distinct_on": [ - 1428, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -128565,28 +134885,28 @@ export default { 38 ], "order_by": [ - 1426, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1716 ] } ], "league_match_weeks_by_pk": [ - 1407, + 1707, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_relegation_playoffs": [ - 1448, + 1748, { "distinct_on": [ - 1469, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -128596,19 +134916,19 @@ export default { 38 ], "order_by": [ - 1467, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1757 ] } ], "league_relegation_playoffs_aggregate": [ - 1449, + 1749, { "distinct_on": [ - 1469, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -128618,28 +134938,28 @@ export default { 38 ], "order_by": [ - 1467, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1757 ] } ], "league_relegation_playoffs_by_pk": [ - 1448, + 1748, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_scheduling_proposals": [ - 1489, + 1789, { "distinct_on": [ - 1510, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -128649,19 +134969,19 @@ export default { 38 ], "order_by": [ - 1508, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1798 ] } ], "league_scheduling_proposals_aggregate": [ - 1490, + 1790, { "distinct_on": [ - 1510, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -128671,28 +134991,28 @@ export default { 38 ], "order_by": [ - 1508, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1798 ] } ], "league_scheduling_proposals_by_pk": [ - 1489, + 1789, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_season_divisions": [ - 1530, + 1830, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -128702,19 +135022,19 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], "league_season_divisions_aggregate": [ - 1531, + 1831, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -128724,28 +135044,28 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], "league_season_divisions_by_pk": [ - 1530, + 1830, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_seasons": [ - 1555, + 1855, { "distinct_on": [ - 1575, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -128755,19 +135075,19 @@ export default { 38 ], "order_by": [ - 1572, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1860 ] } ], "league_seasons_aggregate": [ - 1556, + 1856, { "distinct_on": [ - 1575, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -128777,28 +135097,28 @@ export default { 38 ], "order_by": [ - 1572, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1860 ] } ], "league_seasons_by_pk": [ - 1555, + 1855, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_team_movements": [ - 1588, + 1888, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -128808,19 +135128,19 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "league_team_movements_aggregate": [ - 1589, + 1889, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -128830,28 +135150,28 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "league_team_movements_by_pk": [ - 1588, + 1888, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_team_rosters": [ - 1629, + 1929, { "distinct_on": [ - 1650, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -128861,19 +135181,19 @@ export default { 38 ], "order_by": [ - 1648, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1938 ] } ], "league_team_rosters_aggregate": [ - 1630, + 1930, { "distinct_on": [ - 1650, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -128883,19 +135203,19 @@ export default { 38 ], "order_by": [ - 1648, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1938 ] } ], "league_team_rosters_by_pk": [ - 1629, + 1929, { "league_team_season_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -128905,10 +135225,10 @@ export default { } ], "league_team_seasons": [ - 1670, + 1970, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -128918,19 +135238,19 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], "league_team_seasons_aggregate": [ - 1671, + 1971, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -128940,28 +135260,28 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], "league_team_seasons_by_pk": [ - 1670, + 1970, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_teams": [ - 1712, + 2012, { "distinct_on": [ - 1725, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -128971,19 +135291,19 @@ export default { 38 ], "order_by": [ - 1723, + 2023, "[league_teams_order_by!]" ], "where": [ - 1715 + 2015 ] } ], "league_teams_aggregate": [ - 1713, + 2013, { "distinct_on": [ - 1725, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -128993,19 +135313,19 @@ export default { 38 ], "order_by": [ - 1723, + 2023, "[league_teams_order_by!]" ], "where": [ - 1715 + 2015 ] } ], "league_teams_by_pk": [ - 1712, + 2012, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -129026,10 +135346,10 @@ export default { } ], "lobbies": [ - 1731, + 2031, { "distinct_on": [ - 1744, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -129039,19 +135359,19 @@ export default { 38 ], "order_by": [ - 1742, + 2042, "[lobbies_order_by!]" ], "where": [ - 1734 + 2034 ] } ], "lobbies_aggregate": [ - 1732, + 2032, { "distinct_on": [ - 1744, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -129061,28 +135381,28 @@ export default { 38 ], "order_by": [ - 1742, + 2042, "[lobbies_order_by!]" ], "where": [ - 1734 + 2034 ] } ], "lobbies_by_pk": [ - 1731, + 2031, { "id": [ - 4462, + 4762, "uuid!" ] } ], "lobby_players": [ - 1750, + 2050, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -129092,19 +135412,19 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], "lobby_players_aggregate": [ - 1751, + 2051, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -129114,19 +135434,19 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], "lobby_players_by_pk": [ - 1750, + 2050, { "lobby_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -129136,10 +135456,10 @@ export default { } ], "map_pools": [ - 1795, + 2095, { "distinct_on": [ - 1808, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -129149,19 +135469,19 @@ export default { 38 ], "order_by": [ - 1806, + 2106, "[map_pools_order_by!]" ], "where": [ - 1798 + 2098 ] } ], "map_pools_aggregate": [ - 1796, + 2096, { "distinct_on": [ - 1808, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -129171,28 +135491,28 @@ export default { 38 ], "order_by": [ - 1806, + 2106, "[map_pools_order_by!]" ], "where": [ - 1798 + 2098 ] } ], "map_pools_by_pk": [ - 1795, + 2095, { "id": [ - 4462, + 4762, "uuid!" ] } ], "maps": [ - 1814, + 2114, { "distinct_on": [ - 1835, + 2135, "[maps_select_column!]" ], "limit": [ @@ -129202,19 +135522,19 @@ export default { 38 ], "order_by": [ - 1833, + 2133, "[maps_order_by!]" ], "where": [ - 1823 + 2123 ] } ], "maps_aggregate": [ - 1815, + 2115, { "distinct_on": [ - 1835, + 2135, "[maps_select_column!]" ], "limit": [ @@ -129224,28 +135544,28 @@ export default { 38 ], "order_by": [ - 1833, + 2133, "[maps_order_by!]" ], "where": [ - 1823 + 2123 ] } ], "maps_by_pk": [ - 1814, + 2114, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_clips": [ - 1843, + 2143, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -129255,19 +135575,19 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_clips_aggregate": [ - 1844, + 2144, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -129277,28 +135597,28 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_clips_by_pk": [ - 1843, + 2143, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_demo_sessions": [ - 1885, + 2185, { "distinct_on": [ - 1911, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -129308,19 +135628,19 @@ export default { 38 ], "order_by": [ - 1908, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2195 ] } ], "match_demo_sessions_aggregate": [ - 1886, + 2186, { "distinct_on": [ - 1911, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -129330,28 +135650,28 @@ export default { 38 ], "order_by": [ - 1908, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2195 ] } ], "match_demo_sessions_by_pk": [ - 1885, + 2185, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_lineup_players": [ - 1931, + 2231, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -129361,19 +135681,19 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "match_lineup_players_aggregate": [ - 1932, + 2232, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -129383,28 +135703,28 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "match_lineup_players_by_pk": [ - 1931, + 2231, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_lineups": [ - 1976, + 2276, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -129414,19 +135734,19 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], "match_lineups_aggregate": [ - 1977, + 2277, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -129436,28 +135756,28 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], "match_lineups_by_pk": [ - 1976, + 2276, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_map_demos": [ - 2018, + 2318, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -129467,19 +135787,19 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], "match_map_demos_aggregate": [ - 2019, + 2319, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -129489,28 +135809,28 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], "match_map_demos_by_pk": [ - 2018, + 2318, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_map_rounds": [ - 2069, + 2369, { "distinct_on": [ - 2090, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -129520,19 +135840,19 @@ export default { 38 ], "order_by": [ - 2088, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2378 ] } ], "match_map_rounds_aggregate": [ - 2070, + 2370, { "distinct_on": [ - 2090, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -129542,28 +135862,28 @@ export default { 38 ], "order_by": [ - 2088, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2378 ] } ], "match_map_rounds_by_pk": [ - 2069, + 2369, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_map_veto_picks": [ - 2110, + 2410, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -129573,19 +135893,19 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "match_map_veto_picks_aggregate": [ - 2111, + 2411, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -129595,28 +135915,28 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "match_map_veto_picks_by_pk": [ - 2110, + 2410, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_maps": [ - 2134, + 2434, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -129626,19 +135946,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_maps_aggregate": [ - 2135, + 2435, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -129648,28 +135968,28 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_maps_by_pk": [ - 2134, + 2434, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_options": [ - 2176, + 2476, { "distinct_on": [ - 2191, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -129679,19 +135999,19 @@ export default { 38 ], "order_by": [ - 2189, + 2489, "[match_options_order_by!]" ], "where": [ - 2180 + 2480 ] } ], "match_options_aggregate": [ - 2177, + 2477, { "distinct_on": [ - 2191, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -129701,28 +136021,28 @@ export default { 38 ], "order_by": [ - 2189, + 2489, "[match_options_order_by!]" ], "where": [ - 2180 + 2480 ] } ], "match_options_by_pk": [ - 2176, + 2476, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_region_veto_picks": [ - 2204, + 2504, { "distinct_on": [ - 2222, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129732,19 +136052,19 @@ export default { 38 ], "order_by": [ - 2220, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2511 ] } ], "match_region_veto_picks_aggregate": [ - 2205, + 2505, { "distinct_on": [ - 2222, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129754,28 +136074,28 @@ export default { 38 ], "order_by": [ - 2220, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2511 ] } ], "match_region_veto_picks_by_pk": [ - 2204, + 2504, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_streams": [ - 2228, + 2528, { "distinct_on": [ - 2256, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -129785,19 +136105,19 @@ export default { 38 ], "order_by": [ - 2253, + 2553, "[match_streams_order_by!]" ], "where": [ - 2240 + 2540 ] } ], "match_streams_aggregate": [ - 2229, + 2529, { "distinct_on": [ - 2256, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -129807,28 +136127,28 @@ export default { 38 ], "order_by": [ - 2253, + 2553, "[match_streams_order_by!]" ], "where": [ - 2240 + 2540 ] } ], "match_streams_by_pk": [ - 2228, + 2528, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_type_cfgs": [ - 2278, + 2578, { "distinct_on": [ - 2290, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129838,19 +136158,19 @@ export default { 38 ], "order_by": [ - 2288, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2581 ] } ], "match_type_cfgs_aggregate": [ - 2279, + 2579, { "distinct_on": [ - 2290, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129860,28 +136180,28 @@ export default { 38 ], "order_by": [ - 2288, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2581 ] } ], "match_type_cfgs_by_pk": [ - 2278, + 2578, { "type": [ - 551, + 591, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2296, + 2596, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -129891,19 +136211,19 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matches_aggregate": [ - 2297, + 2597, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -129913,19 +136233,19 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matches_by_pk": [ - 2296, + 2596, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -129934,10 +136254,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2338, + 2638, { "distinct_on": [ - 2350, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129947,19 +136267,19 @@ export default { 38 ], "order_by": [ - 2348, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2641 ] } ], "migration_hashes_hashes_aggregate": [ - 2339, + 2639, { "distinct_on": [ - 2350, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129969,16 +136289,16 @@ export default { 38 ], "order_by": [ - 2348, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2641 ] } ], "migration_hashes_hashes_by_pk": [ - 2338, + 2638, { "name": [ 78, @@ -129987,10 +136307,10 @@ export default { } ], "my_friends": [ - 2356, + 2656, { "distinct_on": [ - 2381, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -130000,19 +136320,19 @@ export default { 38 ], "order_by": [ - 2379, + 2679, "[my_friends_order_by!]" ], "where": [ - 2368 + 2668 ] } ], "my_friends_aggregate": [ - 2357, + 2657, { "distinct_on": [ - 2381, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -130022,11 +136342,11 @@ export default { 38 ], "order_by": [ - 2379, + 2679, "[my_friends_order_by!]" ], "where": [ - 2368 + 2668 ] } ], @@ -130034,7 +136354,7 @@ export default { 48, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -130043,10 +136363,10 @@ export default { 48 ], "news_articles": [ - 2402, + 2702, { "distinct_on": [ - 2416, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -130056,19 +136376,19 @@ export default { 38 ], "order_by": [ - 2414, + 2714, "[news_articles_order_by!]" ], "where": [ - 2406 + 2706 ] } ], "news_articles_aggregate": [ - 2403, + 2703, { "distinct_on": [ - 2416, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -130078,28 +136398,28 @@ export default { 38 ], "order_by": [ - 2414, + 2714, "[news_articles_order_by!]" ], "where": [ - 2406 + 2706 ] } ], "news_articles_by_pk": [ - 2402, + 2702, { "id": [ - 4462, + 4762, "uuid!" ] } ], "notifications": [ - 2429, + 2729, { "distinct_on": [ - 2457, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -130109,19 +136429,19 @@ export default { 38 ], "order_by": [ - 2454, + 2754, "[notifications_order_by!]" ], "where": [ - 2441 + 2741 ] } ], "notifications_aggregate": [ - 2430, + 2730, { "distinct_on": [ - 2457, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -130131,28 +136451,28 @@ export default { 38 ], "order_by": [ - 2454, + 2754, "[notifications_order_by!]" ], "where": [ - 2441 + 2741 ] } ], "notifications_by_pk": [ - 2429, + 2729, { "id": [ - 4462, + 4762, "uuid!" ] } ], "pending_match_import_players": [ - 2482, + 2782, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -130162,19 +136482,19 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], "pending_match_import_players_aggregate": [ - 2483, + 2783, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -130184,32 +136504,32 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], "pending_match_import_players_by_pk": [ - 2482, + 2782, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2779, "numeric!" ] } ], "pending_match_imports": [ - 2523, + 2823, { "distinct_on": [ - 2538, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -130219,19 +136539,19 @@ export default { 38 ], "order_by": [ - 2536, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2827 ] } ], "pending_match_imports_aggregate": [ - 2524, + 2824, { "distinct_on": [ - 2538, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -130241,28 +136561,28 @@ export default { 38 ], "order_by": [ - 2536, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2827 ] } ], "pending_match_imports_by_pk": [ - 2523, + 2823, { "valve_match_id": [ - 2479, + 2779, "numeric!" ] } ], "player_aim_stats_demo": [ - 2551, + 2851, { "distinct_on": [ - 2565, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -130272,19 +136592,19 @@ export default { 38 ], "order_by": [ - 2563, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2855 ] } ], "player_aim_stats_demo_aggregate": [ - 2552, + 2852, { "distinct_on": [ - 2565, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -130294,32 +136614,32 @@ export default { 38 ], "order_by": [ - 2563, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2855 ] } ], "player_aim_stats_demo_by_pk": [ - 2551, + 2851, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2578, + 2878, { "distinct_on": [ - 2599, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130329,19 +136649,19 @@ export default { 38 ], "order_by": [ - 2597, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2887 ] } ], "player_aim_weapon_stats_aggregate": [ - 2579, + 2879, { "distinct_on": [ - 2599, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130351,19 +136671,19 @@ export default { 38 ], "order_by": [ - 2597, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2887 ] } ], "player_aim_weapon_stats_by_pk": [ - 2578, + 2878, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -130377,10 +136697,10 @@ export default { } ], "player_assists": [ - 2619, + 2919, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -130390,19 +136710,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_assists_aggregate": [ - 2620, + 2920, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -130412,16 +136732,16 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_assists_by_pk": [ - 2619, + 2919, { "attacked_steam_id": [ 180, @@ -130432,20 +136752,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_career_stats_v": [ - 2664, + 2964, { "distinct_on": [ - 2672, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130455,19 +136775,19 @@ export default { 38 ], "order_by": [ - 2671, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2968 ] } ], "player_career_stats_v_aggregate": [ - 2665, + 2965, { "distinct_on": [ - 2672, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130477,19 +136797,19 @@ export default { 38 ], "order_by": [ - 2671, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2968 ] } ], "player_damages": [ - 2682, + 2982, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -130499,19 +136819,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_damages_aggregate": [ - 2683, + 2983, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -130521,36 +136841,36 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_damages_by_pk": [ - 2682, + 2982, { "id": [ - 4462, + 4762, "uuid!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_elo": [ - 2723, + 3023, { "distinct_on": [ - 2737, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -130560,19 +136880,19 @@ export default { 38 ], "order_by": [ - 2735, + 3035, "[player_elo_order_by!]" ], "where": [ - 2727 + 3027 ] } ], "player_elo_aggregate": [ - 2724, + 3024, { "distinct_on": [ - 2737, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -130582,19 +136902,19 @@ export default { 38 ], "order_by": [ - 2735, + 3035, "[player_elo_order_by!]" ], "where": [ - 2727 + 3027 ] } ], "player_elo_by_pk": [ - 2723, + 3023, { "match_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -130602,16 +136922,16 @@ export default { "bigint!" ], "type": [ - 820, + 860, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2750, + 3050, { "distinct_on": [ - 2771, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130621,19 +136941,19 @@ export default { 38 ], "order_by": [ - 2769, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 3059 ] } ], "player_faceit_rank_history_aggregate": [ - 2751, + 3051, { "distinct_on": [ - 2771, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130643,28 +136963,28 @@ export default { 38 ], "order_by": [ - 2769, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 3059 ] } ], "player_faceit_rank_history_by_pk": [ - 2750, + 3050, { "id": [ - 4462, + 4762, "uuid!" ] } ], "player_flashes": [ - 2791, + 3091, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -130674,19 +136994,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "player_flashes_aggregate": [ - 2792, + 3092, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -130696,16 +137016,16 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "player_flashes_by_pk": [ - 2791, + 3091, { "attacked_steam_id": [ 180, @@ -130716,20 +137036,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_kills": [ - 2836, + 3136, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -130739,19 +137059,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_kills_aggregate": [ - 2837, + 3137, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -130761,16 +137081,16 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_kills_by_pk": [ - 2836, + 3136, { "attacked_steam_id": [ 180, @@ -130781,20 +137101,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2848, + 3148, { "distinct_on": [ - 2869, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130804,19 +137124,19 @@ export default { 38 ], "order_by": [ - 2867, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3157 ] } ], "player_kills_by_weapon_aggregate": [ - 2849, + 3149, { "distinct_on": [ - 2869, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130826,16 +137146,16 @@ export default { 38 ], "order_by": [ - 2867, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3157 ] } ], "player_kills_by_weapon_by_pk": [ - 2848, + 3148, { "player_steam_id": [ 180, @@ -130848,10 +137168,10 @@ export default { } ], "player_leaderboard_rank": [ - 2922, + 3222, { "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130861,19 +137181,19 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "player_leaderboard_rank_aggregate": [ - 2923, + 3223, { "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130883,19 +137203,19 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "player_match_map_stats": [ - 2945, + 3245, { "distinct_on": [ - 2966, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130905,19 +137225,19 @@ export default { 38 ], "order_by": [ - 2964, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3254 ] } ], "player_match_map_stats_aggregate": [ - 2946, + 3246, { "distinct_on": [ - 2966, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130927,19 +137247,19 @@ export default { 38 ], "order_by": [ - 2964, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3254 ] } ], "player_match_map_stats_by_pk": [ - 2945, + 3245, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -130949,10 +137269,10 @@ export default { } ], "player_match_performance_v": [ - 2986, + 3286, { "distinct_on": [ - 2994, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130962,19 +137282,19 @@ export default { 38 ], "order_by": [ - 2993, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3290 ] } ], "player_match_performance_v_aggregate": [ - 2987, + 3287, { "distinct_on": [ - 2994, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130984,19 +137304,19 @@ export default { 38 ], "order_by": [ - 2993, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3290 ] } ], "player_match_stats_v": [ - 3004, + 3304, { "distinct_on": [ - 3020, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -131006,19 +137326,19 @@ export default { 38 ], "order_by": [ - 3019, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3313 ] } ], "player_match_stats_v_aggregate": [ - 3005, + 3305, { "distinct_on": [ - 3020, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -131028,19 +137348,19 @@ export default { 38 ], "order_by": [ - 3019, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3313 ] } ], "player_objectives": [ - 3037, + 3337, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -131050,19 +137370,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "player_objectives_aggregate": [ - 3038, + 3338, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -131072,19 +137392,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "player_objectives_by_pk": [ - 3037, + 3337, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -131092,16 +137412,16 @@ export default { "bigint!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_performance_v": [ - 3078, + 3378, { "distinct_on": [ - 3086, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -131111,19 +137431,19 @@ export default { 38 ], "order_by": [ - 3085, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3382 ] } ], "player_performance_v_aggregate": [ - 3079, + 3379, { "distinct_on": [ - 3086, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -131133,19 +137453,19 @@ export default { 38 ], "order_by": [ - 3085, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3382 ] } ], "player_premier_rank_history": [ - 3096, + 3396, { "distinct_on": [ - 3117, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -131155,19 +137475,19 @@ export default { 38 ], "order_by": [ - 3115, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3405 ] } ], "player_premier_rank_history_aggregate": [ - 3097, + 3397, { "distinct_on": [ - 3117, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -131177,28 +137497,28 @@ export default { 38 ], "order_by": [ - 3115, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3405 ] } ], "player_premier_rank_history_by_pk": [ - 3096, + 3396, { "id": [ - 4462, + 4762, "uuid!" ] } ], "player_sanctions": [ - 3137, + 3437, { "distinct_on": [ - 3158, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -131208,19 +137528,19 @@ export default { 38 ], "order_by": [ - 3156, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3446 ] } ], "player_sanctions_aggregate": [ - 3138, + 3438, { "distinct_on": [ - 3158, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -131230,32 +137550,32 @@ export default { 38 ], "order_by": [ - 3156, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3446 ] } ], "player_sanctions_by_pk": [ - 3137, + 3437, { "created_at": [ - 4024, + 4324, "timestamptz!" ], "id": [ - 4462, + 4762, "uuid!" ] } ], "player_season_stats": [ - 3178, + 3478, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -131265,19 +137585,19 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], "player_season_stats_aggregate": [ - 3179, + 3479, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -131287,32 +137607,32 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], "player_season_stats_by_pk": [ - 3178, + 3478, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4762, "uuid!" ] } ], "player_stats": [ - 3237, + 3537, { "distinct_on": [ - 3252, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -131322,19 +137642,19 @@ export default { 38 ], "order_by": [ - 3250, + 3550, "[player_stats_order_by!]" ], "where": [ - 3241 + 3541 ] } ], "player_stats_aggregate": [ - 3238, + 3538, { "distinct_on": [ - 3252, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -131344,16 +137664,16 @@ export default { 38 ], "order_by": [ - 3250, + 3550, "[player_stats_order_by!]" ], "where": [ - 3241 + 3541 ] } ], "player_stats_by_pk": [ - 3237, + 3537, { "player_steam_id": [ 180, @@ -131362,10 +137682,10 @@ export default { } ], "player_steam_bot_friend": [ - 3265, + 3565, { "distinct_on": [ - 3284, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131375,19 +137695,19 @@ export default { 38 ], "order_by": [ - 3281, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3570 ] } ], "player_steam_bot_friend_aggregate": [ - 3266, + 3566, { "distinct_on": [ - 3284, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131397,16 +137717,16 @@ export default { 38 ], "order_by": [ - 3281, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3570 ] } ], "player_steam_bot_friend_by_pk": [ - 3265, + 3565, { "steam_id": [ 180, @@ -131415,10 +137735,10 @@ export default { } ], "player_steam_match_auth": [ - 3297, + 3597, { "distinct_on": [ - 3311, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131428,19 +137748,19 @@ export default { 38 ], "order_by": [ - 3309, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3601 ] } ], "player_steam_match_auth_aggregate": [ - 3298, + 3598, { "distinct_on": [ - 3311, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131450,16 +137770,16 @@ export default { 38 ], "order_by": [ - 3309, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3601 ] } ], "player_steam_match_auth_by_pk": [ - 3297, + 3597, { "steam_id": [ 180, @@ -131468,10 +137788,10 @@ export default { } ], "player_unused_utility": [ - 3324, + 3624, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131481,19 +137801,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_unused_utility_aggregate": [ - 3325, + 3625, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131503,19 +137823,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_unused_utility_by_pk": [ - 3324, + 3624, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -131525,10 +137845,10 @@ export default { } ], "player_utility": [ - 3365, + 3665, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -131538,19 +137858,19 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "player_utility_aggregate": [ - 3366, + 3666, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -131560,36 +137880,36 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "player_utility_by_pk": [ - 3365, + 3665, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3406, + 3706, { "distinct_on": [ - 3422, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131599,19 +137919,19 @@ export default { 38 ], "order_by": [ - 3421, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3715 ] } ], "player_weapon_stats_v_aggregate": [ - 3407, + 3707, { "distinct_on": [ - 3422, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131621,19 +137941,19 @@ export default { 38 ], "order_by": [ - 3421, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3715 ] } ], "players": [ - 3439, + 3739, { "distinct_on": [ - 3454, + 3754, "[players_select_column!]" ], "limit": [ @@ -131643,19 +137963,19 @@ export default { 38 ], "order_by": [ - 3452, + 3752, "[players_order_by!]" ], "where": [ - 3443 + 3743 ] } ], "players_aggregate": [ - 3440, + 3740, { "distinct_on": [ - 3454, + 3754, "[players_select_column!]" ], "limit": [ @@ -131665,16 +137985,16 @@ export default { 38 ], "order_by": [ - 3452, + 3752, "[players_order_by!]" ], "where": [ - 3443 + 3743 ] } ], "players_by_pk": [ - 3439, + 3739, { "steam_id": [ 180, @@ -131683,10 +138003,10 @@ export default { } ], "plugin_versions": [ - 3467, + 3767, { "distinct_on": [ - 3481, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -131696,19 +138016,19 @@ export default { 38 ], "order_by": [ - 3479, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3771 ] } ], "plugin_versions_aggregate": [ - 3468, + 3768, { "distinct_on": [ - 3481, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -131718,19 +138038,19 @@ export default { 38 ], "order_by": [ - 3479, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3771 ] } ], "plugin_versions_by_pk": [ - 3467, + 3767, { "runtime": [ - 901, + 941, "e_plugin_runtimes_enum!" ], "version": [ @@ -131756,10 +138076,10 @@ export default { } ], "seasons": [ - 3498, + 3798, { "distinct_on": [ - 3513, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -131769,19 +138089,19 @@ export default { 38 ], "order_by": [ - 3511, + 3811, "[seasons_order_by!]" ], "where": [ - 3502 + 3802 ] } ], "seasons_aggregate": [ - 3499, + 3799, { "distinct_on": [ - 3513, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -131791,28 +138111,28 @@ export default { 38 ], "order_by": [ - 3511, + 3811, "[seasons_order_by!]" ], "where": [ - 3502 + 3802 ] } ], "seasons_by_pk": [ - 3498, + 3798, { "id": [ - 4462, + 4762, "uuid!" ] } ], "server_regions": [ - 3526, + 3826, { "distinct_on": [ - 3540, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -131822,19 +138142,19 @@ export default { 38 ], "order_by": [ - 3538, + 3838, "[server_regions_order_by!]" ], "where": [ - 3530 + 3830 ] } ], "server_regions_aggregate": [ - 3527, + 3827, { "distinct_on": [ - 3540, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -131844,16 +138164,16 @@ export default { 38 ], "order_by": [ - 3538, + 3838, "[server_regions_order_by!]" ], "where": [ - 3530 + 3830 ] } ], "server_regions_by_pk": [ - 3526, + 3826, { "value": [ 78, @@ -131862,10 +138182,10 @@ export default { } ], "servers": [ - 3553, + 3853, { "distinct_on": [ - 3577, + 3877, "[servers_select_column!]" ], "limit": [ @@ -131875,19 +138195,19 @@ export default { 38 ], "order_by": [ - 3575, + 3875, "[servers_order_by!]" ], "where": [ - 3564 + 3864 ] } ], "servers_aggregate": [ - 3554, + 3854, { "distinct_on": [ - 3577, + 3877, "[servers_select_column!]" ], "limit": [ @@ -131897,28 +138217,28 @@ export default { 38 ], "order_by": [ - 3575, + 3875, "[servers_order_by!]" ], "where": [ - 3564 + 3864 ] } ], "servers_by_pk": [ - 3553, + 3853, { "id": [ - 4462, + 4762, "uuid!" ] } ], "settings": [ - 3599, + 3899, { "distinct_on": [ - 3611, + 3911, "[settings_select_column!]" ], "limit": [ @@ -131928,19 +138248,19 @@ export default { 38 ], "order_by": [ - 3609, + 3909, "[settings_order_by!]" ], "where": [ - 3602 + 3902 ] } ], "settings_aggregate": [ - 3600, + 3900, { "distinct_on": [ - 3611, + 3911, "[settings_select_column!]" ], "limit": [ @@ -131950,16 +138270,16 @@ export default { 38 ], "order_by": [ - 3609, + 3909, "[settings_order_by!]" ], "where": [ - 3602 + 3902 ] } ], "settings_by_pk": [ - 3599, + 3899, { "name": [ 78, @@ -131971,10 +138291,10 @@ export default { 72 ], "steam_account_claims": [ - 3619, + 3919, { "distinct_on": [ - 3637, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -131984,19 +138304,19 @@ export default { 38 ], "order_by": [ - 3635, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3926 ] } ], "steam_account_claims_aggregate": [ - 3620, + 3920, { "distinct_on": [ - 3637, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -132006,28 +138326,28 @@ export default { 38 ], "order_by": [ - 3635, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3926 ] } ], "steam_account_claims_by_pk": [ - 3619, + 3919, { "id": [ - 4462, + 4762, "uuid!" ] } ], "steam_accounts": [ - 3643, + 3943, { "distinct_on": [ - 3658, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -132037,19 +138357,19 @@ export default { 38 ], "order_by": [ - 3656, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3947 ] } ], "steam_accounts_aggregate": [ - 3644, + 3944, { "distinct_on": [ - 3658, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -132059,28 +138379,28 @@ export default { 38 ], "order_by": [ - 3656, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3947 ] } ], "steam_accounts_by_pk": [ - 3643, + 3943, { "id": [ - 4462, + 4762, "uuid!" ] } ], "system_alerts": [ - 3671, + 3971, { "distinct_on": [ - 3685, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -132090,19 +138410,19 @@ export default { 38 ], "order_by": [ - 3683, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3975 ] } ], "system_alerts_aggregate": [ - 3672, + 3972, { "distinct_on": [ - 3685, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -132112,19 +138432,19 @@ export default { 38 ], "order_by": [ - 3683, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3975 ] } ], "system_alerts_by_pk": [ - 3671, + 3971, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -132133,16 +138453,16 @@ export default { 85, { "team_id": [ - 4462, + 4762, "uuid!" ] } ], "team_invites": [ - 3698, + 3998, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -132152,19 +138472,19 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "team_invites_aggregate": [ - 3699, + 3999, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -132174,28 +138494,28 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "team_invites_by_pk": [ - 3698, + 3998, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_roster": [ - 3739, + 4039, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -132205,19 +138525,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "team_roster_aggregate": [ - 3740, + 4040, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -132227,32 +138547,32 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "team_roster_by_pk": [ - 3739, + 4039, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_alerts": [ - 3784, + 4084, { "distinct_on": [ - 3798, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -132262,19 +138582,19 @@ export default { 38 ], "order_by": [ - 3796, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 4088 ] } ], "team_scrim_alerts_aggregate": [ - 3785, + 4085, { "distinct_on": [ - 3798, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -132284,28 +138604,28 @@ export default { 38 ], "order_by": [ - 3796, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 4088 ] } ], "team_scrim_alerts_by_pk": [ - 3784, + 4084, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_availability": [ - 3811, + 4111, { "distinct_on": [ - 3831, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -132315,19 +138635,19 @@ export default { 38 ], "order_by": [ - 3829, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 4120 ] } ], "team_scrim_availability_aggregate": [ - 3812, + 4112, { "distinct_on": [ - 3831, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -132337,28 +138657,28 @@ export default { 38 ], "order_by": [ - 3829, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 4120 ] } ], "team_scrim_availability_by_pk": [ - 3811, + 4111, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_request_proposals": [ - 3839, + 4139, { "distinct_on": [ - 3860, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132368,19 +138688,19 @@ export default { 38 ], "order_by": [ - 3858, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4148 ] } ], "team_scrim_request_proposals_aggregate": [ - 3840, + 4140, { "distinct_on": [ - 3860, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132390,28 +138710,28 @@ export default { 38 ], "order_by": [ - 3858, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4148 ] } ], "team_scrim_request_proposals_by_pk": [ - 3839, + 4139, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_requests": [ - 3880, + 4180, { "distinct_on": [ - 3904, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132421,19 +138741,19 @@ export default { 38 ], "order_by": [ - 3902, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4191 ] } ], "team_scrim_requests_aggregate": [ - 3881, + 4181, { "distinct_on": [ - 3904, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132443,28 +138763,28 @@ export default { 38 ], "order_by": [ - 3902, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4191 ] } ], "team_scrim_requests_by_pk": [ - 3880, + 4180, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_settings": [ - 3926, + 4226, { "distinct_on": [ - 3941, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132474,19 +138794,19 @@ export default { 38 ], "order_by": [ - 3939, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4230 ] } ], "team_scrim_settings_aggregate": [ - 3927, + 4227, { "distinct_on": [ - 3941, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132496,28 +138816,28 @@ export default { 38 ], "order_by": [ - 3939, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4230 ] } ], "team_scrim_settings_by_pk": [ - 3926, + 4226, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_suggestions": [ - 3954, + 4254, { "distinct_on": [ - 3968, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -132527,19 +138847,19 @@ export default { 38 ], "order_by": [ - 3966, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4258 ] } ], "team_suggestions_aggregate": [ - 3955, + 4255, { "distinct_on": [ - 3968, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -132549,28 +138869,28 @@ export default { 38 ], "order_by": [ - 3966, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4258 ] } ], "team_suggestions_by_pk": [ - 3954, + 4254, { "id": [ - 4462, + 4762, "uuid!" ] } ], "teams": [ - 3981, + 4281, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -132580,19 +138900,19 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], "teams_aggregate": [ - 3982, + 4282, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -132602,19 +138922,19 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], "teams_by_pk": [ - 3981, + 4281, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -132623,10 +138943,10 @@ export default { 86 ], "tournament_brackets": [ - 4026, + 4326, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132636,19 +138956,19 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4327, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132658,28 +138978,28 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], "tournament_brackets_by_pk": [ - 4026, + 4326, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_organizers": [ - 4072, + 4372, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132689,19 +139009,19 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4373, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132711,32 +139031,32 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "tournament_organizers_by_pk": [ - 4072, + 4372, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_stage_windows": [ - 4113, + 4413, { "distinct_on": [ - 4134, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132746,19 +139066,19 @@ export default { 38 ], "order_by": [ - 4132, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4422 ] } ], "tournament_stage_windows_aggregate": [ - 4114, + 4414, { "distinct_on": [ - 4134, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132768,28 +139088,28 @@ export default { 38 ], "order_by": [ - 4132, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4422 ] } ], "tournament_stage_windows_by_pk": [ - 4113, + 4413, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_stages": [ - 4154, + 4454, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -132799,19 +139119,19 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], "tournament_stages_aggregate": [ - 4155, + 4455, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -132821,28 +139141,28 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], "tournament_stages_by_pk": [ - 4154, + 4454, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_team_invites": [ - 4205, + 4505, { "distinct_on": [ - 4226, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132852,19 +139172,19 @@ export default { 38 ], "order_by": [ - 4224, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4514 ] } ], "tournament_team_invites_aggregate": [ - 4206, + 4506, { "distinct_on": [ - 4226, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132874,28 +139194,28 @@ export default { 38 ], "order_by": [ - 4224, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4514 ] } ], "tournament_team_invites_by_pk": [ - 4205, + 4505, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_team_roster": [ - 4246, + 4546, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132905,19 +139225,19 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "tournament_team_roster_aggregate": [ - 4247, + 4547, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132927,32 +139247,32 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "tournament_team_roster_by_pk": [ - 4246, + 4546, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_teams": [ - 4287, + 4587, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -132962,19 +139282,19 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], "tournament_teams_aggregate": [ - 4288, + 4588, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -132984,28 +139304,28 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], "tournament_teams_by_pk": [ - 4287, + 4587, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_trophies": [ - 4329, + 4629, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -133015,19 +139335,19 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4630, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -133037,28 +139357,28 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], "tournament_trophies_by_pk": [ - 4329, + 4629, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_trophy_configs": [ - 4374, + 4674, { "distinct_on": [ - 4396, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -133068,19 +139388,19 @@ export default { 38 ], "order_by": [ - 4394, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4683 ] } ], "tournament_trophy_configs_aggregate": [ - 4375, + 4675, { "distinct_on": [ - 4396, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -133090,28 +139410,28 @@ export default { 38 ], "order_by": [ - 4394, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4683 ] } ], "tournament_trophy_configs_by_pk": [ - 4374, + 4674, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournaments": [ - 4416, + 4716, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -133121,19 +139441,19 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], "tournaments_aggregate": [ - 4417, + 4717, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -133143,28 +139463,72 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], "tournaments_by_pk": [ - 4416, + 4716, { "id": [ - 4462, + 4762, "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": [ - 4465, + 4816, { "distinct_on": [ - 4473, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -133174,19 +139538,19 @@ export default { 38 ], "order_by": [ - 4472, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4820 ] } ], "v_gpu_pool_status_aggregate": [ - 4466, + 4817, { "distinct_on": [ - 4473, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -133196,19 +139560,19 @@ export default { 38 ], "order_by": [ - 4472, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4820 ] } ], "v_league_division_standings": [ - 4483, + 4834, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -133218,19 +139582,19 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "v_league_division_standings_aggregate": [ - 4484, + 4835, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -133240,19 +139604,19 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "v_league_season_player_stats": [ - 4516, + 4867, { "distinct_on": [ - 4542, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -133262,19 +139626,19 @@ export default { 38 ], "order_by": [ - 4541, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4886 ] } ], "v_league_season_player_stats_aggregate": [ - 4517, + 4868, { "distinct_on": [ - 4542, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -133284,19 +139648,19 @@ export default { 38 ], "order_by": [ - 4541, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4886 ] } ], "v_match_captains": [ - 4567, + 4918, { "distinct_on": [ - 4579, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -133306,19 +139670,19 @@ export default { 38 ], "order_by": [ - 4578, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4922 ] } ], "v_match_captains_aggregate": [ - 4568, + 4919, { "distinct_on": [ - 4579, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -133328,19 +139692,19 @@ export default { 38 ], "order_by": [ - 4578, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4922 ] } ], "v_match_clutches": [ - 4591, + 4942, { "distinct_on": [ - 4607, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133350,19 +139714,19 @@ export default { 38 ], "order_by": [ - 4606, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4951 ] } ], "v_match_clutches_aggregate": [ - 4592, + 4943, { "distinct_on": [ - 4607, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133372,19 +139736,19 @@ export default { 38 ], "order_by": [ - 4606, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4951 ] } ], "v_match_kill_pairs": [ - 4624, + 4975, { "distinct_on": [ - 4632, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133394,19 +139758,19 @@ export default { 38 ], "order_by": [ - 4631, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4979 ] } ], "v_match_kill_pairs_aggregate": [ - 4625, + 4976, { "distinct_on": [ - 4632, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133416,19 +139780,19 @@ export default { 38 ], "order_by": [ - 4631, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4979 ] } ], "v_match_lineup_buy_types": [ - 4642, + 4993, { "distinct_on": [ - 4650, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133438,19 +139802,19 @@ export default { 38 ], "order_by": [ - 4649, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4997 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4643, + 4994, { "distinct_on": [ - 4650, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133460,19 +139824,19 @@ export default { 38 ], "order_by": [ - 4649, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4997 ] } ], "v_match_lineup_map_stats": [ - 4660, + 5011, { "distinct_on": [ - 4668, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133482,19 +139846,19 @@ export default { 38 ], "order_by": [ - 4667, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 5015 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4661, + 5012, { "distinct_on": [ - 4668, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133504,19 +139868,19 @@ export default { 38 ], "order_by": [ - 4667, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 5015 ] } ], "v_match_map_backup_rounds": [ - 4678, + 5029, { "distinct_on": [ - 4689, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133526,19 +139890,19 @@ export default { 38 ], "order_by": [ - 4688, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 5033 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4679, + 5030, { "distinct_on": [ - 4689, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133548,19 +139912,19 @@ export default { 38 ], "order_by": [ - 4688, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 5033 ] } ], "v_match_player_buy_types": [ - 4701, + 5052, { "distinct_on": [ - 4709, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133570,19 +139934,19 @@ export default { 38 ], "order_by": [ - 4708, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 5056 ] } ], "v_match_player_buy_types_aggregate": [ - 4702, + 5053, { "distinct_on": [ - 4709, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133592,19 +139956,19 @@ export default { 38 ], "order_by": [ - 4708, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 5056 ] } ], "v_match_player_opening_duels": [ - 4719, + 5070, { "distinct_on": [ - 4735, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133614,19 +139978,19 @@ export default { 38 ], "order_by": [ - 4734, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 5079 ] } ], "v_match_player_opening_duels_aggregate": [ - 4720, + 5071, { "distinct_on": [ - 4735, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133636,19 +140000,19 @@ export default { 38 ], "order_by": [ - 4734, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 5079 ] } ], "v_player_arch_nemesis": [ - 4752, + 5103, { "distinct_on": [ - 4760, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133658,19 +140022,19 @@ export default { 38 ], "order_by": [ - 4759, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 5107 ] } ], "v_player_arch_nemesis_aggregate": [ - 4753, + 5104, { "distinct_on": [ - 4760, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133680,19 +140044,19 @@ export default { 38 ], "order_by": [ - 4759, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 5107 ] } ], "v_player_damage": [ - 4770, + 5121, { "distinct_on": [ - 4778, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -133702,19 +140066,19 @@ export default { 38 ], "order_by": [ - 4777, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5125 ] } ], "v_player_damage_aggregate": [ - 4771, + 5122, { "distinct_on": [ - 4778, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -133724,19 +140088,19 @@ export default { 38 ], "order_by": [ - 4777, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5125 ] } ], "v_player_elo": [ - 4788, + 5139, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -133746,19 +140110,19 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], "v_player_elo_aggregate": [ - 4789, + 5140, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -133768,19 +140132,19 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], "v_player_map_losses": [ - 4839, + 5190, { "distinct_on": [ - 4847, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133790,19 +140154,19 @@ export default { 38 ], "order_by": [ - 4846, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5194 ] } ], "v_player_map_losses_aggregate": [ - 4840, + 5191, { "distinct_on": [ - 4847, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133812,19 +140176,19 @@ export default { 38 ], "order_by": [ - 4846, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5194 ] } ], "v_player_map_wins": [ - 4857, + 5208, { "distinct_on": [ - 4865, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133834,19 +140198,19 @@ export default { 38 ], "order_by": [ - 4864, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5212 ] } ], "v_player_map_wins_aggregate": [ - 4858, + 5209, { "distinct_on": [ - 4865, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133856,19 +140220,19 @@ export default { 38 ], "order_by": [ - 4864, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5212 ] } ], "v_player_match_head_to_head": [ - 4875, + 5226, { "distinct_on": [ - 4883, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133878,19 +140242,19 @@ export default { 38 ], "order_by": [ - 4882, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5230 ] } ], "v_player_match_head_to_head_aggregate": [ - 4876, + 5227, { "distinct_on": [ - 4883, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133900,19 +140264,19 @@ export default { 38 ], "order_by": [ - 4882, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5230 ] } ], "v_player_match_map_hltv": [ - 4893, + 5244, { "distinct_on": [ - 4911, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133922,19 +140286,19 @@ export default { 38 ], "order_by": [ - 4910, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5253 ] } ], "v_player_match_map_hltv_aggregate": [ - 4894, + 5245, { "distinct_on": [ - 4911, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133944,19 +140308,19 @@ export default { 38 ], "order_by": [ - 4910, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5253 ] } ], "v_player_match_map_roles": [ - 4930, + 5281, { "distinct_on": [ - 4938, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133966,19 +140330,19 @@ export default { 38 ], "order_by": [ - 4937, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5285 ] } ], "v_player_match_map_roles_aggregate": [ - 4931, + 5282, { "distinct_on": [ - 4938, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133988,19 +140352,19 @@ export default { 38 ], "order_by": [ - 4937, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5285 ] } ], "v_player_match_performance": [ - 4948, + 5299, { "distinct_on": [ - 4956, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -134010,19 +140374,19 @@ export default { 38 ], "order_by": [ - 4955, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5303 ] } ], "v_player_match_performance_aggregate": [ - 4949, + 5300, { "distinct_on": [ - 4956, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -134032,19 +140396,19 @@ export default { 38 ], "order_by": [ - 4955, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5303 ] } ], "v_player_match_rating": [ - 4966, + 5317, { "distinct_on": [ - 4974, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -134054,19 +140418,19 @@ export default { 38 ], "order_by": [ - 4973, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5321 ] } ], "v_player_match_rating_aggregate": [ - 4967, + 5318, { "distinct_on": [ - 4974, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -134076,19 +140440,19 @@ export default { 38 ], "order_by": [ - 4973, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5321 ] } ], "v_player_multi_kills": [ - 4984, + 5335, { "distinct_on": [ - 5000, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -134098,19 +140462,19 @@ export default { 38 ], "order_by": [ - 4999, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5344 ] } ], "v_player_multi_kills_aggregate": [ - 4985, + 5336, { "distinct_on": [ - 5000, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -134120,19 +140484,19 @@ export default { 38 ], "order_by": [ - 4999, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5344 ] } ], "v_player_weapon_damage": [ - 5017, + 5368, { "distinct_on": [ - 5025, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -134142,19 +140506,19 @@ export default { 38 ], "order_by": [ - 5024, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5372 ] } ], "v_player_weapon_damage_aggregate": [ - 5018, + 5369, { "distinct_on": [ - 5025, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -134164,19 +140528,19 @@ export default { 38 ], "order_by": [ - 5024, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5372 ] } ], "v_player_weapon_kills": [ - 5035, + 5386, { "distinct_on": [ - 5043, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -134186,19 +140550,19 @@ export default { 38 ], "order_by": [ - 5042, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5390 ] } ], "v_player_weapon_kills_aggregate": [ - 5036, + 5387, { "distinct_on": [ - 5043, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -134208,19 +140572,19 @@ export default { 38 ], "order_by": [ - 5042, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5390 ] } ], "v_pool_maps": [ - 5053, + 5404, { "distinct_on": [ - 5070, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -134230,19 +140594,19 @@ export default { 38 ], "order_by": [ - 5069, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5413 ] } ], "v_pool_maps_aggregate": [ - 5054, + 5405, { "distinct_on": [ - 5070, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -134252,19 +140616,19 @@ export default { 38 ], "order_by": [ - 5069, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5413 ] } ], "v_steam_account_pool_status": [ - 5077, + 5428, { "distinct_on": [ - 5085, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -134274,19 +140638,19 @@ export default { 38 ], "order_by": [ - 5084, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5432 ] } ], "v_steam_account_pool_status_aggregate": [ - 5078, + 5429, { "distinct_on": [ - 5085, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -134296,19 +140660,19 @@ export default { 38 ], "order_by": [ - 5084, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5432 ] } ], "v_team_ranks": [ - 5095, + 5446, { "distinct_on": [ - 5105, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -134318,19 +140682,19 @@ export default { 38 ], "order_by": [ - 5104, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5450 ] } ], "v_team_ranks_aggregate": [ - 5096, + 5447, { "distinct_on": [ - 5105, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -134340,19 +140704,19 @@ export default { 38 ], "order_by": [ - 5104, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5450 ] } ], "v_team_reputation": [ - 5115, + 5466, { "distinct_on": [ - 5125, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134362,19 +140726,19 @@ export default { 38 ], "order_by": [ - 5124, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5470 ] } ], "v_team_reputation_aggregate": [ - 5116, + 5467, { "distinct_on": [ - 5125, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134384,19 +140748,19 @@ export default { 38 ], "order_by": [ - 5124, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5470 ] } ], "v_team_stage_results": [ - 5135, + 5486, { "distinct_on": [ - 5167, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134406,19 +140770,19 @@ export default { 38 ], "order_by": [ - 5165, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5505 ] } ], "v_team_stage_results_aggregate": [ - 5136, + 5487, { "distinct_on": [ - 5167, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134428,32 +140792,32 @@ export default { 38 ], "order_by": [ - 5165, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5505 ] } ], "v_team_stage_results_by_pk": [ - 5135, + 5486, { "tournament_stage_id": [ - 4462, + 4762, "uuid!" ], "tournament_team_id": [ - 4462, + 4762, "uuid!" ] } ], "v_team_tournament_results": [ - 5195, + 5546, { "distinct_on": [ - 5221, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134463,19 +140827,19 @@ export default { 38 ], "order_by": [ - 5220, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5565 ] } ], "v_team_tournament_results_aggregate": [ - 5196, + 5547, { "distinct_on": [ - 5221, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134485,19 +140849,19 @@ export default { 38 ], "order_by": [ - 5220, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5565 ] } ], "v_tournament_player_stats": [ - 5246, + 5597, { "distinct_on": [ - 5272, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134507,19 +140871,19 @@ export default { 38 ], "order_by": [ - 5271, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5616 ] } ], "v_tournament_player_stats_aggregate": [ - 5247, + 5598, { "distinct_on": [ - 5272, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134529,11 +140893,11 @@ export default { 38 ], "order_by": [ - 5271, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5616 ] } ], @@ -134546,7 +140910,7 @@ export default { 55, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -134555,17 +140919,17 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4024 + 4324 ], "winning_lineup_id": [ - 4462 + 4762 ] } ], @@ -134573,7 +140937,7 @@ export default { 81, { "invite_id": [ - 4462, + 4762, "uuid!" ], "type": [ @@ -134586,7 +140950,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4762, "uuid!" ], "steamId": [ @@ -134625,14 +140989,14 @@ export default { } ], "approve_league_season_movements": [ - 1588, + 1888, { "args": [ 179, "approve_league_season_movements_args!" ], "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -134642,11 +141006,11 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], @@ -134672,7 +141036,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4762, "uuid!" ] } @@ -134693,7 +141057,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4762, "uuid!" ] } @@ -134702,7 +141066,7 @@ export default { 81, { "job_id": [ - 4462, + 4762, "uuid!" ] } @@ -134711,7 +141075,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4762, "uuid!" ] } @@ -134720,7 +141084,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -134738,7 +141102,7 @@ export default { 81, { "request_id": [ - 4462, + 4762, "uuid!" ] } @@ -134747,7 +141111,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -134756,7 +141120,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4762, "uuid!" ] } @@ -134774,14 +141138,14 @@ export default { } ], "clone_league_season": [ - 1555, + 1855, { "args": [ 235, "clone_league_season_args!" ], "distinct_on": [ - 1575, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -134791,11 +141155,11 @@ export default { 38 ], "order_by": [ - 1572, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1860 ] } ], @@ -134803,11 +141167,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4024, + 4324, "timestamptz!" ], "request_id": [ - 4462, + 4762, "uuid!" ] } @@ -134828,7 +141192,7 @@ export default { 38 ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "preset": [ @@ -134863,7 +141227,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -134872,7 +141236,7 @@ export default { 14, { "settings": [ - 1352, + 1652, "jsonb!" ] } @@ -134889,7 +141253,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1352, + 1652, "jsonb!" ], "scheduled_at": [ @@ -134918,7 +141282,7 @@ export default { 81, { "clip_id": [ - 4462, + 4762, "uuid!" ] } @@ -134936,7 +141300,7 @@ export default { 81, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -134970,7 +141334,7 @@ export default { 81, { "tournament_id": [ - 4462, + 4762, "uuid!" ] } @@ -134988,11 +141352,11 @@ export default { 92, { "map_id": [ - 4462, + 4762, "uuid!" ], "map_pool_id": [ - 4462, + 4762, "uuid!" ] } @@ -135010,7 +141374,7 @@ export default { 111, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -135028,7 +141392,7 @@ export default { 152, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -135046,7 +141410,7 @@ export default { 185, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -135064,7 +141428,7 @@ export default { 237, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -135082,7 +141446,7 @@ export default { 264, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -135100,7 +141464,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -135122,7 +141486,7 @@ export default { 354, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -135235,17 +141599,53 @@ export default { ] } ], - "delete_e_friend_status": [ + "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, + { + "value": [ + 78, + "String!" + ] + } + ], + "delete_e_friend_status": [ + 575, + { + "where": [ + 568, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 525, + 565, { "value": [ 78, @@ -135254,16 +141654,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 556, + 596, { "where": [ - 549, + 589, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 546, + 586, { "value": [ 78, @@ -135272,16 +141672,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 576, + 616, { "where": [ - 569, + 609, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 566, + 606, { "value": [ 78, @@ -135290,16 +141690,16 @@ export default { } ], "delete_e_league_movement_types": [ - 597, + 637, { "where": [ - 590, + 630, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 587, + 627, { "value": [ 78, @@ -135308,16 +141708,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 618, + 658, { "where": [ - 611, + 651, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 608, + 648, { "value": [ 78, @@ -135326,16 +141726,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 639, + 679, { "where": [ - 632, + 672, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 629, + 669, { "value": [ 78, @@ -135344,16 +141744,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 660, + 700, { "where": [ - 653, + 693, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 650, + 690, { "value": [ 78, @@ -135362,16 +141762,16 @@ export default { } ], "delete_e_lobby_access": [ - 681, + 721, { "where": [ - 674, + 714, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 671, + 711, { "value": [ 78, @@ -135380,16 +141780,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 702, + 742, { "where": [ - 695, + 735, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 692, + 732, { "value": [ 78, @@ -135398,16 +141798,16 @@ export default { } ], "delete_e_map_pool_types": [ - 722, + 762, { "where": [ - 715, + 755, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 712, + 752, { "value": [ 78, @@ -135416,16 +141816,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 743, + 783, { "where": [ - 736, + 776, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 733, + 773, { "value": [ 78, @@ -135434,16 +141834,16 @@ export default { } ], "delete_e_match_map_status": [ - 763, + 803, { "where": [ - 756, + 796, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 753, + 793, { "value": [ 78, @@ -135452,16 +141852,16 @@ export default { } ], "delete_e_match_mode": [ - 784, + 824, { "where": [ - 777, + 817, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 774, + 814, { "value": [ 78, @@ -135470,16 +141870,16 @@ export default { } ], "delete_e_match_status": [ - 804, + 844, { "where": [ - 797, + 837, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 794, + 834, { "value": [ 78, @@ -135488,16 +141888,16 @@ export default { } ], "delete_e_match_types": [ - 825, + 865, { "where": [ - 818, + 858, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 815, + 855, { "value": [ 78, @@ -135506,16 +141906,16 @@ export default { } ], "delete_e_notification_types": [ - 846, + 886, { "where": [ - 839, + 879, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 836, + 876, { "value": [ 78, @@ -135524,16 +141924,16 @@ export default { } ], "delete_e_objective_types": [ - 866, + 906, { "where": [ - 859, + 899, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 856, + 896, { "value": [ 78, @@ -135542,16 +141942,16 @@ export default { } ], "delete_e_player_roles": [ - 886, + 926, { "where": [ - 879, + 919, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 876, + 916, { "value": [ 78, @@ -135560,16 +141960,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 906, + 946, { "where": [ - 899, + 939, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 896, + 936, { "value": [ 78, @@ -135578,16 +141978,16 @@ export default { } ], "delete_e_ready_settings": [ - 926, + 966, { "where": [ - 919, + 959, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 916, + 956, { "value": [ 78, @@ -135596,16 +141996,16 @@ export default { } ], "delete_e_sanction_types": [ - 946, + 986, { "where": [ - 939, + 979, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 936, + 976, { "value": [ 78, @@ -135614,16 +142014,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 967, + 1007, { "where": [ - 960, + 1000, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 957, + 997, { "value": [ 78, @@ -135632,16 +142032,16 @@ export default { } ], "delete_e_server_types": [ - 987, + 1027, { "where": [ - 980, + 1020, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 977, + 1017, { "value": [ 78, @@ -135650,16 +142050,16 @@ export default { } ], "delete_e_sides": [ - 1007, + 1047, { "where": [ - 1000, + 1040, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 997, + 1037, { "value": [ 78, @@ -135668,16 +142068,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1027, + 1067, { "where": [ - 1020, + 1060, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1017, + 1057, { "value": [ 78, @@ -135686,16 +142086,16 @@ export default { } ], "delete_e_team_roles": [ - 1047, + 1087, { "where": [ - 1040, + 1080, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1037, + 1077, { "value": [ 78, @@ -135704,16 +142104,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1068, + 1108, { "where": [ - 1061, + 1101, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1058, + 1098, { "value": [ 78, @@ -135722,16 +142122,16 @@ export default { } ], "delete_e_timeout_settings": [ - 1088, + 1128, { "where": [ - 1081, + 1121, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1078, + 1118, { "value": [ 78, @@ -135740,16 +142140,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1108, + 1148, { "where": [ - 1101, + 1141, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1098, + 1138, { "value": [ 78, @@ -135758,16 +142158,16 @@ export default { } ], "delete_e_tournament_status": [ - 1129, + 1169, { "where": [ - 1122, + 1162, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1119, + 1159, { "value": [ 78, @@ -135776,16 +142176,16 @@ export default { } ], "delete_e_utility_types": [ - 1150, + 1190, { "where": [ - 1143, + 1183, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1140, + 1180, { "value": [ 78, @@ -135794,16 +142194,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1170, + 1210, { "where": [ - 1163, + 1203, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1160, + 1200, { "value": [ 78, @@ -135812,16 +142212,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1190, + 1230, { "where": [ - 1183, + 1223, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1180, + 1220, { "value": [ 78, @@ -135829,17 +142229,185 @@ 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": [ - 1212, + 1511, { "where": [ - 1206, + 1505, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1202, + 1501, { "other_player_steam_id": [ 180, @@ -135852,16 +142420,16 @@ export default { } ], "delete_game_server_nodes": [ - 1252, + 1551, { "where": [ - 1241, + 1540, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1229, + 1528, { "id": [ 78, @@ -135870,16 +142438,16 @@ export default { } ], "delete_game_versions": [ - 1294, + 1593, { "where": [ - 1285, + 1584, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1280, + 1579, { "build_id": [ 38, @@ -135888,172 +142456,172 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1327, + 1626, { "where": [ - 1318, + 1617, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1313, + 1612, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1364, + 1664, { "where": [ - 1359, + 1659, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1389, + 1689, { "where": [ - 1383, + 1683, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1379, + 1679, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_match_weeks": [ - 1424, + 1724, { "where": [ - 1416, + 1716, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1407, + 1707, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1465, + 1765, { "where": [ - 1457, + 1757, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1448, + 1748, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1506, + 1806, { "where": [ - 1498, + 1798, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1489, + 1789, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_season_divisions": [ - 1544, + 1844, { "where": [ - 1537, + 1837, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1530, + 1830, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_seasons": [ - 1569, + 1869, { "where": [ - 1560, + 1860, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1555, + 1855, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_team_movements": [ - 1605, + 1905, { "where": [ - 1597, + 1897, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1588, + 1888, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_team_rosters": [ - 1646, + 1946, { "where": [ - 1638, + 1938, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1629, + 1929, { "league_team_season_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -136063,73 +142631,73 @@ export default { } ], "delete_league_team_seasons": [ - 1687, + 1987, { "where": [ - 1679, + 1979, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 1670, + 1970, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_league_teams": [ - 1720, + 2020, { "where": [ - 1715, + 2015, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 1712, + 2012, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_lobbies": [ - 1739, + 2039, { "where": [ - 1734, + 2034, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 1731, + 2031, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_lobby_players": [ - 1769, + 2069, { "where": [ - 1761, + 2061, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 1750, + 2050, { "lobby_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -136139,286 +142707,286 @@ export default { } ], "delete_map_pools": [ - 1803, + 2103, { "where": [ - 1798, + 2098, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1795, + 2095, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_maps": [ - 1830, + 2130, { "where": [ - 1823, + 2123, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1814, + 2114, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_clips": [ - 1860, + 2160, { "where": [ - 1852, + 2152, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1843, + 2143, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1906, + 2206, { "where": [ - 1895, + 2195, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1885, + 2185, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_lineup_players": [ - 1950, + 2250, { "where": [ - 1942, + 2242, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1931, + 2231, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_lineups": [ - 1993, + 2293, { "where": [ - 1985, + 2285, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1976, + 2276, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_map_demos": [ - 2041, + 2341, { "where": [ - 2030, + 2330, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2018, + 2318, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_map_rounds": [ - 2086, + 2386, { "where": [ - 2078, + 2378, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2069, + 2369, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2124, + 2424, { "where": [ - 2117, + 2417, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2110, + 2410, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_maps": [ - 2151, + 2451, { "where": [ - 2143, + 2443, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2134, + 2434, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_options": [ - 2186, + 2486, { "where": [ - 2180, + 2480, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2176, + 2476, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2218, + 2518, { "where": [ - 2211, + 2511, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2204, + 2504, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_streams": [ - 2251, + 2551, { "where": [ - 2240, + 2540, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2228, + 2528, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2286, + 2586, { "where": [ - 2281, + 2581, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2278, + 2578, { "type": [ - 551, + 591, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2313, + 2613, { "where": [ - 2305, + 2605, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2296, + 2596, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2346, + 2646, { "where": [ - 2341, + 2641, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2338, + 2638, { "name": [ 78, @@ -136427,126 +142995,126 @@ export default { } ], "delete_my_friends": [ - 2378, + 2678, { "where": [ - 2368, + 2668, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2412, + 2712, { "where": [ - 2406, + 2706, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2402, + 2702, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_notifications": [ - 2452, + 2752, { "where": [ - 2441, + 2741, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2429, + 2729, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2499, + 2799, { "where": [ - 2491, + 2791, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2482, + 2782, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2779, "numeric!" ] } ], "delete_pending_match_imports": [ - 2533, + 2833, { "where": [ - 2527, + 2827, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2523, + 2823, { "valve_match_id": [ - 2479, + 2779, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2561, + 2861, { "where": [ - 2555, + 2855, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2551, + 2851, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2595, + 2895, { "where": [ - 2587, + 2887, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2578, + 2878, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -136560,16 +143128,16 @@ export default { } ], "delete_player_assists": [ - 2638, + 2938, { "where": [ - 2630, + 2930, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2619, + 2919, { "attacked_steam_id": [ 180, @@ -136580,55 +143148,55 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "delete_player_damages": [ - 2699, + 2999, { "where": [ - 2691, + 2991, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2682, + 2982, { "id": [ - 4462, + 4762, "uuid!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "delete_player_elo": [ - 2733, + 3033, { "where": [ - 2727, + 3027, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2723, + 3023, { "match_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -136636,40 +143204,40 @@ export default { "bigint!" ], "type": [ - 820, + 860, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2767, + 3067, { "where": [ - 2759, + 3059, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2750, + 3050, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_player_flashes": [ - 2810, + 3110, { "where": [ - 2802, + 3102, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2791, + 3091, { "attacked_steam_id": [ 180, @@ -136680,26 +143248,26 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "delete_player_kills": [ - 2896, + 3196, { "where": [ - 2847, + 3147, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2836, + 3136, { "attacked_steam_id": [ 180, @@ -136710,26 +143278,26 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2865, + 3165, { "where": [ - 2857, + 3157, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2848, + 3148, { "player_steam_id": [ 180, @@ -136742,28 +143310,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 2931, + 3231, { "where": [ - 2926, + 3226, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2962, + 3262, { "where": [ - 2954, + 3254, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2945, + 3245, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -136773,19 +143341,19 @@ export default { } ], "delete_player_objectives": [ - 3054, + 3354, { "where": [ - 3046, + 3346, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3037, + 3337, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -136793,84 +143361,84 @@ export default { "bigint!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3113, + 3413, { "where": [ - 3105, + 3405, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3096, + 3396, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_player_sanctions": [ - 3154, + 3454, { "where": [ - 3146, + 3446, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3137, + 3437, { "created_at": [ - 4024, + 4324, "timestamptz!" ], "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_player_season_stats": [ - 3205, + 3505, { "where": [ - 3197, + 3497, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3178, + 3478, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4762, "uuid!" ] } ], "delete_player_stats": [ - 3247, + 3547, { "where": [ - 3241, + 3541, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3237, + 3537, { "player_steam_id": [ 180, @@ -136879,16 +143447,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3279, + 3579, { "where": [ - 3270, + 3570, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3265, + 3565, { "steam_id": [ 180, @@ -136897,16 +143465,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3307, + 3607, { "where": [ - 3301, + 3601, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3297, + 3597, { "steam_id": [ 180, @@ -136915,19 +143483,19 @@ export default { } ], "delete_player_unused_utility": [ - 3341, + 3641, { "where": [ - 3333, + 3633, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3324, + 3624, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -136937,42 +143505,42 @@ export default { } ], "delete_player_utility": [ - 3382, + 3682, { "where": [ - 3374, + 3674, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3365, + 3665, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "delete_players": [ - 3449, + 3749, { "where": [ - 3443, + 3743, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3439, + 3739, { "steam_id": [ 180, @@ -136981,19 +143549,19 @@ export default { } ], "delete_plugin_versions": [ - 3477, + 3777, { "where": [ - 3471, + 3771, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3467, + 3767, { "runtime": [ - 901, + 941, "e_plugin_runtimes_enum!" ], "version": [ @@ -137003,34 +143571,34 @@ export default { } ], "delete_seasons": [ - 3508, + 3808, { "where": [ - 3502, + 3802, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3498, + 3798, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_server_regions": [ - 3535, + 3835, { "where": [ - 3530, + 3830, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3526, + 3826, { "value": [ 78, @@ -137039,34 +143607,34 @@ export default { } ], "delete_servers": [ - 3572, + 3872, { "where": [ - 3564, + 3864, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3553, + 3853, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_settings": [ - 3607, + 3907, { "where": [ - 3602, + 3902, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3599, + 3899, { "name": [ 78, @@ -137075,467 +143643,467 @@ export default { } ], "delete_steam_account_claims": [ - 3633, + 3933, { "where": [ - 3626, + 3926, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3619, + 3919, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_steam_accounts": [ - 3653, + 3953, { "where": [ - 3647, + 3947, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3643, + 3943, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_system_alerts": [ - 3681, + 3981, { "where": [ - 3675, + 3975, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3671, + 3971, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_invites": [ - 3715, + 4015, { "where": [ - 3707, + 4007, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3698, + 3998, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_roster": [ - 3758, + 4058, { "where": [ - 3750, + 4050, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3739, + 4039, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3794, + 4094, { "where": [ - 3788, + 4088, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3784, + 4084, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_scrim_availability": [ - 3827, + 4127, { "where": [ - 3820, + 4120, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3811, + 4111, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 3856, + 4156, { "where": [ - 3848, + 4148, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 3839, + 4139, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_scrim_requests": [ - 3899, + 4199, { "where": [ - 3891, + 4191, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 3880, + 4180, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_scrim_settings": [ - 3936, + 4236, { "where": [ - 3930, + 4230, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 3926, + 4226, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_team_suggestions": [ - 3964, + 4264, { "where": [ - 3958, + 4258, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 3954, + 4254, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_teams": [ - 3998, + 4298, { "where": [ - 3990, + 4290, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 3981, + 4281, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_brackets": [ - 4045, + 4345, { "where": [ - 4037, + 4337, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4026, + 4326, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_organizers": [ - 4089, + 4389, { "where": [ - 4081, + 4381, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4072, + 4372, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4130, + 4430, { "where": [ - 4122, + 4422, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4113, + 4413, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_stages": [ - 4177, + 4477, { "where": [ - 4166, + 4466, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4154, + 4454, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4222, + 4522, { "where": [ - 4214, + 4514, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4205, + 4505, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4263, + 4563, { "where": [ - 4255, + 4555, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4246, + 4546, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_teams": [ - 4304, + 4604, { "where": [ - 4296, + 4596, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4287, + 4587, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_trophies": [ - 4348, + 4648, { "where": [ - 4340, + 4640, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4329, + 4629, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4391, + 4691, { "where": [ - 4383, + 4683, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4374, + 4674, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_tournaments": [ - 4435, + 4735, { "where": [ - 4427, + 4727, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4416, + 4716, { "id": [ - 4462, + 4762, "uuid!" ] } ], "delete_v_match_captains": [ - 4576, + 4927, { "where": [ - 4571, + 4922, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 4687, + 5038, { "where": [ - 4682, + 5033, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 4909, + 5260, { "where": [ - 4902, + 5253, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5068, + 5419, { "where": [ - 5062, + 5413, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5162, + 5513, { "where": [ - 5154, + 5505, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5135, + 5486, { "tournament_stage_id": [ - 4462, + 4762, "uuid!" ], "tournament_team_id": [ - 4462, + 4762, "uuid!" ] } @@ -137544,7 +144112,7 @@ export default { 81, { "invite_id": [ - 4462, + 4762, "uuid!" ], "type": [ @@ -137557,11 +144125,11 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "winning_lineup_id": [ - 4462, + 4762, "uuid!" ] } @@ -137570,7 +144138,7 @@ export default { 43, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -137914,2937 +144482,3177 @@ export default { ] } ], - "insert_e_friend_status": [ + "insert_e_event_media_access": [ 535, { "objects": [ 532, - "[e_friend_status_insert_input!]!" + "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 537 + 536 ] } ], - "insert_e_friend_status_one": [ + "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 + ] + } + ], + "insert_e_friend_status": [ + 575, + { + "objects": [ + 572, + "[e_friend_status_insert_input!]!" + ], + "on_conflict": [ + 577 + ] + } + ], + "insert_e_friend_status_one": [ + 565, + { + "object": [ + 572, "e_friend_status_insert_input!" ], "on_conflict": [ - 537 + 577 ] } ], "insert_e_game_cfg_types": [ - 556, + 596, { "objects": [ - 553, + 593, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 557 + 597 ] } ], "insert_e_game_cfg_types_one": [ - 546, + 586, { "object": [ - 553, + 593, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 557 + 597 ] } ], "insert_e_game_server_node_statuses": [ - 576, + 616, { "objects": [ - 573, + 613, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 578 + 618 ] } ], "insert_e_game_server_node_statuses_one": [ - 566, + 606, { "object": [ - 573, + 613, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 578 + 618 ] } ], "insert_e_league_movement_types": [ - 597, + 637, { "objects": [ - 594, + 634, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 599 + 639 ] } ], "insert_e_league_movement_types_one": [ - 587, + 627, { "object": [ - 594, + 634, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 599 + 639 ] } ], "insert_e_league_proposal_statuses": [ - 618, + 658, { "objects": [ - 615, + 655, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 620 + 660 ] } ], "insert_e_league_proposal_statuses_one": [ - 608, + 648, { "object": [ - 615, + 655, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 620 + 660 ] } ], "insert_e_league_registration_statuses": [ - 639, + 679, { "objects": [ - 636, + 676, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 641 + 681 ] } ], "insert_e_league_registration_statuses_one": [ - 629, + 669, { "object": [ - 636, + 676, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 641 + 681 ] } ], "insert_e_league_season_statuses": [ - 660, + 700, { "objects": [ - 657, + 697, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 662 + 702 ] } ], "insert_e_league_season_statuses_one": [ - 650, + 690, { "object": [ - 657, + 697, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 662 + 702 ] } ], "insert_e_lobby_access": [ - 681, + 721, { "objects": [ - 678, + 718, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 683 + 723 ] } ], "insert_e_lobby_access_one": [ - 671, + 711, { "object": [ - 678, + 718, "e_lobby_access_insert_input!" ], "on_conflict": [ - 683 + 723 ] } ], "insert_e_lobby_player_status": [ - 702, + 742, { "objects": [ - 699, + 739, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 703 + 743 ] } ], "insert_e_lobby_player_status_one": [ - 692, + 732, { "object": [ - 699, + 739, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 703 + 743 ] } ], "insert_e_map_pool_types": [ - 722, + 762, { "objects": [ - 719, + 759, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 724 + 764 ] } ], "insert_e_map_pool_types_one": [ - 712, + 752, { "object": [ - 719, + 759, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 724 + 764 ] } ], "insert_e_match_clip_visibility": [ - 743, + 783, { "objects": [ - 740, + 780, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 744 + 784 ] } ], "insert_e_match_clip_visibility_one": [ - 733, + 773, { "object": [ - 740, + 780, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 744 + 784 ] } ], "insert_e_match_map_status": [ - 763, + 803, { "objects": [ - 760, + 800, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 765 + 805 ] } ], "insert_e_match_map_status_one": [ - 753, + 793, { "object": [ - 760, + 800, "e_match_map_status_insert_input!" ], "on_conflict": [ - 765 + 805 ] } ], "insert_e_match_mode": [ - 784, + 824, { "objects": [ - 781, + 821, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 785 + 825 ] } ], "insert_e_match_mode_one": [ - 774, + 814, { "object": [ - 781, + 821, "e_match_mode_insert_input!" ], "on_conflict": [ - 785 + 825 ] } ], "insert_e_match_status": [ - 804, + 844, { "objects": [ - 801, + 841, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 806 + 846 ] } ], "insert_e_match_status_one": [ - 794, + 834, { "object": [ - 801, + 841, "e_match_status_insert_input!" ], "on_conflict": [ - 806 + 846 ] } ], "insert_e_match_types": [ - 825, + 865, { "objects": [ - 822, + 862, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 827 + 867 ] } ], "insert_e_match_types_one": [ - 815, + 855, { "object": [ - 822, + 862, "e_match_types_insert_input!" ], "on_conflict": [ - 827 + 867 ] } ], "insert_e_notification_types": [ - 846, + 886, { "objects": [ - 843, + 883, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 847 + 887 ] } ], "insert_e_notification_types_one": [ - 836, + 876, { "object": [ - 843, + 883, "e_notification_types_insert_input!" ], "on_conflict": [ - 847 + 887 ] } ], "insert_e_objective_types": [ - 866, + 906, { "objects": [ - 863, + 903, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 867 + 907 ] } ], "insert_e_objective_types_one": [ - 856, + 896, { "object": [ - 863, + 903, "e_objective_types_insert_input!" ], "on_conflict": [ - 867 + 907 ] } ], "insert_e_player_roles": [ - 886, + 926, { "objects": [ - 883, + 923, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 887 + 927 ] } ], "insert_e_player_roles_one": [ - 876, + 916, { "object": [ - 883, + 923, "e_player_roles_insert_input!" ], "on_conflict": [ - 887 + 927 ] } ], "insert_e_plugin_runtimes": [ - 906, + 946, { "objects": [ - 903, + 943, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 907 + 947 ] } ], "insert_e_plugin_runtimes_one": [ - 896, + 936, { "object": [ - 903, + 943, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 907 + 947 ] } ], "insert_e_ready_settings": [ - 926, + 966, { "objects": [ - 923, + 963, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 927 + 967 ] } ], "insert_e_ready_settings_one": [ - 916, + 956, { "object": [ - 923, + 963, "e_ready_settings_insert_input!" ], "on_conflict": [ - 927 + 967 ] } ], "insert_e_sanction_types": [ - 946, + 986, { "objects": [ - 943, + 983, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 948 + 988 ] } ], "insert_e_sanction_types_one": [ - 936, + 976, { "object": [ - 943, + 983, "e_sanction_types_insert_input!" ], "on_conflict": [ - 948 + 988 ] } ], "insert_e_scrim_request_statuses": [ - 967, + 1007, { "objects": [ - 964, + 1004, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 968 + 1008 ] } ], "insert_e_scrim_request_statuses_one": [ - 957, + 997, { "object": [ - 964, + 1004, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 968 + 1008 ] } ], "insert_e_server_types": [ - 987, + 1027, { "objects": [ - 984, + 1024, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 988 + 1028 ] } ], "insert_e_server_types_one": [ - 977, + 1017, { "object": [ - 984, + 1024, "e_server_types_insert_input!" ], "on_conflict": [ - 988 + 1028 ] } ], "insert_e_sides": [ - 1007, + 1047, { "objects": [ - 1004, + 1044, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1008 + 1048 ] } ], "insert_e_sides_one": [ - 997, + 1037, { "object": [ - 1004, + 1044, "e_sides_insert_input!" ], "on_conflict": [ - 1008 + 1048 ] } ], "insert_e_system_alert_types": [ - 1027, + 1067, { "objects": [ - 1024, + 1064, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1028 + 1068 ] } ], "insert_e_system_alert_types_one": [ - 1017, + 1057, { "object": [ - 1024, + 1064, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1028 + 1068 ] } ], "insert_e_team_roles": [ - 1047, + 1087, { "objects": [ - 1044, + 1084, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1049 + 1089 ] } ], "insert_e_team_roles_one": [ - 1037, + 1077, { "object": [ - 1044, + 1084, "e_team_roles_insert_input!" ], "on_conflict": [ - 1049 + 1089 ] } ], "insert_e_team_roster_statuses": [ - 1068, + 1108, { "objects": [ - 1065, + 1105, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1069 + 1109 ] } ], "insert_e_team_roster_statuses_one": [ - 1058, + 1098, { "object": [ - 1065, + 1105, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1069 + 1109 ] } ], "insert_e_timeout_settings": [ - 1088, + 1128, { "objects": [ - 1085, + 1125, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1089 + 1129 ] } ], "insert_e_timeout_settings_one": [ - 1078, + 1118, { "object": [ - 1085, + 1125, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1089 + 1129 ] } ], "insert_e_tournament_stage_types": [ - 1108, + 1148, { "objects": [ - 1105, + 1145, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1110 + 1150 ] } ], "insert_e_tournament_stage_types_one": [ - 1098, + 1138, { "object": [ - 1105, + 1145, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1110 + 1150 ] } ], "insert_e_tournament_status": [ - 1129, + 1169, { "objects": [ - 1126, + 1166, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1131 + 1171 ] } ], "insert_e_tournament_status_one": [ - 1119, + 1159, { "object": [ - 1126, + 1166, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1131 + 1171 ] } ], "insert_e_utility_types": [ - 1150, + 1190, { "objects": [ - 1147, + 1187, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1151 + 1191 ] } ], "insert_e_utility_types_one": [ - 1140, + 1180, { "object": [ - 1147, + 1187, "e_utility_types_insert_input!" ], "on_conflict": [ - 1151 + 1191 ] } ], "insert_e_veto_pick_types": [ - 1170, + 1210, { "objects": [ - 1167, + 1207, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1171 + 1211 ] } ], "insert_e_veto_pick_types_one": [ - 1160, + 1200, { "object": [ - 1167, + 1207, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1171 + 1211 ] } ], "insert_e_winning_reasons": [ - 1190, + 1230, { "objects": [ - 1187, + 1227, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1191 + 1231 ] } ], "insert_e_winning_reasons_one": [ - 1180, + 1220, { "object": [ - 1187, + 1227, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1191 + 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 ] } ], "insert_friends": [ - 1212, + 1511, { "objects": [ - 1209, + 1508, "[friends_insert_input!]!" ], "on_conflict": [ - 1213 + 1512 ] } ], "insert_friends_one": [ - 1202, + 1501, { "object": [ - 1209, + 1508, "friends_insert_input!" ], "on_conflict": [ - 1213 + 1512 ] } ], "insert_game_server_nodes": [ - 1252, + 1551, { "objects": [ - 1247, + 1546, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1254 + 1553 ] } ], "insert_game_server_nodes_one": [ - 1229, + 1528, { "object": [ - 1247, + 1546, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1254 + 1553 ] } ], "insert_game_versions": [ - 1294, + 1593, { "objects": [ - 1291, + 1590, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1296 + 1595 ] } ], "insert_game_versions_one": [ - 1280, + 1579, { "object": [ - 1291, + 1590, "game_versions_insert_input!" ], "on_conflict": [ - 1296 + 1595 ] } ], "insert_gamedata_signature_validations": [ - 1327, + 1626, { "objects": [ - 1324, + 1623, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1328 + 1627 ] } ], "insert_gamedata_signature_validations_one": [ - 1313, + 1612, { "object": [ - 1324, + 1623, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1328 + 1627 ] } ], "insert_leaderboard_entries": [ - 1364, + 1664, { "objects": [ - 1361, + 1661, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1355, + 1655, { "object": [ - 1361, + 1661, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1389, + 1689, { "objects": [ - 1386, + 1686, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1391 + 1691 ] } ], "insert_league_divisions_one": [ - 1379, + 1679, { "object": [ - 1386, + 1686, "league_divisions_insert_input!" ], "on_conflict": [ - 1391 + 1691 ] } ], "insert_league_match_weeks": [ - 1424, + 1724, { "objects": [ - 1419, + 1719, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1425 + 1725 ] } ], "insert_league_match_weeks_one": [ - 1407, + 1707, { "object": [ - 1419, + 1719, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1425 + 1725 ] } ], "insert_league_relegation_playoffs": [ - 1465, + 1765, { "objects": [ - 1460, + 1760, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1466 + 1766 ] } ], "insert_league_relegation_playoffs_one": [ - 1448, + 1748, { "object": [ - 1460, + 1760, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1466 + 1766 ] } ], "insert_league_scheduling_proposals": [ - 1506, + 1806, { "objects": [ - 1501, + 1801, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1507 + 1807 ] } ], "insert_league_scheduling_proposals_one": [ - 1489, + 1789, { "object": [ - 1501, + 1801, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1507 + 1807 ] } ], "insert_league_season_divisions": [ - 1544, + 1844, { "objects": [ - 1539, + 1839, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1546 + 1846 ] } ], "insert_league_season_divisions_one": [ - 1530, + 1830, { "object": [ - 1539, + 1839, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1546 + 1846 ] } ], "insert_league_seasons": [ - 1569, + 1869, { "objects": [ - 1566, + 1866, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1571 + 1871 ] } ], "insert_league_seasons_one": [ - 1555, + 1855, { "object": [ - 1566, + 1866, "league_seasons_insert_input!" ], "on_conflict": [ - 1571 + 1871 ] } ], "insert_league_team_movements": [ - 1605, + 1905, { "objects": [ - 1600, + 1900, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1606 + 1906 ] } ], "insert_league_team_movements_one": [ - 1588, + 1888, { "object": [ - 1600, + 1900, "league_team_movements_insert_input!" ], "on_conflict": [ - 1606 + 1906 ] } ], "insert_league_team_rosters": [ - 1646, + 1946, { "objects": [ - 1641, + 1941, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1647 + 1947 ] } ], "insert_league_team_rosters_one": [ - 1629, + 1929, { "object": [ - 1641, + 1941, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1647 + 1947 ] } ], "insert_league_team_seasons": [ - 1687, + 1987, { "objects": [ - 1682, + 1982, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 1689 + 1989 ] } ], "insert_league_team_seasons_one": [ - 1670, + 1970, { "object": [ - 1682, + 1982, "league_team_seasons_insert_input!" ], "on_conflict": [ - 1689 + 1989 ] } ], "insert_league_teams": [ - 1720, + 2020, { "objects": [ - 1717, + 2017, "[league_teams_insert_input!]!" ], "on_conflict": [ - 1722 + 2022 ] } ], "insert_league_teams_one": [ - 1712, + 2012, { "object": [ - 1717, + 2017, "league_teams_insert_input!" ], "on_conflict": [ - 1722 + 2022 ] } ], "insert_lobbies": [ - 1739, + 2039, { "objects": [ - 1736, + 2036, "[lobbies_insert_input!]!" ], "on_conflict": [ - 1741 + 2041 ] } ], "insert_lobbies_one": [ - 1731, + 2031, { "object": [ - 1736, + 2036, "lobbies_insert_input!" ], "on_conflict": [ - 1741 + 2041 ] } ], "insert_lobby_players": [ - 1769, + 2069, { "objects": [ - 1764, + 2064, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1770 + 2070 ] } ], "insert_lobby_players_one": [ - 1750, + 2050, { "object": [ - 1764, + 2064, "lobby_players_insert_input!" ], "on_conflict": [ - 1770 + 2070 ] } ], "insert_map_pools": [ - 1803, + 2103, { "objects": [ - 1800, + 2100, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1805 + 2105 ] } ], "insert_map_pools_one": [ - 1795, + 2095, { "object": [ - 1800, + 2100, "map_pools_insert_input!" ], "on_conflict": [ - 1805 + 2105 ] } ], "insert_maps": [ - 1830, + 2130, { "objects": [ - 1825, + 2125, "[maps_insert_input!]!" ], "on_conflict": [ - 1832 + 2132 ] } ], "insert_maps_one": [ - 1814, + 2114, { "object": [ - 1825, + 2125, "maps_insert_input!" ], "on_conflict": [ - 1832 + 2132 ] } ], "insert_match_clips": [ - 1860, + 2160, { "objects": [ - 1855, + 2155, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1862 + 2162 ] } ], "insert_match_clips_one": [ - 1843, + 2143, { "object": [ - 1855, + 2155, "match_clips_insert_input!" ], "on_conflict": [ - 1862 + 2162 ] } ], "insert_match_demo_sessions": [ - 1906, + 2206, { "objects": [ - 1901, + 2201, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1907 + 2207 ] } ], "insert_match_demo_sessions_one": [ - 1885, + 2185, { "object": [ - 1901, + 2201, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1907 + 2207 ] } ], "insert_match_lineup_players": [ - 1950, + 2250, { "objects": [ - 1945, + 2245, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1951 + 2251 ] } ], "insert_match_lineup_players_one": [ - 1931, + 2231, { "object": [ - 1945, + 2245, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1951 + 2251 ] } ], "insert_match_lineups": [ - 1993, + 2293, { "objects": [ - 1988, + 2288, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1995 + 2295 ] } ], "insert_match_lineups_one": [ - 1976, + 2276, { "object": [ - 1988, + 2288, "match_lineups_insert_input!" ], "on_conflict": [ - 1995 + 2295 ] } ], "insert_match_map_demos": [ - 2041, + 2341, { "objects": [ - 2036, + 2336, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2043 + 2343 ] } ], "insert_match_map_demos_one": [ - 2018, + 2318, { "object": [ - 2036, + 2336, "match_map_demos_insert_input!" ], "on_conflict": [ - 2043 + 2343 ] } ], "insert_match_map_rounds": [ - 2086, + 2386, { "objects": [ - 2081, + 2381, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2087 + 2387 ] } ], "insert_match_map_rounds_one": [ - 2069, + 2369, { "object": [ - 2081, + 2381, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2087 + 2387 ] } ], "insert_match_map_veto_picks": [ - 2124, + 2424, { "objects": [ - 2119, + 2419, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2125 + 2425 ] } ], "insert_match_map_veto_picks_one": [ - 2110, + 2410, { "object": [ - 2119, + 2419, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2125 + 2425 ] } ], "insert_match_maps": [ - 2151, + 2451, { "objects": [ - 2146, + 2446, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2153 + 2453 ] } ], "insert_match_maps_one": [ - 2134, + 2434, { "object": [ - 2146, + 2446, "match_maps_insert_input!" ], "on_conflict": [ - 2153 + 2453 ] } ], "insert_match_options": [ - 2186, + 2486, { "objects": [ - 2183, + 2483, "[match_options_insert_input!]!" ], "on_conflict": [ - 2188 + 2488 ] } ], "insert_match_options_one": [ - 2176, + 2476, { "object": [ - 2183, + 2483, "match_options_insert_input!" ], "on_conflict": [ - 2188 + 2488 ] } ], "insert_match_region_veto_picks": [ - 2218, + 2518, { "objects": [ - 2213, + 2513, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2219 + 2519 ] } ], "insert_match_region_veto_picks_one": [ - 2204, + 2504, { "object": [ - 2213, + 2513, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2219 + 2519 ] } ], "insert_match_streams": [ - 2251, + 2551, { "objects": [ - 2246, + 2546, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2252 + 2552 ] } ], "insert_match_streams_one": [ - 2228, + 2528, { "object": [ - 2246, + 2546, "match_streams_insert_input!" ], "on_conflict": [ - 2252 + 2552 ] } ], "insert_match_type_cfgs": [ - 2286, + 2586, { "objects": [ - 2283, + 2583, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2287 + 2587 ] } ], "insert_match_type_cfgs_one": [ - 2278, + 2578, { "object": [ - 2283, + 2583, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2287 + 2587 ] } ], "insert_matches": [ - 2313, + 2613, { "objects": [ - 2308, + 2608, "[matches_insert_input!]!" ], "on_conflict": [ - 2315 + 2615 ] } ], "insert_matches_one": [ - 2296, + 2596, { "object": [ - 2308, + 2608, "matches_insert_input!" ], "on_conflict": [ - 2315 + 2615 ] } ], "insert_migration_hashes_hashes": [ - 2346, + 2646, { "objects": [ - 2343, + 2643, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2347 + 2647 ] } ], "insert_migration_hashes_hashes_one": [ - 2338, + 2638, { "object": [ - 2343, + 2643, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2347 + 2647 ] } ], "insert_my_friends": [ - 2378, + 2678, { "objects": [ - 2373, + 2673, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2356, + 2656, { "object": [ - 2373, + 2673, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2412, + 2712, { "objects": [ - 2409, + 2709, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2413 + 2713 ] } ], "insert_news_articles_one": [ - 2402, + 2702, { "object": [ - 2409, + 2709, "news_articles_insert_input!" ], "on_conflict": [ - 2413 + 2713 ] } ], "insert_notifications": [ - 2452, + 2752, { "objects": [ - 2447, + 2747, "[notifications_insert_input!]!" ], "on_conflict": [ - 2453 + 2753 ] } ], "insert_notifications_one": [ - 2429, + 2729, { "object": [ - 2447, + 2747, "notifications_insert_input!" ], "on_conflict": [ - 2453 + 2753 ] } ], "insert_pending_match_import_players": [ - 2499, + 2799, { "objects": [ - 2494, + 2794, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2500 + 2800 ] } ], "insert_pending_match_import_players_one": [ - 2482, + 2782, { "object": [ - 2494, + 2794, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2500 + 2800 ] } ], "insert_pending_match_imports": [ - 2533, + 2833, { "objects": [ - 2530, + 2830, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2535 + 2835 ] } ], "insert_pending_match_imports_one": [ - 2523, + 2823, { "object": [ - 2530, + 2830, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2535 + 2835 ] } ], "insert_player_aim_stats_demo": [ - 2561, + 2861, { "objects": [ - 2558, + 2858, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2562 + 2862 ] } ], "insert_player_aim_stats_demo_one": [ - 2551, + 2851, { "object": [ - 2558, + 2858, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2562 + 2862 ] } ], "insert_player_aim_weapon_stats": [ - 2595, + 2895, { "objects": [ - 2590, + 2890, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2596 + 2896 ] } ], "insert_player_aim_weapon_stats_one": [ - 2578, + 2878, { "object": [ - 2590, + 2890, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2596 + 2896 ] } ], "insert_player_assists": [ - 2638, + 2938, { "objects": [ - 2633, + 2933, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2639 + 2939 ] } ], "insert_player_assists_one": [ - 2619, + 2919, { "object": [ - 2633, + 2933, "player_assists_insert_input!" ], "on_conflict": [ - 2639 + 2939 ] } ], "insert_player_damages": [ - 2699, + 2999, { "objects": [ - 2694, + 2994, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2700 + 3000 ] } ], "insert_player_damages_one": [ - 2682, + 2982, { "object": [ - 2694, + 2994, "player_damages_insert_input!" ], "on_conflict": [ - 2700 + 3000 ] } ], "insert_player_elo": [ - 2733, + 3033, { "objects": [ - 2730, + 3030, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2734 + 3034 ] } ], "insert_player_elo_one": [ - 2723, + 3023, { "object": [ - 2730, + 3030, "player_elo_insert_input!" ], "on_conflict": [ - 2734 + 3034 ] } ], "insert_player_faceit_rank_history": [ - 2767, + 3067, { "objects": [ - 2762, + 3062, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2768 + 3068 ] } ], "insert_player_faceit_rank_history_one": [ - 2750, + 3050, { "object": [ - 2762, + 3062, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2768 + 3068 ] } ], "insert_player_flashes": [ - 2810, + 3110, { "objects": [ - 2805, + 3105, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2811 + 3111 ] } ], "insert_player_flashes_one": [ - 2791, + 3091, { "object": [ - 2805, + 3105, "player_flashes_insert_input!" ], "on_conflict": [ - 2811 + 3111 ] } ], "insert_player_kills": [ - 2896, + 3196, { "objects": [ - 2891, + 3191, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2897 + 3197 ] } ], "insert_player_kills_by_weapon": [ - 2865, + 3165, { "objects": [ - 2860, + 3160, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2866 + 3166 ] } ], "insert_player_kills_by_weapon_one": [ - 2848, + 3148, { "object": [ - 2860, + 3160, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2866 + 3166 ] } ], "insert_player_kills_one": [ - 2836, + 3136, { "object": [ - 2891, + 3191, "player_kills_insert_input!" ], "on_conflict": [ - 2897 + 3197 ] } ], "insert_player_leaderboard_rank": [ - 2931, + 3231, { "objects": [ - 2928, + 3228, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2922, + 3222, { "object": [ - 2928, + 3228, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2962, + 3262, { "objects": [ - 2957, + 3257, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2963 + 3263 ] } ], "insert_player_match_map_stats_one": [ - 2945, + 3245, { "object": [ - 2957, + 3257, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2963 + 3263 ] } ], "insert_player_objectives": [ - 3054, + 3354, { "objects": [ - 3049, + 3349, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3055 + 3355 ] } ], "insert_player_objectives_one": [ - 3037, + 3337, { "object": [ - 3049, + 3349, "player_objectives_insert_input!" ], "on_conflict": [ - 3055 + 3355 ] } ], "insert_player_premier_rank_history": [ - 3113, + 3413, { "objects": [ - 3108, + 3408, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3114 + 3414 ] } ], "insert_player_premier_rank_history_one": [ - 3096, + 3396, { "object": [ - 3108, + 3408, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3114 + 3414 ] } ], "insert_player_sanctions": [ - 3154, + 3454, { "objects": [ - 3149, + 3449, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3155 + 3455 ] } ], "insert_player_sanctions_one": [ - 3137, + 3437, { "object": [ - 3149, + 3449, "player_sanctions_insert_input!" ], "on_conflict": [ - 3155 + 3455 ] } ], "insert_player_season_stats": [ - 3205, + 3505, { "objects": [ - 3200, + 3500, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3206 + 3506 ] } ], "insert_player_season_stats_one": [ - 3178, + 3478, { "object": [ - 3200, + 3500, "player_season_stats_insert_input!" ], "on_conflict": [ - 3206 + 3506 ] } ], "insert_player_stats": [ - 3247, + 3547, { "objects": [ - 3244, + 3544, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3249 + 3549 ] } ], "insert_player_stats_one": [ - 3237, + 3537, { "object": [ - 3244, + 3544, "player_stats_insert_input!" ], "on_conflict": [ - 3249 + 3549 ] } ], "insert_player_steam_bot_friend": [ - 3279, + 3579, { "objects": [ - 3276, + 3576, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3280 + 3580 ] } ], "insert_player_steam_bot_friend_one": [ - 3265, + 3565, { "object": [ - 3276, + 3576, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3280 + 3580 ] } ], "insert_player_steam_match_auth": [ - 3307, + 3607, { "objects": [ - 3304, + 3604, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3308 + 3608 ] } ], "insert_player_steam_match_auth_one": [ - 3297, + 3597, { "object": [ - 3304, + 3604, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3308 + 3608 ] } ], "insert_player_unused_utility": [ - 3341, + 3641, { "objects": [ - 3336, + 3636, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3342 + 3642 ] } ], "insert_player_unused_utility_one": [ - 3324, + 3624, { "object": [ - 3336, + 3636, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3342 + 3642 ] } ], "insert_player_utility": [ - 3382, + 3682, { "objects": [ - 3377, + 3677, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3383 + 3683 ] } ], "insert_player_utility_one": [ - 3365, + 3665, { "object": [ - 3377, + 3677, "player_utility_insert_input!" ], "on_conflict": [ - 3383 + 3683 ] } ], "insert_players": [ - 3449, + 3749, { "objects": [ - 3446, + 3746, "[players_insert_input!]!" ], "on_conflict": [ - 3451 + 3751 ] } ], "insert_players_one": [ - 3439, + 3739, { "object": [ - 3446, + 3746, "players_insert_input!" ], "on_conflict": [ - 3451 + 3751 ] } ], "insert_plugin_versions": [ - 3477, + 3777, { "objects": [ - 3474, + 3774, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3478 + 3778 ] } ], "insert_plugin_versions_one": [ - 3467, + 3767, { "object": [ - 3474, + 3774, "plugin_versions_insert_input!" ], "on_conflict": [ - 3478 + 3778 ] } ], "insert_seasons": [ - 3508, + 3808, { "objects": [ - 3505, + 3805, "[seasons_insert_input!]!" ], "on_conflict": [ - 3510 + 3810 ] } ], "insert_seasons_one": [ - 3498, + 3798, { "object": [ - 3505, + 3805, "seasons_insert_input!" ], "on_conflict": [ - 3510 + 3810 ] } ], "insert_server_regions": [ - 3535, + 3835, { "objects": [ - 3532, + 3832, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3537 + 3837 ] } ], "insert_server_regions_one": [ - 3526, + 3826, { "object": [ - 3532, + 3832, "server_regions_insert_input!" ], "on_conflict": [ - 3537 + 3837 ] } ], "insert_servers": [ - 3572, + 3872, { "objects": [ - 3567, + 3867, "[servers_insert_input!]!" ], "on_conflict": [ - 3574 + 3874 ] } ], "insert_servers_one": [ - 3553, + 3853, { "object": [ - 3567, + 3867, "servers_insert_input!" ], "on_conflict": [ - 3574 + 3874 ] } ], "insert_settings": [ - 3607, + 3907, { "objects": [ - 3604, + 3904, "[settings_insert_input!]!" ], "on_conflict": [ - 3608 + 3908 ] } ], "insert_settings_one": [ - 3599, + 3899, { "object": [ - 3604, + 3904, "settings_insert_input!" ], "on_conflict": [ - 3608 + 3908 ] } ], "insert_steam_account_claims": [ - 3633, + 3933, { "objects": [ - 3628, + 3928, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3634 + 3934 ] } ], "insert_steam_account_claims_one": [ - 3619, + 3919, { "object": [ - 3628, + 3928, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3634 + 3934 ] } ], "insert_steam_accounts": [ - 3653, + 3953, { "objects": [ - 3650, + 3950, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3655 + 3955 ] } ], "insert_steam_accounts_one": [ - 3643, + 3943, { "object": [ - 3650, + 3950, "steam_accounts_insert_input!" ], "on_conflict": [ - 3655 + 3955 ] } ], "insert_system_alerts": [ - 3681, + 3981, { "objects": [ - 3678, + 3978, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3682 + 3982 ] } ], "insert_system_alerts_one": [ - 3671, + 3971, { "object": [ - 3678, + 3978, "system_alerts_insert_input!" ], "on_conflict": [ - 3682 + 3982 ] } ], "insert_team_invites": [ - 3715, + 4015, { "objects": [ - 3710, + 4010, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3716 + 4016 ] } ], "insert_team_invites_one": [ - 3698, + 3998, { "object": [ - 3710, + 4010, "team_invites_insert_input!" ], "on_conflict": [ - 3716 + 4016 ] } ], "insert_team_roster": [ - 3758, + 4058, { "objects": [ - 3753, + 4053, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3759 + 4059 ] } ], "insert_team_roster_one": [ - 3739, + 4039, { "object": [ - 3753, + 4053, "team_roster_insert_input!" ], "on_conflict": [ - 3759 + 4059 ] } ], "insert_team_scrim_alerts": [ - 3794, + 4094, { "objects": [ - 3791, + 4091, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3795 + 4095 ] } ], "insert_team_scrim_alerts_one": [ - 3784, + 4084, { "object": [ - 3791, + 4091, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3795 + 4095 ] } ], "insert_team_scrim_availability": [ - 3827, + 4127, { "objects": [ - 3822, + 4122, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 3828 + 4128 ] } ], "insert_team_scrim_availability_one": [ - 3811, + 4111, { "object": [ - 3822, + 4122, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 3828 + 4128 ] } ], "insert_team_scrim_request_proposals": [ - 3856, + 4156, { "objects": [ - 3851, + 4151, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 3857 + 4157 ] } ], "insert_team_scrim_request_proposals_one": [ - 3839, + 4139, { "object": [ - 3851, + 4151, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 3857 + 4157 ] } ], "insert_team_scrim_requests": [ - 3899, + 4199, { "objects": [ - 3894, + 4194, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 3901 + 4201 ] } ], "insert_team_scrim_requests_one": [ - 3880, + 4180, { "object": [ - 3894, + 4194, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 3901 + 4201 ] } ], "insert_team_scrim_settings": [ - 3936, + 4236, { "objects": [ - 3933, + 4233, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 3938 + 4238 ] } ], "insert_team_scrim_settings_one": [ - 3926, + 4226, { "object": [ - 3933, + 4233, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 3938 + 4238 ] } ], "insert_team_suggestions": [ - 3964, + 4264, { "objects": [ - 3961, + 4261, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 3965 + 4265 ] } ], "insert_team_suggestions_one": [ - 3954, + 4254, { "object": [ - 3961, + 4261, "team_suggestions_insert_input!" ], "on_conflict": [ - 3965 + 4265 ] } ], "insert_teams": [ - 3998, + 4298, { "objects": [ - 3993, + 4293, "[teams_insert_input!]!" ], "on_conflict": [ - 4000 + 4300 ] } ], "insert_teams_one": [ - 3981, + 4281, { "object": [ - 3993, + 4293, "teams_insert_input!" ], "on_conflict": [ - 4000 + 4300 ] } ], "insert_tournament_brackets": [ - 4045, + 4345, { "objects": [ - 4040, + 4340, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4047 + 4347 ] } ], "insert_tournament_brackets_one": [ - 4026, + 4326, { "object": [ - 4040, + 4340, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4047 + 4347 ] } ], "insert_tournament_organizers": [ - 4089, + 4389, { "objects": [ - 4084, + 4384, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4090 + 4390 ] } ], "insert_tournament_organizers_one": [ - 4072, + 4372, { "object": [ - 4084, + 4384, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4090 + 4390 ] } ], "insert_tournament_stage_windows": [ - 4130, + 4430, { "objects": [ - 4125, + 4425, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4131 + 4431 ] } ], "insert_tournament_stage_windows_one": [ - 4113, + 4413, { "object": [ - 4125, + 4425, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4131 + 4431 ] } ], "insert_tournament_stages": [ - 4177, + 4477, { "objects": [ - 4172, + 4472, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4179 + 4479 ] } ], "insert_tournament_stages_one": [ - 4154, + 4454, { "object": [ - 4172, + 4472, "tournament_stages_insert_input!" ], "on_conflict": [ - 4179 + 4479 ] } ], "insert_tournament_team_invites": [ - 4222, + 4522, { "objects": [ - 4217, + 4517, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4223 + 4523 ] } ], "insert_tournament_team_invites_one": [ - 4205, + 4505, { "object": [ - 4217, + 4517, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4223 + 4523 ] } ], "insert_tournament_team_roster": [ - 4263, + 4563, { "objects": [ - 4258, + 4558, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4264 + 4564 ] } ], "insert_tournament_team_roster_one": [ - 4246, + 4546, { "object": [ - 4258, + 4558, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4264 + 4564 ] } ], "insert_tournament_teams": [ - 4304, + 4604, { "objects": [ - 4299, + 4599, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4306 + 4606 ] } ], "insert_tournament_teams_one": [ - 4287, + 4587, { "object": [ - 4299, + 4599, "tournament_teams_insert_input!" ], "on_conflict": [ - 4306 + 4606 ] } ], "insert_tournament_trophies": [ - 4348, + 4648, { "objects": [ - 4343, + 4643, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4349 + 4649 ] } ], "insert_tournament_trophies_one": [ - 4329, + 4629, { "object": [ - 4343, + 4643, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4349 + 4649 ] } ], "insert_tournament_trophy_configs": [ - 4391, + 4691, { "objects": [ - 4386, + 4686, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4393 + 4693 ] } ], "insert_tournament_trophy_configs_one": [ - 4374, + 4674, { "object": [ - 4386, + 4686, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4393 + 4693 ] } ], "insert_tournaments": [ - 4435, + 4735, { "objects": [ - 4430, + 4730, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4437 + 4737 ] } ], "insert_tournaments_one": [ - 4416, + 4716, { "object": [ - 4430, + 4730, "tournaments_insert_input!" ], "on_conflict": [ - 4437 + 4737 ] } ], "insert_v_match_captains": [ - 4576, + 4927, { "objects": [ - 4573, + 4924, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4567, + 4918, { "object": [ - 4573, + 4924, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 4687, + 5038, { "objects": [ - 4684, + 5035, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 4678, + 5029, { "object": [ - 4684, + 5035, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 4909, + 5260, { "objects": [ - 4904, + 5255, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 4893, + 5244, { "object": [ - 4904, + 5255, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5068, + 5419, { "objects": [ - 5063, + 5414, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5053, + 5404, { "object": [ - 5063, + 5414, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5162, + 5513, { "objects": [ - 5157, + 5508, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5164 + 5515 ] } ], "insert_v_team_stage_results_one": [ - 5135, + 5486, { "object": [ - 5157, + 5508, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5164 + 5515 ] } ], @@ -140852,7 +147660,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4762, "uuid!" ], "inviteCode": [ @@ -140864,7 +147672,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4762, "uuid!" ], "inviteCode": [ @@ -140889,14 +147697,14 @@ export default { } ], "league_award_forfeit": [ - 2296, + 2596, { "args": [ - 1378, + 1678, "league_award_forfeit_args!" ], "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -140906,11 +147714,11 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], @@ -140969,7 +147777,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4762, "uuid!" ] } @@ -140981,7 +147789,7 @@ export default { 22, { "draftGameId": [ - 4462, + 4762, "uuid!" ], "inviteCode": [ @@ -140996,7 +147804,7 @@ export default { 38 ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "preset": [ @@ -141022,7 +147830,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141031,20 +147839,20 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4329, + 4629, { "args": [ - 3494, + 3794, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -141054,11 +147862,11 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], @@ -141072,7 +147880,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141096,7 +147904,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141123,14 +147931,14 @@ export default { } ], "remove_league_team_from_season": [ - 1670, + 1970, { "args": [ - 3495, + 3795, "remove_league_team_from_season_args!" ], "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -141140,11 +147948,11 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], @@ -141169,14 +147977,14 @@ export default { } ], "reorder_league_divisions": [ - 1379, + 1679, { "args": [ - 3496, + 3796, "reorder_league_divisions_args!" ], "distinct_on": [ - 1394, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -141186,11 +147994,11 @@ export default { 38 ], "order_by": [ - 1392, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1683 ] } ], @@ -141204,7 +148012,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4762, "uuid!" ] } @@ -141213,7 +148021,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141235,7 +148043,7 @@ export default { 81, { "job_id": [ - 4462, + 4762, "uuid!" ] } @@ -141248,7 +148056,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4462, + 4762, "uuid!" ] } @@ -141261,7 +148069,7 @@ export default { "Boolean!" ], "request_id": [ - 4462, + 4762, "uuid!" ] } @@ -141276,14 +148084,14 @@ export default { } ], "restart_league_season": [ - 1555, + 1855, { "args": [ - 3497, + 3797, "restart_league_season_args!" ], "distinct_on": [ - 1575, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -141293,11 +148101,11 @@ export default { 38 ], "order_by": [ - 1572, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1860 ] } ], @@ -141305,7 +148113,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4762, "uuid!" ] } @@ -141314,7 +148122,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "only_failed": [ @@ -141364,7 +148172,7 @@ export default { 78 ], "id": [ - 4462 + 4762 ], "teaser": [ 78 @@ -141385,11 +148193,11 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024 + 4324 ] } ], @@ -141400,18 +148208,18 @@ export default { 38 ], "from_team_id": [ - 4462, + 4762, "uuid!" ], "proposed_scheduled_at": [ - 4024, + 4324, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4462, + 4762, "uuid!" ] } @@ -141433,7 +148241,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "mode": [ @@ -141446,15 +148254,15 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "winning_lineup_id": [ - 4462, + 4762, "uuid!" ] } @@ -141463,11 +148271,11 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "winning_lineup_id": [ - 4462, + 4762, "uuid!" ] } @@ -141476,7 +148284,7 @@ export default { 48, { "id": [ - 4462, + 4762, "uuid!" ], "status": [ @@ -141492,7 +148300,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141505,7 +148313,7 @@ export default { "Boolean!" ], "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141518,7 +148326,7 @@ export default { "String!" ], "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141527,7 +148335,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "visible": [ @@ -141540,7 +148348,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141549,7 +148357,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141562,7 +148370,7 @@ export default { "Int!" ], "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141571,7 +148379,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "show": [ @@ -141584,7 +148392,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "slot": [ @@ -141601,7 +148409,7 @@ export default { "Boolean!" ], "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141610,7 +148418,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "mode": [ @@ -141623,11 +148431,11 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ], "server_id": [ - 4462 + 4762 ] } ], @@ -141635,7 +148443,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4762, "uuid!" ] } @@ -141644,7 +148452,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141653,7 +148461,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4762, "uuid!" ] } @@ -141675,7 +148483,7 @@ export default { 81, { "match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141693,7 +148501,7 @@ export default { 81, { "from_match_id": [ - 4462, + 4762, "uuid!" ], "mode": [ @@ -141701,7 +148509,7 @@ export default { "String!" ], "to_match_id": [ - 4462, + 4762, "uuid!" ] } @@ -141741,7 +148549,7 @@ export default { 81, { "clip_id": [ - 4462, + 4762, "uuid!" ], "target_steam_id": [ @@ -141762,7 +148570,7 @@ export default { 78 ], "game_server_node_id": [ - 4462 + 4762 ] } ], @@ -141770,11 +148578,11 @@ export default { 81, { "draftGameId": [ - 4462, + 4762, "uuid!" ], "settings": [ - 1352, + 1652, "jsonb!" ] } @@ -142316,4769 +149124,5129 @@ export default { ] } ], - "update_e_friend_status": [ + "update_e_event_media_access": [ 535, { "_set": [ - 541 + 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, + { + "_set": [ + 581 + ], + "where": [ + 568, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 525, + 565, { "_set": [ - 541 + 581 ], "pk_columns": [ - 539, + 579, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 535, + 575, { "updates": [ - 545, + 585, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 556, + 596, { "_set": [ - 561 + 601 ], "where": [ - 549, + 589, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 546, + 586, { "_set": [ - 561 + 601 ], "pk_columns": [ - 559, + 599, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 556, + 596, { "updates": [ - 565, + 605, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 576, + 616, { "_set": [ - 582 + 622 ], "where": [ - 569, + 609, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 566, + 606, { "_set": [ - 582 + 622 ], "pk_columns": [ - 580, + 620, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 576, + 616, { "updates": [ - 586, + 626, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 597, + 637, { "_set": [ - 603 + 643 ], "where": [ - 590, + 630, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 587, + 627, { "_set": [ - 603 + 643 ], "pk_columns": [ - 601, + 641, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 597, + 637, { "updates": [ - 607, + 647, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 618, + 658, { "_set": [ - 624 + 664 ], "where": [ - 611, + 651, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 608, + 648, { "_set": [ - 624 + 664 ], "pk_columns": [ - 622, + 662, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 618, + 658, { "updates": [ - 628, + 668, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 639, + 679, { "_set": [ - 645 + 685 ], "where": [ - 632, + 672, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 629, + 669, { "_set": [ - 645 + 685 ], "pk_columns": [ - 643, + 683, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 639, + 679, { "updates": [ - 649, + 689, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 660, + 700, { "_set": [ - 666 + 706 ], "where": [ - 653, + 693, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 650, + 690, { "_set": [ - 666 + 706 ], "pk_columns": [ - 664, + 704, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 660, + 700, { "updates": [ - 670, + 710, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 681, + 721, { "_set": [ - 687 + 727 ], "where": [ - 674, + 714, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 671, + 711, { "_set": [ - 687 + 727 ], "pk_columns": [ - 685, + 725, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 681, + 721, { "updates": [ - 691, + 731, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 702, + 742, { "_set": [ - 707 + 747 ], "where": [ - 695, + 735, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 692, + 732, { "_set": [ - 707 + 747 ], "pk_columns": [ - 705, + 745, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 702, + 742, { "updates": [ - 711, + 751, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 722, + 762, { "_set": [ - 728 + 768 ], "where": [ - 715, + 755, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 712, + 752, { "_set": [ - 728 + 768 ], "pk_columns": [ - 726, + 766, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 722, + 762, { "updates": [ - 732, + 772, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 743, + 783, { "_set": [ - 748 + 788 ], "where": [ - 736, + 776, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 733, + 773, { "_set": [ - 748 + 788 ], "pk_columns": [ - 746, + 786, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 743, + 783, { "updates": [ - 752, + 792, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 763, + 803, { "_set": [ - 769 + 809 ], "where": [ - 756, + 796, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 753, + 793, { "_set": [ - 769 + 809 ], "pk_columns": [ - 767, + 807, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 763, + 803, { "updates": [ - 773, + 813, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 784, + 824, { "_set": [ - 789 + 829 ], "where": [ - 777, + 817, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 774, + 814, { "_set": [ - 789 + 829 ], "pk_columns": [ - 787, + 827, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 784, + 824, { "updates": [ - 793, + 833, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 804, + 844, { "_set": [ - 810 + 850 ], "where": [ - 797, + 837, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 794, + 834, { "_set": [ - 810 + 850 ], "pk_columns": [ - 808, + 848, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 804, + 844, { "updates": [ - 814, + 854, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 825, + 865, { "_set": [ - 831 + 871 ], "where": [ - 818, + 858, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 815, + 855, { "_set": [ - 831 + 871 ], "pk_columns": [ - 829, + 869, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 825, + 865, { "updates": [ - 835, + 875, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 846, + 886, { "_set": [ - 851 + 891 ], "where": [ - 839, + 879, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 836, + 876, { "_set": [ - 851 + 891 ], "pk_columns": [ - 849, + 889, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 846, + 886, { "updates": [ - 855, + 895, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 866, + 906, { "_set": [ - 871 + 911 ], "where": [ - 859, + 899, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 856, + 896, { "_set": [ - 871 + 911 ], "pk_columns": [ - 869, + 909, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 866, + 906, { "updates": [ - 875, + 915, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 886, + 926, { "_set": [ - 891 + 931 ], "where": [ - 879, + 919, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 876, + 916, { "_set": [ - 891 + 931 ], "pk_columns": [ - 889, + 929, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 886, + 926, { "updates": [ - 895, + 935, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 906, + 946, { "_set": [ - 911 + 951 ], "where": [ - 899, + 939, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 896, + 936, { "_set": [ - 911 + 951 ], "pk_columns": [ - 909, + 949, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 906, + 946, { "updates": [ - 915, + 955, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 926, + 966, { "_set": [ - 931 + 971 ], "where": [ - 919, + 959, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 916, + 956, { "_set": [ - 931 + 971 ], "pk_columns": [ - 929, + 969, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 926, + 966, { "updates": [ - 935, + 975, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 946, + 986, { "_set": [ - 952 + 992 ], "where": [ - 939, + 979, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 936, + 976, { "_set": [ - 952 + 992 ], "pk_columns": [ - 950, + 990, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 946, + 986, { "updates": [ - 956, + 996, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 967, + 1007, { "_set": [ - 972 + 1012 ], "where": [ - 960, + 1000, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 957, + 997, { "_set": [ - 972 + 1012 ], "pk_columns": [ - 970, + 1010, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 967, + 1007, { "updates": [ - 976, + 1016, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 987, + 1027, { "_set": [ - 992 + 1032 ], "where": [ - 980, + 1020, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 977, + 1017, { "_set": [ - 992 + 1032 ], "pk_columns": [ - 990, + 1030, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 987, + 1027, { "updates": [ - 996, + 1036, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1007, + 1047, { "_set": [ - 1012 + 1052 ], "where": [ - 1000, + 1040, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 997, + 1037, { "_set": [ - 1012 + 1052 ], "pk_columns": [ - 1010, + 1050, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1007, + 1047, { "updates": [ - 1016, + 1056, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1027, + 1067, { "_set": [ - 1032 + 1072 ], "where": [ - 1020, + 1060, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1017, + 1057, { "_set": [ - 1032 + 1072 ], "pk_columns": [ - 1030, + 1070, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1027, + 1067, { "updates": [ - 1036, + 1076, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1047, + 1087, { "_set": [ - 1053 + 1093 ], "where": [ - 1040, + 1080, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1037, + 1077, { "_set": [ - 1053 + 1093 ], "pk_columns": [ - 1051, + 1091, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1047, + 1087, { "updates": [ - 1057, + 1097, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1068, + 1108, { "_set": [ - 1073 + 1113 ], "where": [ - 1061, + 1101, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1058, + 1098, { "_set": [ - 1073 + 1113 ], "pk_columns": [ - 1071, + 1111, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1068, + 1108, { "updates": [ - 1077, + 1117, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1088, + 1128, { "_set": [ - 1093 + 1133 ], "where": [ - 1081, + 1121, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1078, + 1118, { "_set": [ - 1093 + 1133 ], "pk_columns": [ - 1091, + 1131, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1088, + 1128, { "updates": [ - 1097, + 1137, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1108, + 1148, { "_set": [ - 1114 + 1154 ], "where": [ - 1101, + 1141, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1098, + 1138, { "_set": [ - 1114 + 1154 ], "pk_columns": [ - 1112, + 1152, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1108, + 1148, { "updates": [ - 1118, + 1158, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1129, + 1169, { "_set": [ - 1135 + 1175 ], "where": [ - 1122, + 1162, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1119, + 1159, { "_set": [ - 1135 + 1175 ], "pk_columns": [ - 1133, + 1173, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1129, + 1169, { "updates": [ - 1139, + 1179, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1150, + 1190, { "_set": [ - 1155 + 1195 ], "where": [ - 1143, + 1183, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1140, + 1180, { "_set": [ - 1155 + 1195 ], "pk_columns": [ - 1153, + 1193, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1150, + 1190, { "updates": [ - 1159, + 1199, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1170, + 1210, { "_set": [ - 1175 + 1215 ], "where": [ - 1163, + 1203, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1160, + 1200, { "_set": [ - 1175 + 1215 ], "pk_columns": [ - 1173, + 1213, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1170, + 1210, { "updates": [ - 1179, + 1219, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1190, + 1230, { "_set": [ - 1195 + 1235 ], "where": [ - 1183, + 1223, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1180, + 1220, { "_set": [ - 1195 + 1235 ], "pk_columns": [ - 1193, + 1233, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1190, + 1230, { "updates": [ - 1199, + 1239, "[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": [ - 1212, + 1511, { "_inc": [ - 1208 + 1507 ], "_set": [ - 1217 + 1516 ], "where": [ - 1206, + 1505, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1202, + 1501, { "_inc": [ - 1208 + 1507 ], "_set": [ - 1217 + 1516 ], "pk_columns": [ - 1215, + 1514, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1212, + 1511, { "updates": [ - 1225, + 1524, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1252, + 1551, { "_append": [ - 1237 + 1536 ], "_delete_at_path": [ - 1243 + 1542 ], "_delete_elem": [ - 1244 + 1543 ], "_delete_key": [ - 1245 + 1544 ], "_inc": [ - 1246 + 1545 ], "_prepend": [ - 1257 + 1556 ], "_set": [ - 1261 + 1560 ], "where": [ - 1241, + 1540, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1229, + 1528, { "_append": [ - 1237 + 1536 ], "_delete_at_path": [ - 1243 + 1542 ], "_delete_elem": [ - 1244 + 1543 ], "_delete_key": [ - 1245 + 1544 ], "_inc": [ - 1246 + 1545 ], "_prepend": [ - 1257 + 1556 ], "_set": [ - 1261 + 1560 ], "pk_columns": [ - 1256, + 1555, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1252, + 1551, { "updates": [ - 1273, + 1572, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1294, + 1593, { "_append": [ - 1283 + 1582 ], "_delete_at_path": [ - 1287 + 1586 ], "_delete_elem": [ - 1288 + 1587 ], "_delete_key": [ - 1289 + 1588 ], "_inc": [ - 1290 + 1589 ], "_prepend": [ - 1299 + 1598 ], "_set": [ - 1301 + 1600 ], "where": [ - 1285, + 1584, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1280, + 1579, { "_append": [ - 1283 + 1582 ], "_delete_at_path": [ - 1287 + 1586 ], "_delete_elem": [ - 1288 + 1587 ], "_delete_key": [ - 1289 + 1588 ], "_inc": [ - 1290 + 1589 ], "_prepend": [ - 1299 + 1598 ], "_set": [ - 1301 + 1600 ], "pk_columns": [ - 1298, + 1597, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1294, + 1593, { "updates": [ - 1309, + 1608, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1327, + 1626, { "_append": [ - 1316 + 1615 ], "_delete_at_path": [ - 1320 + 1619 ], "_delete_elem": [ - 1321 + 1620 ], "_delete_key": [ - 1322 + 1621 ], "_inc": [ - 1323 + 1622 ], "_prepend": [ - 1331 + 1630 ], "_set": [ - 1333 + 1632 ], "where": [ - 1318, + 1617, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1313, + 1612, { "_append": [ - 1316 + 1615 ], "_delete_at_path": [ - 1320 + 1619 ], "_delete_elem": [ - 1321 + 1620 ], "_delete_key": [ - 1322 + 1621 ], "_inc": [ - 1323 + 1622 ], "_prepend": [ - 1331 + 1630 ], "_set": [ - 1333 + 1632 ], "pk_columns": [ - 1330, + 1629, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1327, + 1626, { "updates": [ - 1341, + 1640, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1364, + 1664, { "_inc": [ - 1360 + 1660 ], "_set": [ - 1367 + 1667 ], "where": [ - 1359, + 1659, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1364, + 1664, { "updates": [ - 1374, + 1674, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1389, + 1689, { "_inc": [ - 1385 + 1685 ], "_set": [ - 1395 + 1695 ], "where": [ - 1383, + 1683, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1379, + 1679, { "_inc": [ - 1385 + 1685 ], "_set": [ - 1395 + 1695 ], "pk_columns": [ - 1393, + 1693, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1389, + 1689, { "updates": [ - 1403, + 1703, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1424, + 1724, { "_inc": [ - 1418 + 1718 ], "_set": [ - 1429 + 1729 ], "where": [ - 1416, + 1716, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1407, + 1707, { "_inc": [ - 1418 + 1718 ], "_set": [ - 1429 + 1729 ], "pk_columns": [ - 1427, + 1727, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1424, + 1724, { "updates": [ - 1441, + 1741, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1465, + 1765, { "_inc": [ - 1459 + 1759 ], "_set": [ - 1470 + 1770 ], "where": [ - 1457, + 1757, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1448, + 1748, { "_inc": [ - 1459 + 1759 ], "_set": [ - 1470 + 1770 ], "pk_columns": [ - 1468, + 1768, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1465, + 1765, { "updates": [ - 1482, + 1782, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1506, + 1806, { "_inc": [ - 1500 + 1800 ], "_set": [ - 1511 + 1811 ], "where": [ - 1498, + 1798, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1489, + 1789, { "_inc": [ - 1500 + 1800 ], "_set": [ - 1511 + 1811 ], "pk_columns": [ - 1509, + 1809, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1506, + 1806, { "updates": [ - 1523, + 1823, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1544, + 1844, { "_set": [ - 1550 + 1850 ], "where": [ - 1537, + 1837, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1530, + 1830, { "_set": [ - 1550 + 1850 ], "pk_columns": [ - 1548, + 1848, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1544, + 1844, { "updates": [ - 1554, + 1854, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1569, + 1869, { "_append": [ - 1558 + 1858 ], "_delete_at_path": [ - 1562 + 1862 ], "_delete_elem": [ - 1563 + 1863 ], "_delete_key": [ - 1564 + 1864 ], "_inc": [ - 1565 + 1865 ], "_prepend": [ - 1574 + 1874 ], "_set": [ - 1576 + 1876 ], "where": [ - 1560, + 1860, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1555, + 1855, { "_append": [ - 1558 + 1858 ], "_delete_at_path": [ - 1562 + 1862 ], "_delete_elem": [ - 1563 + 1863 ], "_delete_key": [ - 1564 + 1864 ], "_inc": [ - 1565 + 1865 ], "_prepend": [ - 1574 + 1874 ], "_set": [ - 1576 + 1876 ], "pk_columns": [ - 1573, + 1873, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1569, + 1869, { "updates": [ - 1584, + 1884, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1605, + 1905, { "_inc": [ - 1599 + 1899 ], "_set": [ - 1610 + 1910 ], "where": [ - 1597, + 1897, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1588, + 1888, { "_inc": [ - 1599 + 1899 ], "_set": [ - 1610 + 1910 ], "pk_columns": [ - 1608, + 1908, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1605, + 1905, { "updates": [ - 1622, + 1922, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1646, + 1946, { "_inc": [ - 1640 + 1940 ], "_set": [ - 1651 + 1951 ], "where": [ - 1638, + 1938, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1629, + 1929, { "_inc": [ - 1640 + 1940 ], "_set": [ - 1651 + 1951 ], "pk_columns": [ - 1649, + 1949, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1646, + 1946, { "updates": [ - 1663, + 1963, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 1687, + 1987, { "_inc": [ - 1681 + 1981 ], "_set": [ - 1693 + 1993 ], "where": [ - 1679, + 1979, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 1670, + 1970, { "_inc": [ - 1681 + 1981 ], "_set": [ - 1693 + 1993 ], "pk_columns": [ - 1691, + 1991, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 1687, + 1987, { "updates": [ - 1705, + 2005, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 1720, + 2020, { "_set": [ - 1726 + 2026 ], "where": [ - 1715, + 2015, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 1712, + 2012, { "_set": [ - 1726 + 2026 ], "pk_columns": [ - 1724, + 2024, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 1720, + 2020, { "updates": [ - 1730, + 2030, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 1739, + 2039, { "_set": [ - 1745 + 2045 ], "where": [ - 1734, + 2034, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 1731, + 2031, { "_set": [ - 1745 + 2045 ], "pk_columns": [ - 1743, + 2043, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 1739, + 2039, { "updates": [ - 1749, + 2049, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1769, + 2069, { "_inc": [ - 1763 + 2063 ], "_set": [ - 1776 + 2076 ], "where": [ - 1761, + 2061, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 1750, + 2050, { "_inc": [ - 1763 + 2063 ], "_set": [ - 1776 + 2076 ], "pk_columns": [ - 1772, + 2072, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1769, + 2069, { "updates": [ - 1788, + 2088, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1803, + 2103, { "_set": [ - 1809 + 2109 ], "where": [ - 1798, + 2098, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1795, + 2095, { "_set": [ - 1809 + 2109 ], "pk_columns": [ - 1807, + 2107, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1803, + 2103, { "updates": [ - 1813, + 2113, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1830, + 2130, { "_set": [ - 1838 + 2138 ], "where": [ - 1823, + 2123, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1814, + 2114, { "_set": [ - 1838 + 2138 ], "pk_columns": [ - 1834, + 2134, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1830, + 2130, { "updates": [ - 1842, + 2142, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1860, + 2160, { "_inc": [ - 1854 + 2154 ], "_set": [ - 1866 + 2166 ], "where": [ - 1852, + 2152, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1843, + 2143, { "_inc": [ - 1854 + 2154 ], "_set": [ - 1866 + 2166 ], "pk_columns": [ - 1864, + 2164, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1860, + 2160, { "updates": [ - 1878, + 2178, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1906, + 2206, { "_append": [ - 1891 + 2191 ], "_delete_at_path": [ - 1897 + 2197 ], "_delete_elem": [ - 1898 + 2198 ], "_delete_key": [ - 1899 + 2199 ], "_inc": [ - 1900 + 2200 ], "_prepend": [ - 1910 + 2210 ], "_set": [ - 1912 + 2212 ], "where": [ - 1895, + 2195, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1885, + 2185, { "_append": [ - 1891 + 2191 ], "_delete_at_path": [ - 1897 + 2197 ], "_delete_elem": [ - 1898 + 2198 ], "_delete_key": [ - 1899 + 2199 ], "_inc": [ - 1900 + 2200 ], "_prepend": [ - 1910 + 2210 ], "_set": [ - 1912 + 2212 ], "pk_columns": [ - 1909, + 2209, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1906, + 2206, { "updates": [ - 1924, + 2224, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 1950, + 2250, { "_inc": [ - 1944 + 2244 ], "_set": [ - 1957 + 2257 ], "where": [ - 1942, + 2242, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1931, + 2231, { "_inc": [ - 1944 + 2244 ], "_set": [ - 1957 + 2257 ], "pk_columns": [ - 1953, + 2253, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1950, + 2250, { "updates": [ - 1969, + 2269, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1993, + 2293, { "_inc": [ - 1987 + 2287 ], "_set": [ - 1999 + 2299 ], "where": [ - 1985, + 2285, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1976, + 2276, { "_inc": [ - 1987 + 2287 ], "_set": [ - 1999 + 2299 ], "pk_columns": [ - 1997, + 2297, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1993, + 2293, { "updates": [ - 2011, + 2311, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2041, + 2341, { "_append": [ - 2026 + 2326 ], "_delete_at_path": [ - 2032 + 2332 ], "_delete_elem": [ - 2033 + 2333 ], "_delete_key": [ - 2034 + 2334 ], "_inc": [ - 2035 + 2335 ], "_prepend": [ - 2046 + 2346 ], "_set": [ - 2050 + 2350 ], "where": [ - 2030, + 2330, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2018, + 2318, { "_append": [ - 2026 + 2326 ], "_delete_at_path": [ - 2032 + 2332 ], "_delete_elem": [ - 2033 + 2333 ], "_delete_key": [ - 2034 + 2334 ], "_inc": [ - 2035 + 2335 ], "_prepend": [ - 2046 + 2346 ], "_set": [ - 2050 + 2350 ], "pk_columns": [ - 2045, + 2345, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2041, + 2341, { "updates": [ - 2062, + 2362, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2086, + 2386, { "_inc": [ - 2080 + 2380 ], "_set": [ - 2091 + 2391 ], "where": [ - 2078, + 2378, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2069, + 2369, { "_inc": [ - 2080 + 2380 ], "_set": [ - 2091 + 2391 ], "pk_columns": [ - 2089, + 2389, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2086, + 2386, { "updates": [ - 2103, + 2403, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2124, + 2424, { "_set": [ - 2129 + 2429 ], "where": [ - 2117, + 2417, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2110, + 2410, { "_set": [ - 2129 + 2429 ], "pk_columns": [ - 2127, + 2427, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2124, + 2424, { "updates": [ - 2133, + 2433, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2151, + 2451, { "_inc": [ - 2145 + 2445 ], "_set": [ - 2157 + 2457 ], "where": [ - 2143, + 2443, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2134, + 2434, { "_inc": [ - 2145 + 2445 ], "_set": [ - 2157 + 2457 ], "pk_columns": [ - 2155, + 2455, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2151, + 2451, { "updates": [ - 2169, + 2469, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2186, + 2486, { "_inc": [ - 2182 + 2482 ], "_set": [ - 2192 + 2492 ], "where": [ - 2180, + 2480, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2176, + 2476, { "_inc": [ - 2182 + 2482 ], "_set": [ - 2192 + 2492 ], "pk_columns": [ - 2190, + 2490, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2186, + 2486, { "updates": [ - 2200, + 2500, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2218, + 2518, { "_set": [ - 2223 + 2523 ], "where": [ - 2211, + 2511, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2204, + 2504, { "_set": [ - 2223 + 2523 ], "pk_columns": [ - 2221, + 2521, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2218, + 2518, { "updates": [ - 2227, + 2527, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2251, + 2551, { "_append": [ - 2236 + 2536 ], "_delete_at_path": [ - 2242 + 2542 ], "_delete_elem": [ - 2243 + 2543 ], "_delete_key": [ - 2244 + 2544 ], "_inc": [ - 2245 + 2545 ], "_prepend": [ - 2255 + 2555 ], "_set": [ - 2259 + 2559 ], "where": [ - 2240, + 2540, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2228, + 2528, { "_append": [ - 2236 + 2536 ], "_delete_at_path": [ - 2242 + 2542 ], "_delete_elem": [ - 2243 + 2543 ], "_delete_key": [ - 2244 + 2544 ], "_inc": [ - 2245 + 2545 ], "_prepend": [ - 2255 + 2555 ], "_set": [ - 2259 + 2559 ], "pk_columns": [ - 2254, + 2554, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2251, + 2551, { "updates": [ - 2271, + 2571, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2286, + 2586, { "_set": [ - 2291 + 2591 ], "where": [ - 2281, + 2581, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2278, + 2578, { "_set": [ - 2291 + 2591 ], "pk_columns": [ - 2289, + 2589, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2286, + 2586, { "updates": [ - 2295, + 2595, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2313, + 2613, { "_inc": [ - 2307 + 2607 ], "_set": [ - 2319 + 2619 ], "where": [ - 2305, + 2605, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2296, + 2596, { "_inc": [ - 2307 + 2607 ], "_set": [ - 2319 + 2619 ], "pk_columns": [ - 2317, + 2617, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2313, + 2613, { "updates": [ - 2331, + 2631, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2346, + 2646, { "_set": [ - 2351 + 2651 ], "where": [ - 2341, + 2641, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2338, + 2638, { "_set": [ - 2351 + 2651 ], "pk_columns": [ - 2349, + 2649, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2346, + 2646, { "updates": [ - 2355, + 2655, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2378, + 2678, { "_append": [ - 2364 + 2664 ], "_delete_at_path": [ - 2369 + 2669 ], "_delete_elem": [ - 2370 + 2670 ], "_delete_key": [ - 2371 + 2671 ], "_inc": [ - 2372 + 2672 ], "_prepend": [ - 2380 + 2680 ], "_set": [ - 2384 + 2684 ], "where": [ - 2368, + 2668, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2378, + 2678, { "updates": [ - 2395, + 2695, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2412, + 2712, { "_inc": [ - 2408 + 2708 ], "_set": [ - 2417 + 2717 ], "where": [ - 2406, + 2706, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2402, + 2702, { "_inc": [ - 2408 + 2708 ], "_set": [ - 2417 + 2717 ], "pk_columns": [ - 2415, + 2715, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2412, + 2712, { "updates": [ - 2425, + 2725, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2452, + 2752, { "_append": [ - 2437 + 2737 ], "_delete_at_path": [ - 2443 + 2743 ], "_delete_elem": [ - 2444 + 2744 ], "_delete_key": [ - 2445 + 2745 ], "_inc": [ - 2446 + 2746 ], "_prepend": [ - 2456 + 2756 ], "_set": [ - 2460 + 2760 ], "where": [ - 2441, + 2741, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2429, + 2729, { "_append": [ - 2437 + 2737 ], "_delete_at_path": [ - 2443 + 2743 ], "_delete_elem": [ - 2444 + 2744 ], "_delete_key": [ - 2445 + 2745 ], "_inc": [ - 2446 + 2746 ], "_prepend": [ - 2456 + 2756 ], "_set": [ - 2460 + 2760 ], "pk_columns": [ - 2455, + 2755, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2452, + 2752, { "updates": [ - 2472, + 2772, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2499, + 2799, { "_inc": [ - 2493 + 2793 ], "_set": [ - 2504 + 2804 ], "where": [ - 2491, + 2791, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2482, + 2782, { "_inc": [ - 2493 + 2793 ], "_set": [ - 2504 + 2804 ], "pk_columns": [ - 2502, + 2802, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2499, + 2799, { "updates": [ - 2516, + 2816, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2533, + 2833, { "_inc": [ - 2529 + 2829 ], "_set": [ - 2539 + 2839 ], "where": [ - 2527, + 2827, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2523, + 2823, { "_inc": [ - 2529 + 2829 ], "_set": [ - 2539 + 2839 ], "pk_columns": [ - 2537, + 2837, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2533, + 2833, { "updates": [ - 2547, + 2847, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2561, + 2861, { "_inc": [ - 2557 + 2857 ], "_set": [ - 2566 + 2866 ], "where": [ - 2555, + 2855, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2551, + 2851, { "_inc": [ - 2557 + 2857 ], "_set": [ - 2566 + 2866 ], "pk_columns": [ - 2564, + 2864, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2561, + 2861, { "updates": [ - 2574, + 2874, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2595, + 2895, { "_inc": [ - 2589 + 2889 ], "_set": [ - 2600 + 2900 ], "where": [ - 2587, + 2887, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2578, + 2878, { "_inc": [ - 2589 + 2889 ], "_set": [ - 2600 + 2900 ], "pk_columns": [ - 2598, + 2898, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2595, + 2895, { "updates": [ - 2612, + 2912, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2638, + 2938, { "_inc": [ - 2632 + 2932 ], "_set": [ - 2645 + 2945 ], "where": [ - 2630, + 2930, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2619, + 2919, { "_inc": [ - 2632 + 2932 ], "_set": [ - 2645 + 2945 ], "pk_columns": [ - 2641, + 2941, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2638, + 2938, { "updates": [ - 2657, + 2957, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2699, + 2999, { "_inc": [ - 2693 + 2993 ], "_set": [ - 2704 + 3004 ], "where": [ - 2691, + 2991, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2682, + 2982, { "_inc": [ - 2693 + 2993 ], "_set": [ - 2704 + 3004 ], "pk_columns": [ - 2702, + 3002, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2699, + 2999, { "updates": [ - 2716, + 3016, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2733, + 3033, { "_inc": [ - 2729 + 3029 ], "_set": [ - 2738 + 3038 ], "where": [ - 2727, + 3027, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2723, + 3023, { "_inc": [ - 2729 + 3029 ], "_set": [ - 2738 + 3038 ], "pk_columns": [ - 2736, + 3036, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2733, + 3033, { "updates": [ - 2746, + 3046, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2767, + 3067, { "_inc": [ - 2761 + 3061 ], "_set": [ - 2772 + 3072 ], "where": [ - 2759, + 3059, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2750, + 3050, { "_inc": [ - 2761 + 3061 ], "_set": [ - 2772 + 3072 ], "pk_columns": [ - 2770, + 3070, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2767, + 3067, { "updates": [ - 2784, + 3084, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2810, + 3110, { "_inc": [ - 2804 + 3104 ], "_set": [ - 2817 + 3117 ], "where": [ - 2802, + 3102, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2791, + 3091, { "_inc": [ - 2804 + 3104 ], "_set": [ - 2817 + 3117 ], "pk_columns": [ - 2813, + 3113, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2810, + 3110, { "updates": [ - 2829, + 3129, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2896, + 3196, { "_inc": [ - 2890 + 3190 ], "_set": [ - 2903 + 3203 ], "where": [ - 2847, + 3147, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2836, + 3136, { "_inc": [ - 2890 + 3190 ], "_set": [ - 2903 + 3203 ], "pk_columns": [ - 2899, + 3199, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2865, + 3165, { "_inc": [ - 2859 + 3159 ], "_set": [ - 2870 + 3170 ], "where": [ - 2857, + 3157, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2848, + 3148, { "_inc": [ - 2859 + 3159 ], "_set": [ - 2870 + 3170 ], "pk_columns": [ - 2868, + 3168, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2865, + 3165, { "updates": [ - 2882, + 3182, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2896, + 3196, { "updates": [ - 2915, + 3215, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2931, + 3231, { "_inc": [ - 2927 + 3227 ], "_set": [ - 2934 + 3234 ], "where": [ - 2926, + 3226, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2931, + 3231, { "updates": [ - 2941, + 3241, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2962, + 3262, { "_inc": [ - 2956 + 3256 ], "_set": [ - 2967 + 3267 ], "where": [ - 2954, + 3254, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2945, + 3245, { "_inc": [ - 2956 + 3256 ], "_set": [ - 2967 + 3267 ], "pk_columns": [ - 2965, + 3265, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2962, + 3262, { "updates": [ - 2979, + 3279, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3054, + 3354, { "_inc": [ - 3048 + 3348 ], "_set": [ - 3059 + 3359 ], "where": [ - 3046, + 3346, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3037, + 3337, { "_inc": [ - 3048 + 3348 ], "_set": [ - 3059 + 3359 ], "pk_columns": [ - 3057, + 3357, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3054, + 3354, { "updates": [ - 3071, + 3371, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3113, + 3413, { "_inc": [ - 3107 + 3407 ], "_set": [ - 3118 + 3418 ], "where": [ - 3105, + 3405, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3096, + 3396, { "_inc": [ - 3107 + 3407 ], "_set": [ - 3118 + 3418 ], "pk_columns": [ - 3116, + 3416, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3113, + 3413, { "updates": [ - 3130, + 3430, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3154, + 3454, { "_inc": [ - 3148 + 3448 ], "_set": [ - 3159 + 3459 ], "where": [ - 3146, + 3446, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3137, + 3437, { "_inc": [ - 3148 + 3448 ], "_set": [ - 3159 + 3459 ], "pk_columns": [ - 3157, + 3457, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3154, + 3454, { "updates": [ - 3171, + 3471, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3205, + 3505, { "_inc": [ - 3199 + 3499 ], "_set": [ - 3218 + 3518 ], "where": [ - 3197, + 3497, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3178, + 3478, { "_inc": [ - 3199 + 3499 ], "_set": [ - 3218 + 3518 ], "pk_columns": [ - 3208, + 3508, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3205, + 3505, { "updates": [ - 3230, + 3530, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3247, + 3547, { "_inc": [ - 3243 + 3543 ], "_set": [ - 3253 + 3553 ], "where": [ - 3241, + 3541, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3237, + 3537, { "_inc": [ - 3243 + 3543 ], "_set": [ - 3253 + 3553 ], "pk_columns": [ - 3251, + 3551, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3247, + 3547, { "updates": [ - 3261, + 3561, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3279, + 3579, { "_append": [ - 3268 + 3568 ], "_delete_at_path": [ - 3272 + 3572 ], "_delete_elem": [ - 3273 + 3573 ], "_delete_key": [ - 3274 + 3574 ], "_inc": [ - 3275 + 3575 ], "_prepend": [ - 3283 + 3583 ], "_set": [ - 3285 + 3585 ], "where": [ - 3270, + 3570, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3265, + 3565, { "_append": [ - 3268 + 3568 ], "_delete_at_path": [ - 3272 + 3572 ], "_delete_elem": [ - 3273 + 3573 ], "_delete_key": [ - 3274 + 3574 ], "_inc": [ - 3275 + 3575 ], "_prepend": [ - 3283 + 3583 ], "_set": [ - 3285 + 3585 ], "pk_columns": [ - 3282, + 3582, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3279, + 3579, { "updates": [ - 3293, + 3593, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3307, + 3607, { "_inc": [ - 3303 + 3603 ], "_set": [ - 3312 + 3612 ], "where": [ - 3301, + 3601, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3297, + 3597, { "_inc": [ - 3303 + 3603 ], "_set": [ - 3312 + 3612 ], "pk_columns": [ - 3310, + 3610, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3307, + 3607, { "updates": [ - 3320, + 3620, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3341, + 3641, { "_inc": [ - 3335 + 3635 ], "_set": [ - 3346 + 3646 ], "where": [ - 3333, + 3633, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3324, + 3624, { "_inc": [ - 3335 + 3635 ], "_set": [ - 3346 + 3646 ], "pk_columns": [ - 3344, + 3644, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3341, + 3641, { "updates": [ - 3358, + 3658, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3382, + 3682, { "_inc": [ - 3376 + 3676 ], "_set": [ - 3387 + 3687 ], "where": [ - 3374, + 3674, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3365, + 3665, { "_inc": [ - 3376 + 3676 ], "_set": [ - 3387 + 3687 ], "pk_columns": [ - 3385, + 3685, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3382, + 3682, { "updates": [ - 3399, + 3699, "[player_utility_updates!]!" ] } ], "update_players": [ - 3449, + 3749, { "_inc": [ - 3445 + 3745 ], "_set": [ - 3455 + 3755 ], "where": [ - 3443, + 3743, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3439, + 3739, { "_inc": [ - 3445 + 3745 ], "_set": [ - 3455 + 3755 ], "pk_columns": [ - 3453, + 3753, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3449, + 3749, { "updates": [ - 3463, + 3763, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3477, + 3777, { "_inc": [ - 3473 + 3773 ], "_set": [ - 3482 + 3782 ], "where": [ - 3471, + 3771, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3467, + 3767, { "_inc": [ - 3473 + 3773 ], "_set": [ - 3482 + 3782 ], "pk_columns": [ - 3480, + 3780, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3477, + 3777, { "updates": [ - 3490, + 3790, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3508, + 3808, { "_inc": [ - 3504 + 3804 ], "_set": [ - 3514 + 3814 ], "where": [ - 3502, + 3802, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3498, + 3798, { "_inc": [ - 3504 + 3804 ], "_set": [ - 3514 + 3814 ], "pk_columns": [ - 3512, + 3812, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3508, + 3808, { "updates": [ - 3522, + 3822, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3535, + 3835, { "_set": [ - 3541 + 3841 ], "where": [ - 3530, + 3830, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3526, + 3826, { "_set": [ - 3541 + 3841 ], "pk_columns": [ - 3539, + 3839, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3535, + 3835, { "updates": [ - 3549, + 3849, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3572, + 3872, { "_inc": [ - 3566 + 3866 ], "_set": [ - 3580 + 3880 ], "where": [ - 3564, + 3864, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3553, + 3853, { "_inc": [ - 3566 + 3866 ], "_set": [ - 3580 + 3880 ], "pk_columns": [ - 3576, + 3876, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3572, + 3872, { "updates": [ - 3592, + 3892, "[servers_updates!]!" ] } ], "update_settings": [ - 3607, + 3907, { "_set": [ - 3612 + 3912 ], "where": [ - 3602, + 3902, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3599, + 3899, { "_set": [ - 3612 + 3912 ], "pk_columns": [ - 3610, + 3910, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3607, + 3907, { "updates": [ - 3616, + 3916, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3633, + 3933, { "_set": [ - 3638 + 3938 ], "where": [ - 3626, + 3926, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3619, + 3919, { "_set": [ - 3638 + 3938 ], "pk_columns": [ - 3636, + 3936, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3633, + 3933, { "updates": [ - 3642, + 3942, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3653, + 3953, { "_inc": [ - 3649 + 3949 ], "_set": [ - 3659 + 3959 ], "where": [ - 3647, + 3947, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3643, + 3943, { "_inc": [ - 3649 + 3949 ], "_set": [ - 3659 + 3959 ], "pk_columns": [ - 3657, + 3957, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3653, + 3953, { "updates": [ - 3667, + 3967, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3681, + 3981, { "_inc": [ - 3677 + 3977 ], "_set": [ - 3686 + 3986 ], "where": [ - 3675, + 3975, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3671, + 3971, { "_inc": [ - 3677 + 3977 ], "_set": [ - 3686 + 3986 ], "pk_columns": [ - 3684, + 3984, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3681, + 3981, { "updates": [ - 3694, + 3994, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3715, + 4015, { "_inc": [ - 3709 + 4009 ], "_set": [ - 3720 + 4020 ], "where": [ - 3707, + 4007, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3698, + 3998, { "_inc": [ - 3709 + 4009 ], "_set": [ - 3720 + 4020 ], "pk_columns": [ - 3718, + 4018, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3715, + 4015, { "updates": [ - 3732, + 4032, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3758, + 4058, { "_inc": [ - 3752 + 4052 ], "_set": [ - 3765 + 4065 ], "where": [ - 3750, + 4050, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3739, + 4039, { "_inc": [ - 3752 + 4052 ], "_set": [ - 3765 + 4065 ], "pk_columns": [ - 3761, + 4061, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3758, + 4058, { "updates": [ - 3777, + 4077, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3794, + 4094, { "_inc": [ - 3790 + 4090 ], "_set": [ - 3799 + 4099 ], "where": [ - 3788, + 4088, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3784, + 4084, { "_inc": [ - 3790 + 4090 ], "_set": [ - 3799 + 4099 ], "pk_columns": [ - 3797, + 4097, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3794, + 4094, { "updates": [ - 3807, + 4107, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 3827, + 4127, { "_set": [ - 3834 + 4134 ], "where": [ - 3820, + 4120, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3811, + 4111, { "_set": [ - 3834 + 4134 ], "pk_columns": [ - 3830, + 4130, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 3827, + 4127, { "updates": [ - 3838, + 4138, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 3856, + 4156, { "_inc": [ - 3850 + 4150 ], "_set": [ - 3861 + 4161 ], "where": [ - 3848, + 4148, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 3839, + 4139, { "_inc": [ - 3850 + 4150 ], "_set": [ - 3861 + 4161 ], "pk_columns": [ - 3859, + 4159, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 3856, + 4156, { "updates": [ - 3873, + 4173, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 3899, + 4199, { "_inc": [ - 3893 + 4193 ], "_set": [ - 3907 + 4207 ], "where": [ - 3891, + 4191, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 3880, + 4180, { "_inc": [ - 3893 + 4193 ], "_set": [ - 3907 + 4207 ], "pk_columns": [ - 3903, + 4203, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 3899, + 4199, { "updates": [ - 3919, + 4219, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 3936, + 4236, { "_inc": [ - 3932 + 4232 ], "_set": [ - 3942 + 4242 ], "where": [ - 3930, + 4230, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 3926, + 4226, { "_inc": [ - 3932 + 4232 ], "_set": [ - 3942 + 4242 ], "pk_columns": [ - 3940, + 4240, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 3936, + 4236, { "updates": [ - 3950, + 4250, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 3964, + 4264, { "_inc": [ - 3960 + 4260 ], "_set": [ - 3969 + 4269 ], "where": [ - 3958, + 4258, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 3954, + 4254, { "_inc": [ - 3960 + 4260 ], "_set": [ - 3969 + 4269 ], "pk_columns": [ - 3967, + 4267, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 3964, + 4264, { "updates": [ - 3977, + 4277, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 3998, + 4298, { "_inc": [ - 3992 + 4292 ], "_set": [ - 4004 + 4304 ], "where": [ - 3990, + 4290, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 3981, + 4281, { "_inc": [ - 3992 + 4292 ], "_set": [ - 4004 + 4304 ], "pk_columns": [ - 4002, + 4302, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 3998, + 4298, { "updates": [ - 4016, + 4316, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4045, + 4345, { "_inc": [ - 4039 + 4339 ], "_set": [ - 4053 + 4353 ], "where": [ - 4037, + 4337, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4026, + 4326, { "_inc": [ - 4039 + 4339 ], "_set": [ - 4053 + 4353 ], "pk_columns": [ - 4049, + 4349, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4045, + 4345, { "updates": [ - 4065, + 4365, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 4089, + 4389, { "_inc": [ - 4083 + 4383 ], "_set": [ - 4094 + 4394 ], "where": [ - 4081, + 4381, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4072, + 4372, { "_inc": [ - 4083 + 4383 ], "_set": [ - 4094 + 4394 ], "pk_columns": [ - 4092, + 4392, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4089, + 4389, { "updates": [ - 4106, + 4406, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4130, + 4430, { "_inc": [ - 4124 + 4424 ], "_set": [ - 4135 + 4435 ], "where": [ - 4122, + 4422, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4113, + 4413, { "_inc": [ - 4124 + 4424 ], "_set": [ - 4135 + 4435 ], "pk_columns": [ - 4133, + 4433, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4130, + 4430, { "updates": [ - 4147, + 4447, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4177, + 4477, { "_append": [ - 4162 + 4462 ], "_delete_at_path": [ - 4168 + 4468 ], "_delete_elem": [ - 4169 + 4469 ], "_delete_key": [ - 4170 + 4470 ], "_inc": [ - 4171 + 4471 ], "_prepend": [ - 4182 + 4482 ], "_set": [ - 4186 + 4486 ], "where": [ - 4166, + 4466, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4154, + 4454, { "_append": [ - 4162 + 4462 ], "_delete_at_path": [ - 4168 + 4468 ], "_delete_elem": [ - 4169 + 4469 ], "_delete_key": [ - 4170 + 4470 ], "_inc": [ - 4171 + 4471 ], "_prepend": [ - 4182 + 4482 ], "_set": [ - 4186 + 4486 ], "pk_columns": [ - 4181, + 4481, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4177, + 4477, { "updates": [ - 4198, + 4498, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4222, + 4522, { "_inc": [ - 4216 + 4516 ], "_set": [ - 4227 + 4527 ], "where": [ - 4214, + 4514, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4205, + 4505, { "_inc": [ - 4216 + 4516 ], "_set": [ - 4227 + 4527 ], "pk_columns": [ - 4225, + 4525, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4222, + 4522, { "updates": [ - 4239, + 4539, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4263, + 4563, { "_inc": [ - 4257 + 4557 ], "_set": [ - 4268 + 4568 ], "where": [ - 4255, + 4555, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4246, + 4546, { "_inc": [ - 4257 + 4557 ], "_set": [ - 4268 + 4568 ], "pk_columns": [ - 4266, + 4566, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4263, + 4563, { "updates": [ - 4280, + 4580, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4304, + 4604, { "_inc": [ - 4298 + 4598 ], "_set": [ - 4310 + 4610 ], "where": [ - 4296, + 4596, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4287, + 4587, { "_inc": [ - 4298 + 4598 ], "_set": [ - 4310 + 4610 ], "pk_columns": [ - 4308, + 4608, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4304, + 4604, { "updates": [ - 4322, + 4622, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4348, + 4648, { "_inc": [ - 4342 + 4642 ], "_set": [ - 4355 + 4655 ], "where": [ - 4340, + 4640, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4329, + 4629, { "_inc": [ - 4342 + 4642 ], "_set": [ - 4355 + 4655 ], "pk_columns": [ - 4351, + 4651, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4348, + 4648, { "updates": [ - 4367, + 4667, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4391, + 4691, { "_inc": [ - 4385 + 4685 ], "_set": [ - 4397 + 4697 ], "where": [ - 4383, + 4683, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4374, + 4674, { "_inc": [ - 4385 + 4685 ], "_set": [ - 4397 + 4697 ], "pk_columns": [ - 4395, + 4695, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4391, + 4691, { "updates": [ - 4409, + 4709, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4435, + 4735, { "_inc": [ - 4429 + 4729 ], "_set": [ - 4443 + 4743 ], "where": [ - 4427, + 4727, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4416, + 4716, { "_inc": [ - 4429 + 4729 ], "_set": [ - 4443 + 4743 ], "pk_columns": [ - 4439, + 4739, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4435, + 4735, { "updates": [ - 4455, + 4755, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4576, + 4927, { "_inc": [ - 4572 + 4923 ], "_set": [ - 4580 + 4931 ], "where": [ - 4571, + 4922, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4576, + 4927, { "updates": [ - 4587, + 4938, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 4687, + 5038, { "_inc": [ - 4683 + 5034 ], "_set": [ - 4690 + 5041 ], "where": [ - 4682, + 5033, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 4687, + 5038, { "updates": [ - 4697, + 5048, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 4909, + 5260, { "_inc": [ - 4903 + 5254 ], "_set": [ - 4912 + 5263 ], "where": [ - 4902, + 5253, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 4909, + 5260, { "updates": [ - 4923, + 5274, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5068, + 5419, { "_set": [ - 5073 + 5424 ], "where": [ - 5062, + 5413, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5068, + 5419, { "updates": [ - 5076, + 5427, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5162, + 5513, { "_inc": [ - 5156 + 5507 ], "_set": [ - 5176 + 5527 ], "where": [ - 5154, + 5505, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5135, + 5486, { "_inc": [ - 5156 + 5507 ], "_set": [ - 5176 + 5527 ], "pk_columns": [ - 5166, + 5517, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5162, + 5513, { "updates": [ - 5188, + 5539, "[v_team_stage_results_updates!]!" ] } @@ -147087,7 +154255,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4762, "uuid!" ] } @@ -147096,10 +154264,10 @@ export default { 91, { "match_map_demo_id": [ - 4462 + 4762 ], "match_map_id": [ - 4462, + 4762, "uuid!" ] } @@ -147177,11 +154345,11 @@ export default { 92, { "map_id": [ - 4462, + 4762, "uuid!" ], "map_pool_id": [ - 4462, + 4762, "uuid!" ] } @@ -147250,7 +154418,7 @@ export default { 111, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -147319,7 +154487,7 @@ export default { 152, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -147388,7 +154556,7 @@ export default { 185, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -147457,7 +154625,7 @@ export default { 237, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -147526,7 +154694,7 @@ export default { 264, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -147595,7 +154763,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -147668,7 +154836,7 @@ export default { 354, { "id": [ - 4462, + 4762, "uuid!" ] } @@ -148103,11 +155271,149 @@ export default { ] } ], - "e_friend_status": [ + "e_event_media_access": [ 525, { "distinct_on": [ - 540, + 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 + ] + } + ], + "e_friend_status": [ + 565, + { + "distinct_on": [ + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -148117,19 +155423,19 @@ export default { 38 ], "order_by": [ - 538, + 578, "[e_friend_status_order_by!]" ], "where": [ - 528 + 568 ] } ], "e_friend_status_aggregate": [ - 526, + 566, { "distinct_on": [ - 540, + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -148139,16 +155445,16 @@ export default { 38 ], "order_by": [ - 538, + 578, "[e_friend_status_order_by!]" ], "where": [ - 528 + 568 ] } ], "e_friend_status_by_pk": [ - 525, + 565, { "value": [ 78, @@ -148157,26 +155463,26 @@ export default { } ], "e_friend_status_stream": [ - 525, + 565, { "batch_size": [ 38, "Int!" ], "cursor": [ - 542, + 582, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 528 + 568 ] } ], "e_game_cfg_types": [ - 546, + 586, { "distinct_on": [ - 560, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -148186,19 +155492,19 @@ export default { 38 ], "order_by": [ - 558, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 589 ] } ], "e_game_cfg_types_aggregate": [ - 547, + 587, { "distinct_on": [ - 560, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -148208,16 +155514,16 @@ export default { 38 ], "order_by": [ - 558, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 589 ] } ], "e_game_cfg_types_by_pk": [ - 546, + 586, { "value": [ 78, @@ -148226,26 +155532,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 546, + 586, { "batch_size": [ 38, "Int!" ], "cursor": [ - 562, + 602, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 549 + 589 ] } ], "e_game_server_node_statuses": [ - 566, + 606, { "distinct_on": [ - 581, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -148255,19 +155561,19 @@ export default { 38 ], "order_by": [ - 579, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 609 ] } ], "e_game_server_node_statuses_aggregate": [ - 567, + 607, { "distinct_on": [ - 581, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -148277,16 +155583,16 @@ export default { 38 ], "order_by": [ - 579, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 609 ] } ], "e_game_server_node_statuses_by_pk": [ - 566, + 606, { "value": [ 78, @@ -148295,26 +155601,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 566, + 606, { "batch_size": [ 38, "Int!" ], "cursor": [ - 583, + 623, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 569 + 609 ] } ], "e_league_movement_types": [ - 587, + 627, { "distinct_on": [ - 602, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -148324,19 +155630,19 @@ export default { 38 ], "order_by": [ - 600, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 630 ] } ], "e_league_movement_types_aggregate": [ - 588, + 628, { "distinct_on": [ - 602, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -148346,16 +155652,16 @@ export default { 38 ], "order_by": [ - 600, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 630 ] } ], "e_league_movement_types_by_pk": [ - 587, + 627, { "value": [ 78, @@ -148364,26 +155670,26 @@ export default { } ], "e_league_movement_types_stream": [ - 587, + 627, { "batch_size": [ 38, "Int!" ], "cursor": [ - 604, + 644, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 590 + 630 ] } ], "e_league_proposal_statuses": [ - 608, + 648, { "distinct_on": [ - 623, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -148393,19 +155699,19 @@ export default { 38 ], "order_by": [ - 621, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 651 ] } ], "e_league_proposal_statuses_aggregate": [ - 609, + 649, { "distinct_on": [ - 623, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -148415,16 +155721,16 @@ export default { 38 ], "order_by": [ - 621, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 651 ] } ], "e_league_proposal_statuses_by_pk": [ - 608, + 648, { "value": [ 78, @@ -148433,26 +155739,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 608, + 648, { "batch_size": [ 38, "Int!" ], "cursor": [ - 625, + 665, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 611 + 651 ] } ], "e_league_registration_statuses": [ - 629, + 669, { "distinct_on": [ - 644, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -148462,19 +155768,19 @@ export default { 38 ], "order_by": [ - 642, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 672 ] } ], "e_league_registration_statuses_aggregate": [ - 630, + 670, { "distinct_on": [ - 644, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -148484,16 +155790,16 @@ export default { 38 ], "order_by": [ - 642, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 672 ] } ], "e_league_registration_statuses_by_pk": [ - 629, + 669, { "value": [ 78, @@ -148502,26 +155808,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 629, + 669, { "batch_size": [ 38, "Int!" ], "cursor": [ - 646, + 686, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 632 + 672 ] } ], "e_league_season_statuses": [ - 650, + 690, { "distinct_on": [ - 665, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -148531,19 +155837,19 @@ export default { 38 ], "order_by": [ - 663, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 693 ] } ], "e_league_season_statuses_aggregate": [ - 651, + 691, { "distinct_on": [ - 665, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -148553,16 +155859,16 @@ export default { 38 ], "order_by": [ - 663, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 693 ] } ], "e_league_season_statuses_by_pk": [ - 650, + 690, { "value": [ 78, @@ -148571,26 +155877,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 650, + 690, { "batch_size": [ 38, "Int!" ], "cursor": [ - 667, + 707, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 653 + 693 ] } ], "e_lobby_access": [ - 671, + 711, { "distinct_on": [ - 686, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -148600,19 +155906,19 @@ export default { 38 ], "order_by": [ - 684, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 714 ] } ], "e_lobby_access_aggregate": [ - 672, + 712, { "distinct_on": [ - 686, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -148622,16 +155928,16 @@ export default { 38 ], "order_by": [ - 684, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 714 ] } ], "e_lobby_access_by_pk": [ - 671, + 711, { "value": [ 78, @@ -148640,26 +155946,26 @@ export default { } ], "e_lobby_access_stream": [ - 671, + 711, { "batch_size": [ 38, "Int!" ], "cursor": [ - 688, + 728, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 674 + 714 ] } ], "e_lobby_player_status": [ - 692, + 732, { "distinct_on": [ - 706, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -148669,19 +155975,19 @@ export default { 38 ], "order_by": [ - 704, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 735 ] } ], "e_lobby_player_status_aggregate": [ - 693, + 733, { "distinct_on": [ - 706, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -148691,16 +155997,16 @@ export default { 38 ], "order_by": [ - 704, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 735 ] } ], "e_lobby_player_status_by_pk": [ - 692, + 732, { "value": [ 78, @@ -148709,26 +156015,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 692, + 732, { "batch_size": [ 38, "Int!" ], "cursor": [ - 708, + 748, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 695 + 735 ] } ], "e_map_pool_types": [ - 712, + 752, { "distinct_on": [ - 727, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -148738,19 +156044,19 @@ export default { 38 ], "order_by": [ - 725, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 755 ] } ], "e_map_pool_types_aggregate": [ - 713, + 753, { "distinct_on": [ - 727, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -148760,16 +156066,16 @@ export default { 38 ], "order_by": [ - 725, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 755 ] } ], "e_map_pool_types_by_pk": [ - 712, + 752, { "value": [ 78, @@ -148778,26 +156084,26 @@ export default { } ], "e_map_pool_types_stream": [ - 712, + 752, { "batch_size": [ 38, "Int!" ], "cursor": [ - 729, + 769, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 715 + 755 ] } ], "e_match_clip_visibility": [ - 733, + 773, { "distinct_on": [ - 747, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -148807,19 +156113,19 @@ export default { 38 ], "order_by": [ - 745, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 776 ] } ], "e_match_clip_visibility_aggregate": [ - 734, + 774, { "distinct_on": [ - 747, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -148829,16 +156135,16 @@ export default { 38 ], "order_by": [ - 745, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 776 ] } ], "e_match_clip_visibility_by_pk": [ - 733, + 773, { "value": [ 78, @@ -148847,26 +156153,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 733, + 773, { "batch_size": [ 38, "Int!" ], "cursor": [ - 749, + 789, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 736 + 776 ] } ], "e_match_map_status": [ - 753, + 793, { "distinct_on": [ - 768, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -148876,19 +156182,19 @@ export default { 38 ], "order_by": [ - 766, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 796 ] } ], "e_match_map_status_aggregate": [ - 754, + 794, { "distinct_on": [ - 768, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -148898,16 +156204,16 @@ export default { 38 ], "order_by": [ - 766, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 796 ] } ], "e_match_map_status_by_pk": [ - 753, + 793, { "value": [ 78, @@ -148916,26 +156222,26 @@ export default { } ], "e_match_map_status_stream": [ - 753, + 793, { "batch_size": [ 38, "Int!" ], "cursor": [ - 770, + 810, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 756 + 796 ] } ], "e_match_mode": [ - 774, + 814, { "distinct_on": [ - 788, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -148945,19 +156251,19 @@ export default { 38 ], "order_by": [ - 786, + 826, "[e_match_mode_order_by!]" ], "where": [ - 777 + 817 ] } ], "e_match_mode_aggregate": [ - 775, + 815, { "distinct_on": [ - 788, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -148967,16 +156273,16 @@ export default { 38 ], "order_by": [ - 786, + 826, "[e_match_mode_order_by!]" ], "where": [ - 777 + 817 ] } ], "e_match_mode_by_pk": [ - 774, + 814, { "value": [ 78, @@ -148985,26 +156291,26 @@ export default { } ], "e_match_mode_stream": [ - 774, + 814, { "batch_size": [ 38, "Int!" ], "cursor": [ - 790, + 830, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 777 + 817 ] } ], "e_match_status": [ - 794, + 834, { "distinct_on": [ - 809, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -149014,19 +156320,19 @@ export default { 38 ], "order_by": [ - 807, + 847, "[e_match_status_order_by!]" ], "where": [ - 797 + 837 ] } ], "e_match_status_aggregate": [ - 795, + 835, { "distinct_on": [ - 809, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -149036,16 +156342,16 @@ export default { 38 ], "order_by": [ - 807, + 847, "[e_match_status_order_by!]" ], "where": [ - 797 + 837 ] } ], "e_match_status_by_pk": [ - 794, + 834, { "value": [ 78, @@ -149054,26 +156360,26 @@ export default { } ], "e_match_status_stream": [ - 794, + 834, { "batch_size": [ 38, "Int!" ], "cursor": [ - 811, + 851, "[e_match_status_stream_cursor_input]!" ], "where": [ - 797 + 837 ] } ], "e_match_types": [ - 815, + 855, { "distinct_on": [ - 830, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -149083,19 +156389,19 @@ export default { 38 ], "order_by": [ - 828, + 868, "[e_match_types_order_by!]" ], "where": [ - 818 + 858 ] } ], "e_match_types_aggregate": [ - 816, + 856, { "distinct_on": [ - 830, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -149105,16 +156411,16 @@ export default { 38 ], "order_by": [ - 828, + 868, "[e_match_types_order_by!]" ], "where": [ - 818 + 858 ] } ], "e_match_types_by_pk": [ - 815, + 855, { "value": [ 78, @@ -149123,26 +156429,26 @@ export default { } ], "e_match_types_stream": [ - 815, + 855, { "batch_size": [ 38, "Int!" ], "cursor": [ - 832, + 872, "[e_match_types_stream_cursor_input]!" ], "where": [ - 818 + 858 ] } ], "e_notification_types": [ - 836, + 876, { "distinct_on": [ - 850, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -149152,19 +156458,19 @@ export default { 38 ], "order_by": [ - 848, + 888, "[e_notification_types_order_by!]" ], "where": [ - 839 + 879 ] } ], "e_notification_types_aggregate": [ - 837, + 877, { "distinct_on": [ - 850, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -149174,16 +156480,16 @@ export default { 38 ], "order_by": [ - 848, + 888, "[e_notification_types_order_by!]" ], "where": [ - 839 + 879 ] } ], "e_notification_types_by_pk": [ - 836, + 876, { "value": [ 78, @@ -149192,26 +156498,26 @@ export default { } ], "e_notification_types_stream": [ - 836, + 876, { "batch_size": [ 38, "Int!" ], "cursor": [ - 852, + 892, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 839 + 879 ] } ], "e_objective_types": [ - 856, + 896, { "distinct_on": [ - 870, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -149221,19 +156527,19 @@ export default { 38 ], "order_by": [ - 868, + 908, "[e_objective_types_order_by!]" ], "where": [ - 859 + 899 ] } ], "e_objective_types_aggregate": [ - 857, + 897, { "distinct_on": [ - 870, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -149243,16 +156549,16 @@ export default { 38 ], "order_by": [ - 868, + 908, "[e_objective_types_order_by!]" ], "where": [ - 859 + 899 ] } ], "e_objective_types_by_pk": [ - 856, + 896, { "value": [ 78, @@ -149261,26 +156567,26 @@ export default { } ], "e_objective_types_stream": [ - 856, + 896, { "batch_size": [ 38, "Int!" ], "cursor": [ - 872, + 912, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 859 + 899 ] } ], "e_player_roles": [ - 876, + 916, { "distinct_on": [ - 890, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -149290,19 +156596,19 @@ export default { 38 ], "order_by": [ - 888, + 928, "[e_player_roles_order_by!]" ], "where": [ - 879 + 919 ] } ], "e_player_roles_aggregate": [ - 877, + 917, { "distinct_on": [ - 890, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -149312,16 +156618,16 @@ export default { 38 ], "order_by": [ - 888, + 928, "[e_player_roles_order_by!]" ], "where": [ - 879 + 919 ] } ], "e_player_roles_by_pk": [ - 876, + 916, { "value": [ 78, @@ -149330,26 +156636,26 @@ export default { } ], "e_player_roles_stream": [ - 876, + 916, { "batch_size": [ 38, "Int!" ], "cursor": [ - 892, + 932, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 879 + 919 ] } ], "e_plugin_runtimes": [ - 896, + 936, { "distinct_on": [ - 910, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -149359,19 +156665,19 @@ export default { 38 ], "order_by": [ - 908, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 939 ] } ], "e_plugin_runtimes_aggregate": [ - 897, + 937, { "distinct_on": [ - 910, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -149381,16 +156687,16 @@ export default { 38 ], "order_by": [ - 908, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 939 ] } ], "e_plugin_runtimes_by_pk": [ - 896, + 936, { "value": [ 78, @@ -149399,26 +156705,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 896, + 936, { "batch_size": [ 38, "Int!" ], "cursor": [ - 912, + 952, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 899 + 939 ] } ], "e_ready_settings": [ - 916, + 956, { "distinct_on": [ - 930, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -149428,19 +156734,19 @@ export default { 38 ], "order_by": [ - 928, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 959 ] } ], "e_ready_settings_aggregate": [ - 917, + 957, { "distinct_on": [ - 930, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -149450,16 +156756,16 @@ export default { 38 ], "order_by": [ - 928, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 959 ] } ], "e_ready_settings_by_pk": [ - 916, + 956, { "value": [ 78, @@ -149468,26 +156774,26 @@ export default { } ], "e_ready_settings_stream": [ - 916, + 956, { "batch_size": [ 38, "Int!" ], "cursor": [ - 932, + 972, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 919 + 959 ] } ], "e_sanction_types": [ - 936, + 976, { "distinct_on": [ - 951, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -149497,19 +156803,19 @@ export default { 38 ], "order_by": [ - 949, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 979 ] } ], "e_sanction_types_aggregate": [ - 937, + 977, { "distinct_on": [ - 951, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -149519,16 +156825,16 @@ export default { 38 ], "order_by": [ - 949, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 979 ] } ], "e_sanction_types_by_pk": [ - 936, + 976, { "value": [ 78, @@ -149537,26 +156843,26 @@ export default { } ], "e_sanction_types_stream": [ - 936, + 976, { "batch_size": [ 38, "Int!" ], "cursor": [ - 953, + 993, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 939 + 979 ] } ], "e_scrim_request_statuses": [ - 957, + 997, { "distinct_on": [ - 971, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -149566,19 +156872,19 @@ export default { 38 ], "order_by": [ - 969, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 1000 ] } ], "e_scrim_request_statuses_aggregate": [ - 958, + 998, { "distinct_on": [ - 971, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -149588,16 +156894,16 @@ export default { 38 ], "order_by": [ - 969, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 1000 ] } ], "e_scrim_request_statuses_by_pk": [ - 957, + 997, { "value": [ 78, @@ -149606,26 +156912,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 957, + 997, { "batch_size": [ 38, "Int!" ], "cursor": [ - 973, + 1013, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 960 + 1000 ] } ], "e_server_types": [ - 977, + 1017, { "distinct_on": [ - 991, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -149635,19 +156941,19 @@ export default { 38 ], "order_by": [ - 989, + 1029, "[e_server_types_order_by!]" ], "where": [ - 980 + 1020 ] } ], "e_server_types_aggregate": [ - 978, + 1018, { "distinct_on": [ - 991, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -149657,16 +156963,16 @@ export default { 38 ], "order_by": [ - 989, + 1029, "[e_server_types_order_by!]" ], "where": [ - 980 + 1020 ] } ], "e_server_types_by_pk": [ - 977, + 1017, { "value": [ 78, @@ -149675,26 +156981,26 @@ export default { } ], "e_server_types_stream": [ - 977, + 1017, { "batch_size": [ 38, "Int!" ], "cursor": [ - 993, + 1033, "[e_server_types_stream_cursor_input]!" ], "where": [ - 980 + 1020 ] } ], "e_sides": [ - 997, + 1037, { "distinct_on": [ - 1011, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -149704,19 +157010,19 @@ export default { 38 ], "order_by": [ - 1009, + 1049, "[e_sides_order_by!]" ], "where": [ - 1000 + 1040 ] } ], "e_sides_aggregate": [ - 998, + 1038, { "distinct_on": [ - 1011, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -149726,16 +157032,16 @@ export default { 38 ], "order_by": [ - 1009, + 1049, "[e_sides_order_by!]" ], "where": [ - 1000 + 1040 ] } ], "e_sides_by_pk": [ - 997, + 1037, { "value": [ 78, @@ -149744,26 +157050,26 @@ export default { } ], "e_sides_stream": [ - 997, + 1037, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1013, + 1053, "[e_sides_stream_cursor_input]!" ], "where": [ - 1000 + 1040 ] } ], "e_system_alert_types": [ - 1017, + 1057, { "distinct_on": [ - 1031, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -149773,19 +157079,19 @@ export default { 38 ], "order_by": [ - 1029, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1060 ] } ], "e_system_alert_types_aggregate": [ - 1018, + 1058, { "distinct_on": [ - 1031, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -149795,16 +157101,16 @@ export default { 38 ], "order_by": [ - 1029, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1060 ] } ], "e_system_alert_types_by_pk": [ - 1017, + 1057, { "value": [ 78, @@ -149813,26 +157119,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1017, + 1057, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1033, + 1073, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1020 + 1060 ] } ], "e_team_roles": [ - 1037, + 1077, { "distinct_on": [ - 1052, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -149842,19 +157148,19 @@ export default { 38 ], "order_by": [ - 1050, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1080 ] } ], "e_team_roles_aggregate": [ - 1038, + 1078, { "distinct_on": [ - 1052, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -149864,16 +157170,16 @@ export default { 38 ], "order_by": [ - 1050, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1080 ] } ], "e_team_roles_by_pk": [ - 1037, + 1077, { "value": [ 78, @@ -149882,26 +157188,26 @@ export default { } ], "e_team_roles_stream": [ - 1037, + 1077, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1054, + 1094, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1040 + 1080 ] } ], "e_team_roster_statuses": [ - 1058, + 1098, { "distinct_on": [ - 1072, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -149911,19 +157217,19 @@ export default { 38 ], "order_by": [ - 1070, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1101 ] } ], "e_team_roster_statuses_aggregate": [ - 1059, + 1099, { "distinct_on": [ - 1072, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -149933,16 +157239,16 @@ export default { 38 ], "order_by": [ - 1070, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1101 ] } ], "e_team_roster_statuses_by_pk": [ - 1058, + 1098, { "value": [ 78, @@ -149951,26 +157257,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1058, + 1098, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1074, + 1114, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1061 + 1101 ] } ], "e_timeout_settings": [ - 1078, + 1118, { "distinct_on": [ - 1092, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -149980,19 +157286,19 @@ export default { 38 ], "order_by": [ - 1090, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1121 ] } ], "e_timeout_settings_aggregate": [ - 1079, + 1119, { "distinct_on": [ - 1092, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -150002,16 +157308,16 @@ export default { 38 ], "order_by": [ - 1090, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1121 ] } ], "e_timeout_settings_by_pk": [ - 1078, + 1118, { "value": [ 78, @@ -150020,26 +157326,26 @@ export default { } ], "e_timeout_settings_stream": [ - 1078, + 1118, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1094, + 1134, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1081 + 1121 ] } ], "e_tournament_stage_types": [ - 1098, + 1138, { "distinct_on": [ - 1113, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -150049,19 +157355,19 @@ export default { 38 ], "order_by": [ - 1111, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1141 ] } ], "e_tournament_stage_types_aggregate": [ - 1099, + 1139, { "distinct_on": [ - 1113, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -150071,16 +157377,16 @@ export default { 38 ], "order_by": [ - 1111, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1141 ] } ], "e_tournament_stage_types_by_pk": [ - 1098, + 1138, { "value": [ 78, @@ -150089,26 +157395,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1098, + 1138, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1115, + 1155, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1101 + 1141 ] } ], "e_tournament_status": [ - 1119, + 1159, { "distinct_on": [ - 1134, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -150118,19 +157424,19 @@ export default { 38 ], "order_by": [ - 1132, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1162 ] } ], "e_tournament_status_aggregate": [ - 1120, + 1160, { "distinct_on": [ - 1134, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -150140,16 +157446,16 @@ export default { 38 ], "order_by": [ - 1132, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1162 ] } ], "e_tournament_status_by_pk": [ - 1119, + 1159, { "value": [ 78, @@ -150158,26 +157464,26 @@ export default { } ], "e_tournament_status_stream": [ - 1119, + 1159, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1136, + 1176, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1122 + 1162 ] } ], "e_utility_types": [ - 1140, + 1180, { "distinct_on": [ - 1154, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -150187,19 +157493,19 @@ export default { 38 ], "order_by": [ - 1152, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1183 ] } ], "e_utility_types_aggregate": [ - 1141, + 1181, { "distinct_on": [ - 1154, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -150209,16 +157515,16 @@ export default { 38 ], "order_by": [ - 1152, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1183 ] } ], "e_utility_types_by_pk": [ - 1140, + 1180, { "value": [ 78, @@ -150227,26 +157533,26 @@ export default { } ], "e_utility_types_stream": [ - 1140, + 1180, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1156, + 1196, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1143 + 1183 ] } ], "e_veto_pick_types": [ - 1160, + 1200, { "distinct_on": [ - 1174, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -150256,19 +157562,19 @@ export default { 38 ], "order_by": [ - 1172, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1203 ] } ], "e_veto_pick_types_aggregate": [ - 1161, + 1201, { "distinct_on": [ - 1174, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -150278,16 +157584,16 @@ export default { 38 ], "order_by": [ - 1172, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1203 ] } ], "e_veto_pick_types_by_pk": [ - 1160, + 1200, { "value": [ 78, @@ -150296,26 +157602,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1160, + 1200, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1176, + 1216, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1163 + 1203 ] } ], "e_winning_reasons": [ - 1180, + 1220, { "distinct_on": [ - 1194, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -150325,19 +157631,19 @@ export default { 38 ], "order_by": [ - 1192, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1223 ] } ], "e_winning_reasons_aggregate": [ - 1181, + 1221, { "distinct_on": [ - 1194, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -150347,16 +157653,16 @@ export default { 38 ], "order_by": [ - 1192, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1223 ] } ], "e_winning_reasons_by_pk": [ - 1180, + 1220, { "value": [ 78, @@ -150365,26 +157671,602 @@ export default { } ], "e_winning_reasons_stream": [ - 1180, + 1220, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1196, + 1236, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1183 + 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, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1467, + "[event_tournaments_stream_cursor_input]!" + ], + "where": [ + 1454 + ] + } + ], + "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!" + ] + } + ], + "events_stream": [ + 1471, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1491, + "[events_stream_cursor_input]!" + ], + "where": [ + 1475 ] } ], "friends": [ - 1202, + 1501, { "distinct_on": [ - 1216, + 1515, "[friends_select_column!]" ], "limit": [ @@ -150394,19 +158276,19 @@ export default { 38 ], "order_by": [ - 1214, + 1513, "[friends_order_by!]" ], "where": [ - 1206 + 1505 ] } ], "friends_aggregate": [ - 1203, + 1502, { "distinct_on": [ - 1216, + 1515, "[friends_select_column!]" ], "limit": [ @@ -150416,16 +158298,16 @@ export default { 38 ], "order_by": [ - 1214, + 1513, "[friends_order_by!]" ], "where": [ - 1206 + 1505 ] } ], "friends_by_pk": [ - 1202, + 1501, { "other_player_steam_id": [ 180, @@ -150438,26 +158320,26 @@ export default { } ], "friends_stream": [ - 1202, + 1501, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1221, + 1520, "[friends_stream_cursor_input]!" ], "where": [ - 1206 + 1505 ] } ], "game_server_nodes": [ - 1229, + 1528, { "distinct_on": [ - 1258, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -150467,19 +158349,19 @@ export default { 38 ], "order_by": [ - 1255, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1540 ] } ], "game_server_nodes_aggregate": [ - 1230, + 1529, { "distinct_on": [ - 1258, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -150489,16 +158371,16 @@ export default { 38 ], "order_by": [ - 1255, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1540 ] } ], "game_server_nodes_by_pk": [ - 1229, + 1528, { "id": [ 78, @@ -150507,26 +158389,26 @@ export default { } ], "game_server_nodes_stream": [ - 1229, + 1528, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1268, + 1567, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1241 + 1540 ] } ], "game_versions": [ - 1280, + 1579, { "distinct_on": [ - 1300, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -150536,19 +158418,19 @@ export default { 38 ], "order_by": [ - 1297, + 1596, "[game_versions_order_by!]" ], "where": [ - 1285 + 1584 ] } ], "game_versions_aggregate": [ - 1281, + 1580, { "distinct_on": [ - 1300, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -150558,16 +158440,16 @@ export default { 38 ], "order_by": [ - 1297, + 1596, "[game_versions_order_by!]" ], "where": [ - 1285 + 1584 ] } ], "game_versions_by_pk": [ - 1280, + 1579, { "build_id": [ 38, @@ -150576,26 +158458,26 @@ export default { } ], "game_versions_stream": [ - 1280, + 1579, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1305, + 1604, "[game_versions_stream_cursor_input]!" ], "where": [ - 1285 + 1584 ] } ], "gamedata_signature_validations": [ - 1313, + 1612, { "distinct_on": [ - 1332, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -150605,19 +158487,19 @@ export default { 38 ], "order_by": [ - 1329, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1617 ] } ], "gamedata_signature_validations_aggregate": [ - 1314, + 1613, { "distinct_on": [ - 1332, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -150627,48 +158509,100 @@ export default { 38 ], "order_by": [ - 1329, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1617 ] } ], "gamedata_signature_validations_by_pk": [ - 1313, + 1612, { "id": [ - 4462, + 4762, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1313, + 1612, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1337, + 1636, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1318 + 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 ] } ], "get_leaderboard": [ - 1355, + 1655, { "args": [ - 1345, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150678,23 +158612,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_leaderboard_aggregate": [ - 1356, + 1656, { "args": [ - 1345, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150704,23 +158638,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_league_season_leaderboard": [ - 1355, + 1655, { "args": [ - 1346, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150730,23 +158664,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_league_season_leaderboard_aggregate": [ - 1356, + 1656, { "args": [ - 1346, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150756,23 +158690,23 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "get_player_leaderboard_rank": [ - 2922, + 3222, { "args": [ - 1347, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150782,23 +158716,23 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2923, + 3223, { "args": [ - 1347, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150808,19 +158742,19 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "leaderboard_entries": [ - 1355, + 1655, { "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150830,19 +158764,19 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "leaderboard_entries_aggregate": [ - 1356, + 1656, { "distinct_on": [ - 1366, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150852,35 +158786,35 @@ export default { 38 ], "order_by": [ - 1365, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1659 ] } ], "leaderboard_entries_stream": [ - 1355, + 1655, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1371, + 1671, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1359 + 1659 ] } ], "league_divisions": [ - 1379, + 1679, { "distinct_on": [ - 1394, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -150890,19 +158824,19 @@ export default { 38 ], "order_by": [ - 1392, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1683 ] } ], "league_divisions_aggregate": [ - 1380, + 1680, { "distinct_on": [ - 1394, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -150912,44 +158846,44 @@ export default { 38 ], "order_by": [ - 1392, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1683 ] } ], "league_divisions_by_pk": [ - 1379, + 1679, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_divisions_stream": [ - 1379, + 1679, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1399, + 1699, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1383 + 1683 ] } ], "league_match_weeks": [ - 1407, + 1707, { "distinct_on": [ - 1428, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -150959,19 +158893,19 @@ export default { 38 ], "order_by": [ - 1426, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1716 ] } ], "league_match_weeks_aggregate": [ - 1408, + 1708, { "distinct_on": [ - 1428, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -150981,44 +158915,44 @@ export default { 38 ], "order_by": [ - 1426, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1716 ] } ], "league_match_weeks_by_pk": [ - 1407, + 1707, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_match_weeks_stream": [ - 1407, + 1707, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1436, + 1736, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1416 + 1716 ] } ], "league_relegation_playoffs": [ - 1448, + 1748, { "distinct_on": [ - 1469, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -151028,19 +158962,19 @@ export default { 38 ], "order_by": [ - 1467, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1757 ] } ], "league_relegation_playoffs_aggregate": [ - 1449, + 1749, { "distinct_on": [ - 1469, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -151050,44 +158984,44 @@ export default { 38 ], "order_by": [ - 1467, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1757 ] } ], "league_relegation_playoffs_by_pk": [ - 1448, + 1748, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1448, + 1748, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1477, + 1777, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1457 + 1757 ] } ], "league_scheduling_proposals": [ - 1489, + 1789, { "distinct_on": [ - 1510, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -151097,19 +159031,19 @@ export default { 38 ], "order_by": [ - 1508, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1798 ] } ], "league_scheduling_proposals_aggregate": [ - 1490, + 1790, { "distinct_on": [ - 1510, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -151119,44 +159053,44 @@ export default { 38 ], "order_by": [ - 1508, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1798 ] } ], "league_scheduling_proposals_by_pk": [ - 1489, + 1789, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1489, + 1789, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1518, + 1818, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1498 + 1798 ] } ], "league_season_divisions": [ - 1530, + 1830, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -151166,19 +159100,19 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], "league_season_divisions_aggregate": [ - 1531, + 1831, { "distinct_on": [ - 1549, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -151188,44 +159122,44 @@ export default { 38 ], "order_by": [ - 1547, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1837 ] } ], "league_season_divisions_by_pk": [ - 1530, + 1830, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_season_divisions_stream": [ - 1530, + 1830, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1551, + 1851, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1537 + 1837 ] } ], "league_seasons": [ - 1555, + 1855, { "distinct_on": [ - 1575, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -151235,19 +159169,19 @@ export default { 38 ], "order_by": [ - 1572, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1860 ] } ], "league_seasons_aggregate": [ - 1556, + 1856, { "distinct_on": [ - 1575, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -151257,44 +159191,44 @@ export default { 38 ], "order_by": [ - 1572, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1860 ] } ], "league_seasons_by_pk": [ - 1555, + 1855, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_seasons_stream": [ - 1555, + 1855, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1580, + 1880, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1560 + 1860 ] } ], "league_team_movements": [ - 1588, + 1888, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -151304,19 +159238,19 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "league_team_movements_aggregate": [ - 1589, + 1889, { "distinct_on": [ - 1609, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -151326,44 +159260,44 @@ export default { 38 ], "order_by": [ - 1607, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1897 ] } ], "league_team_movements_by_pk": [ - 1588, + 1888, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_team_movements_stream": [ - 1588, + 1888, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1617, + 1917, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1597 + 1897 ] } ], "league_team_rosters": [ - 1629, + 1929, { "distinct_on": [ - 1650, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -151373,19 +159307,19 @@ export default { 38 ], "order_by": [ - 1648, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1938 ] } ], "league_team_rosters_aggregate": [ - 1630, + 1930, { "distinct_on": [ - 1650, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -151395,19 +159329,19 @@ export default { 38 ], "order_by": [ - 1648, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1938 ] } ], "league_team_rosters_by_pk": [ - 1629, + 1929, { "league_team_season_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -151417,26 +159351,26 @@ export default { } ], "league_team_rosters_stream": [ - 1629, + 1929, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1658, + 1958, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1638 + 1938 ] } ], "league_team_seasons": [ - 1670, + 1970, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -151446,19 +159380,19 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], "league_team_seasons_aggregate": [ - 1671, + 1971, { "distinct_on": [ - 1692, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -151468,44 +159402,44 @@ export default { 38 ], "order_by": [ - 1690, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1979 ] } ], "league_team_seasons_by_pk": [ - 1670, + 1970, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_team_seasons_stream": [ - 1670, + 1970, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1700, + 2000, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 1679 + 1979 ] } ], "league_teams": [ - 1712, + 2012, { "distinct_on": [ - 1725, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -151515,19 +159449,19 @@ export default { 38 ], "order_by": [ - 1723, + 2023, "[league_teams_order_by!]" ], "where": [ - 1715 + 2015 ] } ], "league_teams_aggregate": [ - 1713, + 2013, { "distinct_on": [ - 1725, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -151537,44 +159471,44 @@ export default { 38 ], "order_by": [ - 1723, + 2023, "[league_teams_order_by!]" ], "where": [ - 1715 + 2015 ] } ], "league_teams_by_pk": [ - 1712, + 2012, { "id": [ - 4462, + 4762, "uuid!" ] } ], "league_teams_stream": [ - 1712, + 2012, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1727, + 2027, "[league_teams_stream_cursor_input]!" ], "where": [ - 1715 + 2015 ] } ], "lobbies": [ - 1731, + 2031, { "distinct_on": [ - 1744, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -151584,19 +159518,19 @@ export default { 38 ], "order_by": [ - 1742, + 2042, "[lobbies_order_by!]" ], "where": [ - 1734 + 2034 ] } ], "lobbies_aggregate": [ - 1732, + 2032, { "distinct_on": [ - 1744, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -151606,44 +159540,44 @@ export default { 38 ], "order_by": [ - 1742, + 2042, "[lobbies_order_by!]" ], "where": [ - 1734 + 2034 ] } ], "lobbies_by_pk": [ - 1731, + 2031, { "id": [ - 4462, + 4762, "uuid!" ] } ], "lobbies_stream": [ - 1731, + 2031, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1746, + 2046, "[lobbies_stream_cursor_input]!" ], "where": [ - 1734 + 2034 ] } ], "lobby_players": [ - 1750, + 2050, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -151653,19 +159587,19 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], "lobby_players_aggregate": [ - 1751, + 2051, { "distinct_on": [ - 1773, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -151675,19 +159609,19 @@ export default { 38 ], "order_by": [ - 1771, + 2071, "[lobby_players_order_by!]" ], "where": [ - 1761 + 2061 ] } ], "lobby_players_by_pk": [ - 1750, + 2050, { "lobby_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -151697,26 +159631,26 @@ export default { } ], "lobby_players_stream": [ - 1750, + 2050, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1783, + 2083, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1761 + 2061 ] } ], "map_pools": [ - 1795, + 2095, { "distinct_on": [ - 1808, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -151726,19 +159660,19 @@ export default { 38 ], "order_by": [ - 1806, + 2106, "[map_pools_order_by!]" ], "where": [ - 1798 + 2098 ] } ], "map_pools_aggregate": [ - 1796, + 2096, { "distinct_on": [ - 1808, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -151748,44 +159682,44 @@ export default { 38 ], "order_by": [ - 1806, + 2106, "[map_pools_order_by!]" ], "where": [ - 1798 + 2098 ] } ], "map_pools_by_pk": [ - 1795, + 2095, { "id": [ - 4462, + 4762, "uuid!" ] } ], "map_pools_stream": [ - 1795, + 2095, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1810, + 2110, "[map_pools_stream_cursor_input]!" ], "where": [ - 1798 + 2098 ] } ], "maps": [ - 1814, + 2114, { "distinct_on": [ - 1835, + 2135, "[maps_select_column!]" ], "limit": [ @@ -151795,19 +159729,19 @@ export default { 38 ], "order_by": [ - 1833, + 2133, "[maps_order_by!]" ], "where": [ - 1823 + 2123 ] } ], "maps_aggregate": [ - 1815, + 2115, { "distinct_on": [ - 1835, + 2135, "[maps_select_column!]" ], "limit": [ @@ -151817,44 +159751,44 @@ export default { 38 ], "order_by": [ - 1833, + 2133, "[maps_order_by!]" ], "where": [ - 1823 + 2123 ] } ], "maps_by_pk": [ - 1814, + 2114, { "id": [ - 4462, + 4762, "uuid!" ] } ], "maps_stream": [ - 1814, + 2114, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1839, + 2139, "[maps_stream_cursor_input]!" ], "where": [ - 1823 + 2123 ] } ], "match_clips": [ - 1843, + 2143, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -151864,19 +159798,19 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_clips_aggregate": [ - 1844, + 2144, { "distinct_on": [ - 1865, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -151886,44 +159820,44 @@ export default { 38 ], "order_by": [ - 1863, + 2163, "[match_clips_order_by!]" ], "where": [ - 1852 + 2152 ] } ], "match_clips_by_pk": [ - 1843, + 2143, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_clips_stream": [ - 1843, + 2143, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1873, + 2173, "[match_clips_stream_cursor_input]!" ], "where": [ - 1852 + 2152 ] } ], "match_demo_sessions": [ - 1885, + 2185, { "distinct_on": [ - 1911, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -151933,19 +159867,19 @@ export default { 38 ], "order_by": [ - 1908, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2195 ] } ], "match_demo_sessions_aggregate": [ - 1886, + 2186, { "distinct_on": [ - 1911, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -151955,44 +159889,44 @@ export default { 38 ], "order_by": [ - 1908, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2195 ] } ], "match_demo_sessions_by_pk": [ - 1885, + 2185, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1885, + 2185, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1919, + 2219, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1895 + 2195 ] } ], "match_lineup_players": [ - 1931, + 2231, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -152002,19 +159936,19 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "match_lineup_players_aggregate": [ - 1932, + 2232, { "distinct_on": [ - 1954, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -152024,44 +159958,44 @@ export default { 38 ], "order_by": [ - 1952, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2242 ] } ], "match_lineup_players_by_pk": [ - 1931, + 2231, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_lineup_players_stream": [ - 1931, + 2231, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1964, + 2264, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1942 + 2242 ] } ], "match_lineups": [ - 1976, + 2276, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -152071,19 +160005,19 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], "match_lineups_aggregate": [ - 1977, + 2277, { "distinct_on": [ - 1998, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -152093,44 +160027,44 @@ export default { 38 ], "order_by": [ - 1996, + 2296, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2285 ] } ], "match_lineups_by_pk": [ - 1976, + 2276, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_lineups_stream": [ - 1976, + 2276, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2006, + 2306, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1985 + 2285 ] } ], "match_map_demos": [ - 2018, + 2318, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -152140,19 +160074,19 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], "match_map_demos_aggregate": [ - 2019, + 2319, { "distinct_on": [ - 2047, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -152162,44 +160096,44 @@ export default { 38 ], "order_by": [ - 2044, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2330 ] } ], "match_map_demos_by_pk": [ - 2018, + 2318, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_map_demos_stream": [ - 2018, + 2318, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2057, + 2357, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2030 + 2330 ] } ], "match_map_rounds": [ - 2069, + 2369, { "distinct_on": [ - 2090, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -152209,19 +160143,19 @@ export default { 38 ], "order_by": [ - 2088, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2378 ] } ], "match_map_rounds_aggregate": [ - 2070, + 2370, { "distinct_on": [ - 2090, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -152231,44 +160165,44 @@ export default { 38 ], "order_by": [ - 2088, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2378 ] } ], "match_map_rounds_by_pk": [ - 2069, + 2369, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_map_rounds_stream": [ - 2069, + 2369, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2098, + 2398, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2078 + 2378 ] } ], "match_map_veto_picks": [ - 2110, + 2410, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -152278,19 +160212,19 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "match_map_veto_picks_aggregate": [ - 2111, + 2411, { "distinct_on": [ - 2128, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -152300,44 +160234,44 @@ export default { 38 ], "order_by": [ - 2126, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2417 ] } ], "match_map_veto_picks_by_pk": [ - 2110, + 2410, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2110, + 2410, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2130, + 2430, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2117 + 2417 ] } ], "match_maps": [ - 2134, + 2434, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -152347,19 +160281,19 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_maps_aggregate": [ - 2135, + 2435, { "distinct_on": [ - 2156, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -152369,44 +160303,44 @@ export default { 38 ], "order_by": [ - 2154, + 2454, "[match_maps_order_by!]" ], "where": [ - 2143 + 2443 ] } ], "match_maps_by_pk": [ - 2134, + 2434, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_maps_stream": [ - 2134, + 2434, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2164, + 2464, "[match_maps_stream_cursor_input]!" ], "where": [ - 2143 + 2443 ] } ], "match_options": [ - 2176, + 2476, { "distinct_on": [ - 2191, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -152416,19 +160350,19 @@ export default { 38 ], "order_by": [ - 2189, + 2489, "[match_options_order_by!]" ], "where": [ - 2180 + 2480 ] } ], "match_options_aggregate": [ - 2177, + 2477, { "distinct_on": [ - 2191, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -152438,44 +160372,44 @@ export default { 38 ], "order_by": [ - 2189, + 2489, "[match_options_order_by!]" ], "where": [ - 2180 + 2480 ] } ], "match_options_by_pk": [ - 2176, + 2476, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_options_stream": [ - 2176, + 2476, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2196, + 2496, "[match_options_stream_cursor_input]!" ], "where": [ - 2180 + 2480 ] } ], "match_region_veto_picks": [ - 2204, + 2504, { "distinct_on": [ - 2222, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152485,19 +160419,19 @@ export default { 38 ], "order_by": [ - 2220, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2511 ] } ], "match_region_veto_picks_aggregate": [ - 2205, + 2505, { "distinct_on": [ - 2222, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152507,44 +160441,44 @@ export default { 38 ], "order_by": [ - 2220, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2511 ] } ], "match_region_veto_picks_by_pk": [ - 2204, + 2504, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2204, + 2504, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2224, + 2524, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2211 + 2511 ] } ], "match_streams": [ - 2228, + 2528, { "distinct_on": [ - 2256, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -152554,19 +160488,19 @@ export default { 38 ], "order_by": [ - 2253, + 2553, "[match_streams_order_by!]" ], "where": [ - 2240 + 2540 ] } ], "match_streams_aggregate": [ - 2229, + 2529, { "distinct_on": [ - 2256, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -152576,44 +160510,44 @@ export default { 38 ], "order_by": [ - 2253, + 2553, "[match_streams_order_by!]" ], "where": [ - 2240 + 2540 ] } ], "match_streams_by_pk": [ - 2228, + 2528, { "id": [ - 4462, + 4762, "uuid!" ] } ], "match_streams_stream": [ - 2228, + 2528, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2266, + 2566, "[match_streams_stream_cursor_input]!" ], "where": [ - 2240 + 2540 ] } ], "match_type_cfgs": [ - 2278, + 2578, { "distinct_on": [ - 2290, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152623,19 +160557,19 @@ export default { 38 ], "order_by": [ - 2288, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2581 ] } ], "match_type_cfgs_aggregate": [ - 2279, + 2579, { "distinct_on": [ - 2290, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152645,44 +160579,44 @@ export default { 38 ], "order_by": [ - 2288, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2581 ] } ], "match_type_cfgs_by_pk": [ - 2278, + 2578, { "type": [ - 551, + 591, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2278, + 2578, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2292, + 2592, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2281 + 2581 ] } ], "matches": [ - 2296, + 2596, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -152692,19 +160626,19 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matches_aggregate": [ - 2297, + 2597, { "distinct_on": [ - 2318, + 2618, "[matches_select_column!]" ], "limit": [ @@ -152714,44 +160648,44 @@ export default { 38 ], "order_by": [ - 2316, + 2616, "[matches_order_by!]" ], "where": [ - 2305 + 2605 ] } ], "matches_by_pk": [ - 2296, + 2596, { "id": [ - 4462, + 4762, "uuid!" ] } ], "matches_stream": [ - 2296, + 2596, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2326, + 2626, "[matches_stream_cursor_input]!" ], "where": [ - 2305 + 2605 ] } ], "migration_hashes_hashes": [ - 2338, + 2638, { "distinct_on": [ - 2350, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152761,19 +160695,19 @@ export default { 38 ], "order_by": [ - 2348, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2641 ] } ], "migration_hashes_hashes_aggregate": [ - 2339, + 2639, { "distinct_on": [ - 2350, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152783,16 +160717,16 @@ export default { 38 ], "order_by": [ - 2348, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2641 ] } ], "migration_hashes_hashes_by_pk": [ - 2338, + 2638, { "name": [ 78, @@ -152801,26 +160735,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2338, + 2638, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2352, + 2652, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2341 + 2641 ] } ], "my_friends": [ - 2356, + 2656, { "distinct_on": [ - 2381, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -152830,19 +160764,19 @@ export default { 38 ], "order_by": [ - 2379, + 2679, "[my_friends_order_by!]" ], "where": [ - 2368 + 2668 ] } ], "my_friends_aggregate": [ - 2357, + 2657, { "distinct_on": [ - 2381, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -152852,35 +160786,35 @@ export default { 38 ], "order_by": [ - 2379, + 2679, "[my_friends_order_by!]" ], "where": [ - 2368 + 2668 ] } ], "my_friends_stream": [ - 2356, + 2656, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2391, + 2691, "[my_friends_stream_cursor_input]!" ], "where": [ - 2368 + 2668 ] } ], "news_articles": [ - 2402, + 2702, { "distinct_on": [ - 2416, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -152890,19 +160824,19 @@ export default { 38 ], "order_by": [ - 2414, + 2714, "[news_articles_order_by!]" ], "where": [ - 2406 + 2706 ] } ], "news_articles_aggregate": [ - 2403, + 2703, { "distinct_on": [ - 2416, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -152912,44 +160846,44 @@ export default { 38 ], "order_by": [ - 2414, + 2714, "[news_articles_order_by!]" ], "where": [ - 2406 + 2706 ] } ], "news_articles_by_pk": [ - 2402, + 2702, { "id": [ - 4462, + 4762, "uuid!" ] } ], "news_articles_stream": [ - 2402, + 2702, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2421, + 2721, "[news_articles_stream_cursor_input]!" ], "where": [ - 2406 + 2706 ] } ], "notifications": [ - 2429, + 2729, { "distinct_on": [ - 2457, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -152959,19 +160893,19 @@ export default { 38 ], "order_by": [ - 2454, + 2754, "[notifications_order_by!]" ], "where": [ - 2441 + 2741 ] } ], "notifications_aggregate": [ - 2430, + 2730, { "distinct_on": [ - 2457, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -152981,44 +160915,44 @@ export default { 38 ], "order_by": [ - 2454, + 2754, "[notifications_order_by!]" ], "where": [ - 2441 + 2741 ] } ], "notifications_by_pk": [ - 2429, + 2729, { "id": [ - 4462, + 4762, "uuid!" ] } ], "notifications_stream": [ - 2429, + 2729, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2467, + 2767, "[notifications_stream_cursor_input]!" ], "where": [ - 2441 + 2741 ] } ], "pending_match_import_players": [ - 2482, + 2782, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -153028,19 +160962,19 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], "pending_match_import_players_aggregate": [ - 2483, + 2783, { "distinct_on": [ - 2503, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -153050,48 +160984,48 @@ export default { 38 ], "order_by": [ - 2501, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2791 ] } ], "pending_match_import_players_by_pk": [ - 2482, + 2782, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2779, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2482, + 2782, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2511, + 2811, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2491 + 2791 ] } ], "pending_match_imports": [ - 2523, + 2823, { "distinct_on": [ - 2538, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -153101,19 +161035,19 @@ export default { 38 ], "order_by": [ - 2536, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2827 ] } ], "pending_match_imports_aggregate": [ - 2524, + 2824, { "distinct_on": [ - 2538, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -153123,44 +161057,44 @@ export default { 38 ], "order_by": [ - 2536, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2827 ] } ], "pending_match_imports_by_pk": [ - 2523, + 2823, { "valve_match_id": [ - 2479, + 2779, "numeric!" ] } ], "pending_match_imports_stream": [ - 2523, + 2823, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2543, + 2843, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2527 + 2827 ] } ], "player_aim_stats_demo": [ - 2551, + 2851, { "distinct_on": [ - 2565, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -153170,19 +161104,19 @@ export default { 38 ], "order_by": [ - 2563, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2855 ] } ], "player_aim_stats_demo_aggregate": [ - 2552, + 2852, { "distinct_on": [ - 2565, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -153192,48 +161126,48 @@ export default { 38 ], "order_by": [ - 2563, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2855 ] } ], "player_aim_stats_demo_by_pk": [ - 2551, + 2851, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2551, + 2851, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2570, + 2870, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2555 + 2855 ] } ], "player_aim_weapon_stats": [ - 2578, + 2878, { "distinct_on": [ - 2599, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -153243,19 +161177,19 @@ export default { 38 ], "order_by": [ - 2597, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2887 ] } ], "player_aim_weapon_stats_aggregate": [ - 2579, + 2879, { "distinct_on": [ - 2599, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -153265,19 +161199,19 @@ export default { 38 ], "order_by": [ - 2597, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2887 ] } ], "player_aim_weapon_stats_by_pk": [ - 2578, + 2878, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -153291,26 +161225,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2578, + 2878, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2607, + 2907, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2587 + 2887 ] } ], "player_assists": [ - 2619, + 2919, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -153320,19 +161254,19 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_assists_aggregate": [ - 2620, + 2920, { "distinct_on": [ - 2642, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -153342,16 +161276,16 @@ export default { 38 ], "order_by": [ - 2640, + 2940, "[player_assists_order_by!]" ], "where": [ - 2630 + 2930 ] } ], "player_assists_by_pk": [ - 2619, + 2919, { "attacked_steam_id": [ 180, @@ -153362,36 +161296,36 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_assists_stream": [ - 2619, + 2919, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2652, + 2952, "[player_assists_stream_cursor_input]!" ], "where": [ - 2630 + 2930 ] } ], "player_career_stats_v": [ - 2664, + 2964, { "distinct_on": [ - 2672, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -153401,19 +161335,19 @@ export default { 38 ], "order_by": [ - 2671, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2968 ] } ], "player_career_stats_v_aggregate": [ - 2665, + 2965, { "distinct_on": [ - 2672, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -153423,35 +161357,35 @@ export default { 38 ], "order_by": [ - 2671, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2968 ] } ], "player_career_stats_v_stream": [ - 2664, + 2964, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2676, + 2976, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2668 + 2968 ] } ], "player_damages": [ - 2682, + 2982, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -153461,19 +161395,19 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_damages_aggregate": [ - 2683, + 2983, { "distinct_on": [ - 2703, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -153483,52 +161417,52 @@ export default { 38 ], "order_by": [ - 2701, + 3001, "[player_damages_order_by!]" ], "where": [ - 2691 + 2991 ] } ], "player_damages_by_pk": [ - 2682, + 2982, { "id": [ - 4462, + 4762, "uuid!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_damages_stream": [ - 2682, + 2982, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2711, + 3011, "[player_damages_stream_cursor_input]!" ], "where": [ - 2691 + 2991 ] } ], "player_elo": [ - 2723, + 3023, { "distinct_on": [ - 2737, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -153538,19 +161472,19 @@ export default { 38 ], "order_by": [ - 2735, + 3035, "[player_elo_order_by!]" ], "where": [ - 2727 + 3027 ] } ], "player_elo_aggregate": [ - 2724, + 3024, { "distinct_on": [ - 2737, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -153560,19 +161494,19 @@ export default { 38 ], "order_by": [ - 2735, + 3035, "[player_elo_order_by!]" ], "where": [ - 2727 + 3027 ] } ], "player_elo_by_pk": [ - 2723, + 3023, { "match_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -153580,32 +161514,32 @@ export default { "bigint!" ], "type": [ - 820, + 860, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 2723, + 3023, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2742, + 3042, "[player_elo_stream_cursor_input]!" ], "where": [ - 2727 + 3027 ] } ], "player_faceit_rank_history": [ - 2750, + 3050, { "distinct_on": [ - 2771, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153615,19 +161549,19 @@ export default { 38 ], "order_by": [ - 2769, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 3059 ] } ], "player_faceit_rank_history_aggregate": [ - 2751, + 3051, { "distinct_on": [ - 2771, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153637,44 +161571,44 @@ export default { 38 ], "order_by": [ - 2769, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 3059 ] } ], "player_faceit_rank_history_by_pk": [ - 2750, + 3050, { "id": [ - 4462, + 4762, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2750, + 3050, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2779, + 3079, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2759 + 3059 ] } ], "player_flashes": [ - 2791, + 3091, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -153684,19 +161618,19 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "player_flashes_aggregate": [ - 2792, + 3092, { "distinct_on": [ - 2814, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -153706,16 +161640,16 @@ export default { 38 ], "order_by": [ - 2812, + 3112, "[player_flashes_order_by!]" ], "where": [ - 2802 + 3102 ] } ], "player_flashes_by_pk": [ - 2791, + 3091, { "attacked_steam_id": [ 180, @@ -153726,36 +161660,36 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_flashes_stream": [ - 2791, + 3091, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2824, + 3124, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2802 + 3102 ] } ], "player_kills": [ - 2836, + 3136, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -153765,19 +161699,19 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_kills_aggregate": [ - 2837, + 3137, { "distinct_on": [ - 2900, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -153787,16 +161721,16 @@ export default { 38 ], "order_by": [ - 2898, + 3198, "[player_kills_order_by!]" ], "where": [ - 2847 + 3147 ] } ], "player_kills_by_pk": [ - 2836, + 3136, { "attacked_steam_id": [ 180, @@ -153807,20 +161741,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2848, + 3148, { "distinct_on": [ - 2869, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153830,19 +161764,19 @@ export default { 38 ], "order_by": [ - 2867, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3157 ] } ], "player_kills_by_weapon_aggregate": [ - 2849, + 3149, { "distinct_on": [ - 2869, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153852,16 +161786,16 @@ export default { 38 ], "order_by": [ - 2867, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3157 ] } ], "player_kills_by_weapon_by_pk": [ - 2848, + 3148, { "player_steam_id": [ 180, @@ -153874,42 +161808,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 2848, + 3148, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2877, + 3177, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2857 + 3157 ] } ], "player_kills_stream": [ - 2836, + 3136, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2910, + 3210, "[player_kills_stream_cursor_input]!" ], "where": [ - 2847 + 3147 ] } ], "player_leaderboard_rank": [ - 2922, + 3222, { "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153919,19 +161853,19 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "player_leaderboard_rank_aggregate": [ - 2923, + 3223, { "distinct_on": [ - 2933, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153941,35 +161875,35 @@ export default { 38 ], "order_by": [ - 2932, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3226 ] } ], "player_leaderboard_rank_stream": [ - 2922, + 3222, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2938, + 3238, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2926 + 3226 ] } ], "player_match_map_stats": [ - 2945, + 3245, { "distinct_on": [ - 2966, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -153979,19 +161913,19 @@ export default { 38 ], "order_by": [ - 2964, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3254 ] } ], "player_match_map_stats_aggregate": [ - 2946, + 3246, { "distinct_on": [ - 2966, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -154001,19 +161935,19 @@ export default { 38 ], "order_by": [ - 2964, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3254 ] } ], "player_match_map_stats_by_pk": [ - 2945, + 3245, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "steam_id": [ @@ -154023,26 +161957,26 @@ export default { } ], "player_match_map_stats_stream": [ - 2945, + 3245, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2974, + 3274, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2954 + 3254 ] } ], "player_match_performance_v": [ - 2986, + 3286, { "distinct_on": [ - 2994, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -154052,19 +161986,19 @@ export default { 38 ], "order_by": [ - 2993, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3290 ] } ], "player_match_performance_v_aggregate": [ - 2987, + 3287, { "distinct_on": [ - 2994, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -154074,35 +162008,35 @@ export default { 38 ], "order_by": [ - 2993, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3290 ] } ], "player_match_performance_v_stream": [ - 2986, + 3286, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2998, + 3298, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2990 + 3290 ] } ], "player_match_stats_v": [ - 3004, + 3304, { "distinct_on": [ - 3020, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -154112,19 +162046,19 @@ export default { 38 ], "order_by": [ - 3019, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3313 ] } ], "player_match_stats_v_aggregate": [ - 3005, + 3305, { "distinct_on": [ - 3020, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -154134,35 +162068,35 @@ export default { 38 ], "order_by": [ - 3019, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3313 ] } ], "player_match_stats_v_stream": [ - 3004, + 3304, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3027, + 3327, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3013 + 3313 ] } ], "player_objectives": [ - 3037, + 3337, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -154172,19 +162106,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "player_objectives_aggregate": [ - 3038, + 3338, { "distinct_on": [ - 3058, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -154194,19 +162128,19 @@ export default { 38 ], "order_by": [ - 3056, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3346 ] } ], "player_objectives_by_pk": [ - 3037, + 3337, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -154214,32 +162148,32 @@ export default { "bigint!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_objectives_stream": [ - 3037, + 3337, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3066, + 3366, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3046 + 3346 ] } ], "player_performance_v": [ - 3078, + 3378, { "distinct_on": [ - 3086, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -154249,19 +162183,19 @@ export default { 38 ], "order_by": [ - 3085, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3382 ] } ], "player_performance_v_aggregate": [ - 3079, + 3379, { "distinct_on": [ - 3086, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -154271,35 +162205,35 @@ export default { 38 ], "order_by": [ - 3085, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3382 ] } ], "player_performance_v_stream": [ - 3078, + 3378, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3090, + 3390, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3082 + 3382 ] } ], "player_premier_rank_history": [ - 3096, + 3396, { "distinct_on": [ - 3117, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -154309,19 +162243,19 @@ export default { 38 ], "order_by": [ - 3115, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3405 ] } ], "player_premier_rank_history_aggregate": [ - 3097, + 3397, { "distinct_on": [ - 3117, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -154331,44 +162265,44 @@ export default { 38 ], "order_by": [ - 3115, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3405 ] } ], "player_premier_rank_history_by_pk": [ - 3096, + 3396, { "id": [ - 4462, + 4762, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3096, + 3396, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3125, + 3425, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3105 + 3405 ] } ], "player_sanctions": [ - 3137, + 3437, { "distinct_on": [ - 3158, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -154378,19 +162312,19 @@ export default { 38 ], "order_by": [ - 3156, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3446 ] } ], "player_sanctions_aggregate": [ - 3138, + 3438, { "distinct_on": [ - 3158, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -154400,48 +162334,48 @@ export default { 38 ], "order_by": [ - 3156, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3446 ] } ], "player_sanctions_by_pk": [ - 3137, + 3437, { "created_at": [ - 4024, + 4324, "timestamptz!" ], "id": [ - 4462, + 4762, "uuid!" ] } ], "player_sanctions_stream": [ - 3137, + 3437, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3166, + 3466, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3146 + 3446 ] } ], "player_season_stats": [ - 3178, + 3478, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -154451,19 +162385,19 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], "player_season_stats_aggregate": [ - 3179, + 3479, { "distinct_on": [ - 3209, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -154473,48 +162407,48 @@ export default { 38 ], "order_by": [ - 3207, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3497 ] } ], "player_season_stats_by_pk": [ - 3178, + 3478, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4762, "uuid!" ] } ], "player_season_stats_stream": [ - 3178, + 3478, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3225, + 3525, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3197 + 3497 ] } ], "player_stats": [ - 3237, + 3537, { "distinct_on": [ - 3252, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -154524,19 +162458,19 @@ export default { 38 ], "order_by": [ - 3250, + 3550, "[player_stats_order_by!]" ], "where": [ - 3241 + 3541 ] } ], "player_stats_aggregate": [ - 3238, + 3538, { "distinct_on": [ - 3252, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -154546,16 +162480,16 @@ export default { 38 ], "order_by": [ - 3250, + 3550, "[player_stats_order_by!]" ], "where": [ - 3241 + 3541 ] } ], "player_stats_by_pk": [ - 3237, + 3537, { "player_steam_id": [ 180, @@ -154564,26 +162498,26 @@ export default { } ], "player_stats_stream": [ - 3237, + 3537, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3257, + 3557, "[player_stats_stream_cursor_input]!" ], "where": [ - 3241 + 3541 ] } ], "player_steam_bot_friend": [ - 3265, + 3565, { "distinct_on": [ - 3284, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154593,19 +162527,19 @@ export default { 38 ], "order_by": [ - 3281, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3570 ] } ], "player_steam_bot_friend_aggregate": [ - 3266, + 3566, { "distinct_on": [ - 3284, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154615,16 +162549,16 @@ export default { 38 ], "order_by": [ - 3281, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3570 ] } ], "player_steam_bot_friend_by_pk": [ - 3265, + 3565, { "steam_id": [ 180, @@ -154633,26 +162567,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3265, + 3565, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3289, + 3589, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3270 + 3570 ] } ], "player_steam_match_auth": [ - 3297, + 3597, { "distinct_on": [ - 3311, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154662,19 +162596,19 @@ export default { 38 ], "order_by": [ - 3309, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3601 ] } ], "player_steam_match_auth_aggregate": [ - 3298, + 3598, { "distinct_on": [ - 3311, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154684,16 +162618,16 @@ export default { 38 ], "order_by": [ - 3309, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3601 ] } ], "player_steam_match_auth_by_pk": [ - 3297, + 3597, { "steam_id": [ 180, @@ -154702,26 +162636,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3297, + 3597, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3316, + 3616, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3301 + 3601 ] } ], "player_unused_utility": [ - 3324, + 3624, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154731,19 +162665,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_unused_utility_aggregate": [ - 3325, + 3625, { "distinct_on": [ - 3345, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154753,19 +162687,19 @@ export default { 38 ], "order_by": [ - 3343, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3633 ] } ], "player_unused_utility_by_pk": [ - 3324, + 3624, { "match_map_id": [ - 4462, + 4762, "uuid!" ], "player_steam_id": [ @@ -154775,26 +162709,26 @@ export default { } ], "player_unused_utility_stream": [ - 3324, + 3624, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3353, + 3653, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3333 + 3633 ] } ], "player_utility": [ - 3365, + 3665, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -154804,19 +162738,19 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "player_utility_aggregate": [ - 3366, + 3666, { "distinct_on": [ - 3386, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -154826,52 +162760,52 @@ export default { 38 ], "order_by": [ - 3384, + 3684, "[player_utility_order_by!]" ], "where": [ - 3374 + 3674 ] } ], "player_utility_by_pk": [ - 3365, + 3665, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4762, "uuid!" ], "time": [ - 4024, + 4324, "timestamptz!" ] } ], "player_utility_stream": [ - 3365, + 3665, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3394, + 3694, "[player_utility_stream_cursor_input]!" ], "where": [ - 3374 + 3674 ] } ], "player_weapon_stats_v": [ - 3406, + 3706, { "distinct_on": [ - 3422, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154881,19 +162815,19 @@ export default { 38 ], "order_by": [ - 3421, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3715 ] } ], "player_weapon_stats_v_aggregate": [ - 3407, + 3707, { "distinct_on": [ - 3422, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154903,35 +162837,35 @@ export default { 38 ], "order_by": [ - 3421, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3715 ] } ], "player_weapon_stats_v_stream": [ - 3406, + 3706, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3429, + 3729, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3415 + 3715 ] } ], "players": [ - 3439, + 3739, { "distinct_on": [ - 3454, + 3754, "[players_select_column!]" ], "limit": [ @@ -154941,19 +162875,19 @@ export default { 38 ], "order_by": [ - 3452, + 3752, "[players_order_by!]" ], "where": [ - 3443 + 3743 ] } ], "players_aggregate": [ - 3440, + 3740, { "distinct_on": [ - 3454, + 3754, "[players_select_column!]" ], "limit": [ @@ -154963,16 +162897,16 @@ export default { 38 ], "order_by": [ - 3452, + 3752, "[players_order_by!]" ], "where": [ - 3443 + 3743 ] } ], "players_by_pk": [ - 3439, + 3739, { "steam_id": [ 180, @@ -154981,26 +162915,26 @@ export default { } ], "players_stream": [ - 3439, + 3739, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3459, + 3759, "[players_stream_cursor_input]!" ], "where": [ - 3443 + 3743 ] } ], "plugin_versions": [ - 3467, + 3767, { "distinct_on": [ - 3481, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -155010,19 +162944,19 @@ export default { 38 ], "order_by": [ - 3479, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3771 ] } ], "plugin_versions_aggregate": [ - 3468, + 3768, { "distinct_on": [ - 3481, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -155032,19 +162966,19 @@ export default { 38 ], "order_by": [ - 3479, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3771 ] } ], "plugin_versions_by_pk": [ - 3467, + 3767, { "runtime": [ - 901, + 941, "e_plugin_runtimes_enum!" ], "version": [ @@ -155054,26 +162988,26 @@ export default { } ], "plugin_versions_stream": [ - 3467, + 3767, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3486, + 3786, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3471 + 3771 ] } ], "seasons": [ - 3498, + 3798, { "distinct_on": [ - 3513, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -155083,19 +163017,19 @@ export default { 38 ], "order_by": [ - 3511, + 3811, "[seasons_order_by!]" ], "where": [ - 3502 + 3802 ] } ], "seasons_aggregate": [ - 3499, + 3799, { "distinct_on": [ - 3513, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -155105,44 +163039,44 @@ export default { 38 ], "order_by": [ - 3511, + 3811, "[seasons_order_by!]" ], "where": [ - 3502 + 3802 ] } ], "seasons_by_pk": [ - 3498, + 3798, { "id": [ - 4462, + 4762, "uuid!" ] } ], "seasons_stream": [ - 3498, + 3798, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3518, + 3818, "[seasons_stream_cursor_input]!" ], "where": [ - 3502 + 3802 ] } ], "server_regions": [ - 3526, + 3826, { "distinct_on": [ - 3540, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -155152,19 +163086,19 @@ export default { 38 ], "order_by": [ - 3538, + 3838, "[server_regions_order_by!]" ], "where": [ - 3530 + 3830 ] } ], "server_regions_aggregate": [ - 3527, + 3827, { "distinct_on": [ - 3540, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -155174,16 +163108,16 @@ export default { 38 ], "order_by": [ - 3538, + 3838, "[server_regions_order_by!]" ], "where": [ - 3530 + 3830 ] } ], "server_regions_by_pk": [ - 3526, + 3826, { "value": [ 78, @@ -155192,26 +163126,26 @@ export default { } ], "server_regions_stream": [ - 3526, + 3826, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3545, + 3845, "[server_regions_stream_cursor_input]!" ], "where": [ - 3530 + 3830 ] } ], "servers": [ - 3553, + 3853, { "distinct_on": [ - 3577, + 3877, "[servers_select_column!]" ], "limit": [ @@ -155221,19 +163155,19 @@ export default { 38 ], "order_by": [ - 3575, + 3875, "[servers_order_by!]" ], "where": [ - 3564 + 3864 ] } ], "servers_aggregate": [ - 3554, + 3854, { "distinct_on": [ - 3577, + 3877, "[servers_select_column!]" ], "limit": [ @@ -155243,44 +163177,44 @@ export default { 38 ], "order_by": [ - 3575, + 3875, "[servers_order_by!]" ], "where": [ - 3564 + 3864 ] } ], "servers_by_pk": [ - 3553, + 3853, { "id": [ - 4462, + 4762, "uuid!" ] } ], "servers_stream": [ - 3553, + 3853, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3587, + 3887, "[servers_stream_cursor_input]!" ], "where": [ - 3564 + 3864 ] } ], "settings": [ - 3599, + 3899, { "distinct_on": [ - 3611, + 3911, "[settings_select_column!]" ], "limit": [ @@ -155290,19 +163224,19 @@ export default { 38 ], "order_by": [ - 3609, + 3909, "[settings_order_by!]" ], "where": [ - 3602 + 3902 ] } ], "settings_aggregate": [ - 3600, + 3900, { "distinct_on": [ - 3611, + 3911, "[settings_select_column!]" ], "limit": [ @@ -155312,16 +163246,16 @@ export default { 38 ], "order_by": [ - 3609, + 3909, "[settings_order_by!]" ], "where": [ - 3602 + 3902 ] } ], "settings_by_pk": [ - 3599, + 3899, { "name": [ 78, @@ -155330,26 +163264,26 @@ export default { } ], "settings_stream": [ - 3599, + 3899, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3613, + 3913, "[settings_stream_cursor_input]!" ], "where": [ - 3602 + 3902 ] } ], "steam_account_claims": [ - 3619, + 3919, { "distinct_on": [ - 3637, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -155359,19 +163293,19 @@ export default { 38 ], "order_by": [ - 3635, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3926 ] } ], "steam_account_claims_aggregate": [ - 3620, + 3920, { "distinct_on": [ - 3637, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -155381,44 +163315,44 @@ export default { 38 ], "order_by": [ - 3635, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3926 ] } ], "steam_account_claims_by_pk": [ - 3619, + 3919, { "id": [ - 4462, + 4762, "uuid!" ] } ], "steam_account_claims_stream": [ - 3619, + 3919, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3639, + 3939, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3626 + 3926 ] } ], "steam_accounts": [ - 3643, + 3943, { "distinct_on": [ - 3658, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -155428,19 +163362,19 @@ export default { 38 ], "order_by": [ - 3656, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3947 ] } ], "steam_accounts_aggregate": [ - 3644, + 3944, { "distinct_on": [ - 3658, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -155450,44 +163384,44 @@ export default { 38 ], "order_by": [ - 3656, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3947 ] } ], "steam_accounts_by_pk": [ - 3643, + 3943, { "id": [ - 4462, + 4762, "uuid!" ] } ], "steam_accounts_stream": [ - 3643, + 3943, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3663, + 3963, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3647 + 3947 ] } ], "system_alerts": [ - 3671, + 3971, { "distinct_on": [ - 3685, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -155497,19 +163431,19 @@ export default { 38 ], "order_by": [ - 3683, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3975 ] } ], "system_alerts_aggregate": [ - 3672, + 3972, { "distinct_on": [ - 3685, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -155519,44 +163453,44 @@ export default { 38 ], "order_by": [ - 3683, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3975 ] } ], "system_alerts_by_pk": [ - 3671, + 3971, { "id": [ - 4462, + 4762, "uuid!" ] } ], "system_alerts_stream": [ - 3671, + 3971, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3690, + 3990, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3675 + 3975 ] } ], "team_invites": [ - 3698, + 3998, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -155566,19 +163500,19 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "team_invites_aggregate": [ - 3699, + 3999, { "distinct_on": [ - 3719, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -155588,44 +163522,44 @@ export default { 38 ], "order_by": [ - 3717, + 4017, "[team_invites_order_by!]" ], "where": [ - 3707 + 4007 ] } ], "team_invites_by_pk": [ - 3698, + 3998, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_invites_stream": [ - 3698, + 3998, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3727, + 4027, "[team_invites_stream_cursor_input]!" ], "where": [ - 3707 + 4007 ] } ], "team_roster": [ - 3739, + 4039, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -155635,19 +163569,19 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "team_roster_aggregate": [ - 3740, + 4040, { "distinct_on": [ - 3762, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -155657,48 +163591,48 @@ export default { 38 ], "order_by": [ - 3760, + 4060, "[team_roster_order_by!]" ], "where": [ - 3750 + 4050 ] } ], "team_roster_by_pk": [ - 3739, + 4039, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4762, "uuid!" ] } ], "team_roster_stream": [ - 3739, + 4039, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3772, + 4072, "[team_roster_stream_cursor_input]!" ], "where": [ - 3750 + 4050 ] } ], "team_scrim_alerts": [ - 3784, + 4084, { "distinct_on": [ - 3798, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155708,19 +163642,19 @@ export default { 38 ], "order_by": [ - 3796, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 4088 ] } ], "team_scrim_alerts_aggregate": [ - 3785, + 4085, { "distinct_on": [ - 3798, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155730,44 +163664,44 @@ export default { 38 ], "order_by": [ - 3796, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 4088 ] } ], "team_scrim_alerts_by_pk": [ - 3784, + 4084, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3784, + 4084, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3803, + 4103, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3788 + 4088 ] } ], "team_scrim_availability": [ - 3811, + 4111, { "distinct_on": [ - 3831, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155777,19 +163711,19 @@ export default { 38 ], "order_by": [ - 3829, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 4120 ] } ], "team_scrim_availability_aggregate": [ - 3812, + 4112, { "distinct_on": [ - 3831, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155799,44 +163733,44 @@ export default { 38 ], "order_by": [ - 3829, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 4120 ] } ], "team_scrim_availability_by_pk": [ - 3811, + 4111, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3811, + 4111, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3835, + 4135, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3820 + 4120 ] } ], "team_scrim_request_proposals": [ - 3839, + 4139, { "distinct_on": [ - 3860, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155846,19 +163780,19 @@ export default { 38 ], "order_by": [ - 3858, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4148 ] } ], "team_scrim_request_proposals_aggregate": [ - 3840, + 4140, { "distinct_on": [ - 3860, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155868,44 +163802,44 @@ export default { 38 ], "order_by": [ - 3858, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4148 ] } ], "team_scrim_request_proposals_by_pk": [ - 3839, + 4139, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 3839, + 4139, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3868, + 4168, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 3848 + 4148 ] } ], "team_scrim_requests": [ - 3880, + 4180, { "distinct_on": [ - 3904, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155915,19 +163849,19 @@ export default { 38 ], "order_by": [ - 3902, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4191 ] } ], "team_scrim_requests_aggregate": [ - 3881, + 4181, { "distinct_on": [ - 3904, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155937,44 +163871,44 @@ export default { 38 ], "order_by": [ - 3902, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4191 ] } ], "team_scrim_requests_by_pk": [ - 3880, + 4180, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_requests_stream": [ - 3880, + 4180, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3914, + 4214, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 3891 + 4191 ] } ], "team_scrim_settings": [ - 3926, + 4226, { "distinct_on": [ - 3941, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -155984,19 +163918,19 @@ export default { 38 ], "order_by": [ - 3939, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4230 ] } ], "team_scrim_settings_aggregate": [ - 3927, + 4227, { "distinct_on": [ - 3941, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -156006,44 +163940,44 @@ export default { 38 ], "order_by": [ - 3939, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4230 ] } ], "team_scrim_settings_by_pk": [ - 3926, + 4226, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_scrim_settings_stream": [ - 3926, + 4226, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3946, + 4246, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 3930 + 4230 ] } ], "team_suggestions": [ - 3954, + 4254, { "distinct_on": [ - 3968, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -156053,19 +163987,19 @@ export default { 38 ], "order_by": [ - 3966, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4258 ] } ], "team_suggestions_aggregate": [ - 3955, + 4255, { "distinct_on": [ - 3968, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -156075,44 +164009,44 @@ export default { 38 ], "order_by": [ - 3966, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4258 ] } ], "team_suggestions_by_pk": [ - 3954, + 4254, { "id": [ - 4462, + 4762, "uuid!" ] } ], "team_suggestions_stream": [ - 3954, + 4254, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3973, + 4273, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 3958 + 4258 ] } ], "teams": [ - 3981, + 4281, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -156122,19 +164056,19 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], "teams_aggregate": [ - 3982, + 4282, { "distinct_on": [ - 4003, + 4303, "[teams_select_column!]" ], "limit": [ @@ -156144,44 +164078,44 @@ export default { 38 ], "order_by": [ - 4001, + 4301, "[teams_order_by!]" ], "where": [ - 3990 + 4290 ] } ], "teams_by_pk": [ - 3981, + 4281, { "id": [ - 4462, + 4762, "uuid!" ] } ], "teams_stream": [ - 3981, + 4281, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4011, + 4311, "[teams_stream_cursor_input]!" ], "where": [ - 3990 + 4290 ] } ], "tournament_brackets": [ - 4026, + 4326, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -156191,19 +164125,19 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4327, { "distinct_on": [ - 4050, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -156213,44 +164147,44 @@ export default { 38 ], "order_by": [ - 4048, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4337 ] } ], "tournament_brackets_by_pk": [ - 4026, + 4326, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_brackets_stream": [ - 4026, + 4326, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4060, + 4360, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4037 + 4337 ] } ], "tournament_organizers": [ - 4072, + 4372, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -156260,19 +164194,19 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4373, { "distinct_on": [ - 4093, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -156282,48 +164216,48 @@ export default { 38 ], "order_by": [ - 4091, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4381 ] } ], "tournament_organizers_by_pk": [ - 4072, + 4372, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_organizers_stream": [ - 4072, + 4372, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4101, + 4401, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4081 + 4381 ] } ], "tournament_stage_windows": [ - 4113, + 4413, { "distinct_on": [ - 4134, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -156333,19 +164267,19 @@ export default { 38 ], "order_by": [ - 4132, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4422 ] } ], "tournament_stage_windows_aggregate": [ - 4114, + 4414, { "distinct_on": [ - 4134, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -156355,44 +164289,44 @@ export default { 38 ], "order_by": [ - 4132, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4422 ] } ], "tournament_stage_windows_by_pk": [ - 4113, + 4413, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4113, + 4413, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4142, + 4442, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4122 + 4422 ] } ], "tournament_stages": [ - 4154, + 4454, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -156402,19 +164336,19 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], "tournament_stages_aggregate": [ - 4155, + 4455, { "distinct_on": [ - 4183, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -156424,44 +164358,44 @@ export default { 38 ], "order_by": [ - 4180, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4466 ] } ], "tournament_stages_by_pk": [ - 4154, + 4454, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_stages_stream": [ - 4154, + 4454, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4193, + 4493, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4166 + 4466 ] } ], "tournament_team_invites": [ - 4205, + 4505, { "distinct_on": [ - 4226, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -156471,19 +164405,19 @@ export default { 38 ], "order_by": [ - 4224, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4514 ] } ], "tournament_team_invites_aggregate": [ - 4206, + 4506, { "distinct_on": [ - 4226, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -156493,44 +164427,44 @@ export default { 38 ], "order_by": [ - 4224, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4514 ] } ], "tournament_team_invites_by_pk": [ - 4205, + 4505, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4205, + 4505, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4234, + 4534, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4214 + 4514 ] } ], "tournament_team_roster": [ - 4246, + 4546, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156540,19 +164474,19 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "tournament_team_roster_aggregate": [ - 4247, + 4547, { "distinct_on": [ - 4267, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156562,48 +164496,48 @@ export default { 38 ], "order_by": [ - 4265, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4555 ] } ], "tournament_team_roster_by_pk": [ - 4246, + 4546, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4246, + 4546, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4275, + 4575, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4255 + 4555 ] } ], "tournament_teams": [ - 4287, + 4587, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -156613,19 +164547,19 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], "tournament_teams_aggregate": [ - 4288, + 4588, { "distinct_on": [ - 4309, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -156635,44 +164569,44 @@ export default { 38 ], "order_by": [ - 4307, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4596 ] } ], "tournament_teams_by_pk": [ - 4287, + 4587, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_teams_stream": [ - 4287, + 4587, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4317, + 4617, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4296 + 4596 ] } ], "tournament_trophies": [ - 4329, + 4629, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156682,19 +164616,19 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4630, { "distinct_on": [ - 4352, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156704,44 +164638,44 @@ export default { 38 ], "order_by": [ - 4350, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4640 ] } ], "tournament_trophies_by_pk": [ - 4329, + 4629, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_trophies_stream": [ - 4329, + 4629, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4362, + 4662, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4340 + 4640 ] } ], "tournament_trophy_configs": [ - 4374, + 4674, { "distinct_on": [ - 4396, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156751,19 +164685,19 @@ export default { 38 ], "order_by": [ - 4394, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4683 ] } ], "tournament_trophy_configs_aggregate": [ - 4375, + 4675, { "distinct_on": [ - 4396, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156773,44 +164707,44 @@ export default { 38 ], "order_by": [ - 4394, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4683 ] } ], "tournament_trophy_configs_by_pk": [ - 4374, + 4674, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4374, + 4674, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4404, + 4704, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4383 + 4683 ] } ], "tournaments": [ - 4416, + 4716, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -156820,19 +164754,19 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], "tournaments_aggregate": [ - 4417, + 4717, { "distinct_on": [ - 4440, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -156842,44 +164776,104 @@ export default { 38 ], "order_by": [ - 4438, + 4738, "[tournaments_order_by!]" ], "where": [ - 4427 + 4727 ] } ], "tournaments_by_pk": [ - 4416, + 4716, { "id": [ - 4462, + 4762, "uuid!" ] } ], "tournaments_stream": [ - 4416, + 4716, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4450, + 4750, "[tournaments_stream_cursor_input]!" ], "where": [ - 4427 + 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 ] } ], "v_gpu_pool_status": [ - 4465, + 4816, { "distinct_on": [ - 4473, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156889,19 +164883,19 @@ export default { 38 ], "order_by": [ - 4472, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4820 ] } ], "v_gpu_pool_status_aggregate": [ - 4466, + 4817, { "distinct_on": [ - 4473, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156911,35 +164905,35 @@ export default { 38 ], "order_by": [ - 4472, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4820 ] } ], "v_gpu_pool_status_stream": [ - 4465, + 4816, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4477, + 4828, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4469 + 4820 ] } ], "v_league_division_standings": [ - 4483, + 4834, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156949,19 +164943,19 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "v_league_division_standings_aggregate": [ - 4484, + 4835, { "distinct_on": [ - 4499, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156971,35 +164965,35 @@ export default { 38 ], "order_by": [ - 4498, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4843 ] } ], "v_league_division_standings_stream": [ - 4483, + 4834, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4506, + 4857, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4492 + 4843 ] } ], "v_league_season_player_stats": [ - 4516, + 4867, { "distinct_on": [ - 4542, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -157009,19 +165003,19 @@ export default { 38 ], "order_by": [ - 4541, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4886 ] } ], "v_league_season_player_stats_aggregate": [ - 4517, + 4868, { "distinct_on": [ - 4542, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -157031,35 +165025,35 @@ export default { 38 ], "order_by": [ - 4541, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4886 ] } ], "v_league_season_player_stats_stream": [ - 4516, + 4867, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4557, + 4908, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4535 + 4886 ] } ], "v_match_captains": [ - 4567, + 4918, { "distinct_on": [ - 4579, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -157069,19 +165063,19 @@ export default { 38 ], "order_by": [ - 4578, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4922 ] } ], "v_match_captains_aggregate": [ - 4568, + 4919, { "distinct_on": [ - 4579, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -157091,35 +165085,35 @@ export default { 38 ], "order_by": [ - 4578, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4922 ] } ], "v_match_captains_stream": [ - 4567, + 4918, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4584, + 4935, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4571 + 4922 ] } ], "v_match_clutches": [ - 4591, + 4942, { "distinct_on": [ - 4607, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -157129,19 +165123,19 @@ export default { 38 ], "order_by": [ - 4606, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4951 ] } ], "v_match_clutches_aggregate": [ - 4592, + 4943, { "distinct_on": [ - 4607, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -157151,35 +165145,35 @@ export default { 38 ], "order_by": [ - 4606, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4951 ] } ], "v_match_clutches_stream": [ - 4591, + 4942, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4614, + 4965, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4600 + 4951 ] } ], "v_match_kill_pairs": [ - 4624, + 4975, { "distinct_on": [ - 4632, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -157189,19 +165183,19 @@ export default { 38 ], "order_by": [ - 4631, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4979 ] } ], "v_match_kill_pairs_aggregate": [ - 4625, + 4976, { "distinct_on": [ - 4632, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -157211,35 +165205,35 @@ export default { 38 ], "order_by": [ - 4631, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4979 ] } ], "v_match_kill_pairs_stream": [ - 4624, + 4975, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4636, + 4987, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4628 + 4979 ] } ], "v_match_lineup_buy_types": [ - 4642, + 4993, { "distinct_on": [ - 4650, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -157249,19 +165243,19 @@ export default { 38 ], "order_by": [ - 4649, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4997 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4643, + 4994, { "distinct_on": [ - 4650, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -157271,35 +165265,35 @@ export default { 38 ], "order_by": [ - 4649, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4997 ] } ], "v_match_lineup_buy_types_stream": [ - 4642, + 4993, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4654, + 5005, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4646 + 4997 ] } ], "v_match_lineup_map_stats": [ - 4660, + 5011, { "distinct_on": [ - 4668, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -157309,19 +165303,19 @@ export default { 38 ], "order_by": [ - 4667, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 5015 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4661, + 5012, { "distinct_on": [ - 4668, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -157331,35 +165325,35 @@ export default { 38 ], "order_by": [ - 4667, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 5015 ] } ], "v_match_lineup_map_stats_stream": [ - 4660, + 5011, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4672, + 5023, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 4664 + 5015 ] } ], "v_match_map_backup_rounds": [ - 4678, + 5029, { "distinct_on": [ - 4689, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -157369,19 +165363,19 @@ export default { 38 ], "order_by": [ - 4688, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 5033 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4679, + 5030, { "distinct_on": [ - 4689, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -157391,35 +165385,35 @@ export default { 38 ], "order_by": [ - 4688, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 5033 ] } ], "v_match_map_backup_rounds_stream": [ - 4678, + 5029, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4694, + 5045, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 4682 + 5033 ] } ], "v_match_player_buy_types": [ - 4701, + 5052, { "distinct_on": [ - 4709, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -157429,19 +165423,19 @@ export default { 38 ], "order_by": [ - 4708, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 5056 ] } ], "v_match_player_buy_types_aggregate": [ - 4702, + 5053, { "distinct_on": [ - 4709, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -157451,35 +165445,35 @@ export default { 38 ], "order_by": [ - 4708, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 5056 ] } ], "v_match_player_buy_types_stream": [ - 4701, + 5052, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4713, + 5064, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 4705 + 5056 ] } ], "v_match_player_opening_duels": [ - 4719, + 5070, { "distinct_on": [ - 4735, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157489,19 +165483,19 @@ export default { 38 ], "order_by": [ - 4734, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 5079 ] } ], "v_match_player_opening_duels_aggregate": [ - 4720, + 5071, { "distinct_on": [ - 4735, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157511,35 +165505,35 @@ export default { 38 ], "order_by": [ - 4734, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 5079 ] } ], "v_match_player_opening_duels_stream": [ - 4719, + 5070, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4742, + 5093, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4728 + 5079 ] } ], "v_player_arch_nemesis": [ - 4752, + 5103, { "distinct_on": [ - 4760, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157549,19 +165543,19 @@ export default { 38 ], "order_by": [ - 4759, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 5107 ] } ], "v_player_arch_nemesis_aggregate": [ - 4753, + 5104, { "distinct_on": [ - 4760, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157571,35 +165565,35 @@ export default { 38 ], "order_by": [ - 4759, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 5107 ] } ], "v_player_arch_nemesis_stream": [ - 4752, + 5103, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4764, + 5115, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4756 + 5107 ] } ], "v_player_damage": [ - 4770, + 5121, { "distinct_on": [ - 4778, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -157609,19 +165603,19 @@ export default { 38 ], "order_by": [ - 4777, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5125 ] } ], "v_player_damage_aggregate": [ - 4771, + 5122, { "distinct_on": [ - 4778, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -157631,35 +165625,35 @@ export default { 38 ], "order_by": [ - 4777, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5125 ] } ], "v_player_damage_stream": [ - 4770, + 5121, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4782, + 5133, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 4774 + 5125 ] } ], "v_player_elo": [ - 4788, + 5139, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -157669,19 +165663,19 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], "v_player_elo_aggregate": [ - 4789, + 5140, { "distinct_on": [ - 4814, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -157691,35 +165685,35 @@ export default { 38 ], "order_by": [ - 4813, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5158 ] } ], "v_player_elo_stream": [ - 4788, + 5139, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4829, + 5180, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 4807 + 5158 ] } ], "v_player_map_losses": [ - 4839, + 5190, { "distinct_on": [ - 4847, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157729,19 +165723,19 @@ export default { 38 ], "order_by": [ - 4846, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5194 ] } ], "v_player_map_losses_aggregate": [ - 4840, + 5191, { "distinct_on": [ - 4847, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157751,35 +165745,35 @@ export default { 38 ], "order_by": [ - 4846, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5194 ] } ], "v_player_map_losses_stream": [ - 4839, + 5190, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4851, + 5202, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 4843 + 5194 ] } ], "v_player_map_wins": [ - 4857, + 5208, { "distinct_on": [ - 4865, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157789,19 +165783,19 @@ export default { 38 ], "order_by": [ - 4864, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5212 ] } ], "v_player_map_wins_aggregate": [ - 4858, + 5209, { "distinct_on": [ - 4865, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157811,35 +165805,35 @@ export default { 38 ], "order_by": [ - 4864, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5212 ] } ], "v_player_map_wins_stream": [ - 4857, + 5208, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4869, + 5220, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 4861 + 5212 ] } ], "v_player_match_head_to_head": [ - 4875, + 5226, { "distinct_on": [ - 4883, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157849,19 +165843,19 @@ export default { 38 ], "order_by": [ - 4882, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5230 ] } ], "v_player_match_head_to_head_aggregate": [ - 4876, + 5227, { "distinct_on": [ - 4883, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157871,35 +165865,35 @@ export default { 38 ], "order_by": [ - 4882, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5230 ] } ], "v_player_match_head_to_head_stream": [ - 4875, + 5226, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4887, + 5238, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 4879 + 5230 ] } ], "v_player_match_map_hltv": [ - 4893, + 5244, { "distinct_on": [ - 4911, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157909,19 +165903,19 @@ export default { 38 ], "order_by": [ - 4910, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5253 ] } ], "v_player_match_map_hltv_aggregate": [ - 4894, + 5245, { "distinct_on": [ - 4911, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157931,35 +165925,35 @@ export default { 38 ], "order_by": [ - 4910, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5253 ] } ], "v_player_match_map_hltv_stream": [ - 4893, + 5244, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4919, + 5270, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 4902 + 5253 ] } ], "v_player_match_map_roles": [ - 4930, + 5281, { "distinct_on": [ - 4938, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157969,19 +165963,19 @@ export default { 38 ], "order_by": [ - 4937, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5285 ] } ], "v_player_match_map_roles_aggregate": [ - 4931, + 5282, { "distinct_on": [ - 4938, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157991,35 +165985,35 @@ export default { 38 ], "order_by": [ - 4937, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5285 ] } ], "v_player_match_map_roles_stream": [ - 4930, + 5281, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4942, + 5293, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 4934 + 5285 ] } ], "v_player_match_performance": [ - 4948, + 5299, { "distinct_on": [ - 4956, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -158029,19 +166023,19 @@ export default { 38 ], "order_by": [ - 4955, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5303 ] } ], "v_player_match_performance_aggregate": [ - 4949, + 5300, { "distinct_on": [ - 4956, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -158051,35 +166045,35 @@ export default { 38 ], "order_by": [ - 4955, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5303 ] } ], "v_player_match_performance_stream": [ - 4948, + 5299, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4960, + 5311, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 4952 + 5303 ] } ], "v_player_match_rating": [ - 4966, + 5317, { "distinct_on": [ - 4974, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -158089,19 +166083,19 @@ export default { 38 ], "order_by": [ - 4973, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5321 ] } ], "v_player_match_rating_aggregate": [ - 4967, + 5318, { "distinct_on": [ - 4974, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -158111,35 +166105,35 @@ export default { 38 ], "order_by": [ - 4973, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5321 ] } ], "v_player_match_rating_stream": [ - 4966, + 5317, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4978, + 5329, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 4970 + 5321 ] } ], "v_player_multi_kills": [ - 4984, + 5335, { "distinct_on": [ - 5000, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -158149,19 +166143,19 @@ export default { 38 ], "order_by": [ - 4999, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5344 ] } ], "v_player_multi_kills_aggregate": [ - 4985, + 5336, { "distinct_on": [ - 5000, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -158171,35 +166165,35 @@ export default { 38 ], "order_by": [ - 4999, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5344 ] } ], "v_player_multi_kills_stream": [ - 4984, + 5335, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5007, + 5358, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 4993 + 5344 ] } ], "v_player_weapon_damage": [ - 5017, + 5368, { "distinct_on": [ - 5025, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -158209,19 +166203,19 @@ export default { 38 ], "order_by": [ - 5024, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5372 ] } ], "v_player_weapon_damage_aggregate": [ - 5018, + 5369, { "distinct_on": [ - 5025, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -158231,35 +166225,35 @@ export default { 38 ], "order_by": [ - 5024, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5372 ] } ], "v_player_weapon_damage_stream": [ - 5017, + 5368, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5029, + 5380, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5021 + 5372 ] } ], "v_player_weapon_kills": [ - 5035, + 5386, { "distinct_on": [ - 5043, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -158269,19 +166263,19 @@ export default { 38 ], "order_by": [ - 5042, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5390 ] } ], "v_player_weapon_kills_aggregate": [ - 5036, + 5387, { "distinct_on": [ - 5043, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -158291,35 +166285,35 @@ export default { 38 ], "order_by": [ - 5042, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5390 ] } ], "v_player_weapon_kills_stream": [ - 5035, + 5386, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5047, + 5398, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5039 + 5390 ] } ], "v_pool_maps": [ - 5053, + 5404, { "distinct_on": [ - 5070, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -158329,19 +166323,19 @@ export default { 38 ], "order_by": [ - 5069, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5413 ] } ], "v_pool_maps_aggregate": [ - 5054, + 5405, { "distinct_on": [ - 5070, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -158351,35 +166345,35 @@ export default { 38 ], "order_by": [ - 5069, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5413 ] } ], "v_pool_maps_stream": [ - 5053, + 5404, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5074, + 5425, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5062 + 5413 ] } ], "v_steam_account_pool_status": [ - 5077, + 5428, { "distinct_on": [ - 5085, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -158389,19 +166383,19 @@ export default { 38 ], "order_by": [ - 5084, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5432 ] } ], "v_steam_account_pool_status_aggregate": [ - 5078, + 5429, { "distinct_on": [ - 5085, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -158411,35 +166405,35 @@ export default { 38 ], "order_by": [ - 5084, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5432 ] } ], "v_steam_account_pool_status_stream": [ - 5077, + 5428, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5089, + 5440, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5081 + 5432 ] } ], "v_team_ranks": [ - 5095, + 5446, { "distinct_on": [ - 5105, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -158449,19 +166443,19 @@ export default { 38 ], "order_by": [ - 5104, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5450 ] } ], "v_team_ranks_aggregate": [ - 5096, + 5447, { "distinct_on": [ - 5105, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -158471,35 +166465,35 @@ export default { 38 ], "order_by": [ - 5104, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5450 ] } ], "v_team_ranks_stream": [ - 5095, + 5446, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5109, + 5460, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5099 + 5450 ] } ], "v_team_reputation": [ - 5115, + 5466, { "distinct_on": [ - 5125, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158509,19 +166503,19 @@ export default { 38 ], "order_by": [ - 5124, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5470 ] } ], "v_team_reputation_aggregate": [ - 5116, + 5467, { "distinct_on": [ - 5125, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158531,35 +166525,35 @@ export default { 38 ], "order_by": [ - 5124, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5470 ] } ], "v_team_reputation_stream": [ - 5115, + 5466, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5129, + 5480, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5119 + 5470 ] } ], "v_team_stage_results": [ - 5135, + 5486, { "distinct_on": [ - 5167, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158569,19 +166563,19 @@ export default { 38 ], "order_by": [ - 5165, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5505 ] } ], "v_team_stage_results_aggregate": [ - 5136, + 5487, { "distinct_on": [ - 5167, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158591,48 +166585,48 @@ export default { 38 ], "order_by": [ - 5165, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5505 ] } ], "v_team_stage_results_by_pk": [ - 5135, + 5486, { "tournament_stage_id": [ - 4462, + 4762, "uuid!" ], "tournament_team_id": [ - 4462, + 4762, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5135, + 5486, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5183, + 5534, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5154 + 5505 ] } ], "v_team_tournament_results": [ - 5195, + 5546, { "distinct_on": [ - 5221, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158642,19 +166636,19 @@ export default { 38 ], "order_by": [ - 5220, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5565 ] } ], "v_team_tournament_results_aggregate": [ - 5196, + 5547, { "distinct_on": [ - 5221, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158664,35 +166658,35 @@ export default { 38 ], "order_by": [ - 5220, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5565 ] } ], "v_team_tournament_results_stream": [ - 5195, + 5546, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5236, + 5587, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5214 + 5565 ] } ], "v_tournament_player_stats": [ - 5246, + 5597, { "distinct_on": [ - 5272, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158702,19 +166696,19 @@ export default { 38 ], "order_by": [ - 5271, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5616 ] } ], "v_tournament_player_stats_aggregate": [ - 5247, + 5598, { "distinct_on": [ - 5272, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158724,27 +166718,27 @@ export default { 38 ], "order_by": [ - 5271, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5616 ] } ], "v_tournament_player_stats_stream": [ - 5246, + 5597, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5287, + 5638, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5265 + 5616 ] } ], diff --git a/hasura/functions/events/event_access.sql b/hasura/functions/events/event_access.sql new file mode 100644 index 000000000..214350fc3 --- /dev/null +++ b/hasura/functions/events/event_access.sql @@ -0,0 +1,122 @@ +-- Visibility/upload access primitives for events. Single file so +-- is_event_member exists before its callers within one boot apply. + +-- LANGUAGE sql is safe here: every referenced relation is created in the +-- migrations boot phase, which runs before hasura/functions. +CREATE OR REPLACE FUNCTION public.is_event_member( + event public.events, + _steam_id bigint +) RETURNS boolean +LANGUAGE sql +STABLE +AS $$ + SELECT _steam_id IS NOT NULL AND ( + event.organizer_steam_id = _steam_id + OR EXISTS ( + SELECT 1 FROM public.event_organizers eo + WHERE eo.event_id = event.id AND eo.steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 FROM public.event_players ep + WHERE ep.event_id = event.id AND ep.steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_teams et + JOIN public.team_roster tr ON tr.team_id = et.team_id + WHERE et.event_id = event.id AND tr.player_steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_tournaments evt + JOIN public.tournament_team_roster ttr + ON ttr.tournament_id = evt.tournament_id + WHERE evt.event_id = event.id AND ttr.player_steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_tournaments evt + JOIN public.tournament_organizers torg + ON torg.tournament_id = evt.tournament_id + WHERE evt.event_id = event.id AND torg.steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_tournaments evt + JOIN public.tournament_teams tt + ON tt.tournament_id = evt.tournament_id + WHERE evt.event_id = event.id AND tt.owner_steam_id = _steam_id + ) + ); +$$; + +-- LANGUAGE plpgsql: bodies are not parsed for object references at CREATE +-- time, so ordering against sibling function files never matters on a +-- fresh install (see get_event_leaderboard.sql for the same rationale). +CREATE OR REPLACE FUNCTION public.can_view_event( + event public.events, + hasura_session json +) RETURNS boolean +LANGUAGE plpgsql +STABLE +AS $$ +DECLARE + _steam_id bigint := nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint; +BEGIN + IF hasura_session ->> 'x-hasura-role' + IN ('admin', 'administrator', 'tournament_organizer') THEN + RETURN true; + END IF; + + IF event.visibility = 'Public' THEN + RETURN true; + END IF; + + IF _steam_id IS NULL THEN + RETURN false; + END IF; + + IF public.is_event_member(event, _steam_id) THEN + RETURN true; + END IF; + + IF event.visibility = 'Friends' THEN + -- friends holds one row per friendship regardless of direction, so + -- match the viewer against both columns (see v_my_friends.sql). + RETURN EXISTS ( + SELECT 1 + FROM public.friends f + WHERE f.status = 'Accepted' + AND (f.player_steam_id = _steam_id + OR f.other_player_steam_id = _steam_id) + AND public.is_event_member( + event, + CASE WHEN f.player_steam_id = _steam_id + THEN f.other_player_steam_id + ELSE f.player_steam_id END + ) + ); + END IF; + + RETURN false; +END; +$$; + +CREATE OR REPLACE FUNCTION public.can_upload_event_media( + event public.events, + hasura_session json +) RETURNS boolean +LANGUAGE plpgsql +STABLE +AS $$ +BEGIN + RETURN public.is_event_organizer(event, hasura_session) + OR ( + event.media_access = 'Involved' + AND public.is_event_member( + event, + nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint + ) + ); +END; +$$; diff --git a/hasura/functions/events/get_event_leaderboard.sql b/hasura/functions/events/get_event_leaderboard.sql new file mode 100644 index 000000000..64f64b526 --- /dev/null +++ b/hasura/functions/events/get_event_leaderboard.sql @@ -0,0 +1,124 @@ +-- Event-scoped leaderboard over the event's derived match set. +-- Stale-overload cleanup: CREATE OR REPLACE cannot remove an old overload once +-- a second signature exists (SQLSTATE 42725). Drop known signatures first so +-- re-applying this file always lands on exactly one get_event_leaderboard. +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); + +-- LANGUAGE plpgsql (not sql): a "sql"-language body is parsed for relation +-- references at CREATE time, so this function would fail to create on a +-- fresh install before v_player_match_map_hltv exists in a later boot phase. +-- plpgsql bodies are not parsed for relation references at creation time, so +-- this creates cleanly regardless of what else has been applied yet. +CREATE OR REPLACE FUNCTION public.get_event_leaderboard( + _event_id UUID, + _category TEXT, + _match_type TEXT DEFAULT NULL, + _min_rounds INT DEFAULT 10, + hasura_session JSON DEFAULT NULL +) +RETURNS SETOF public.leaderboard_entries +LANGUAGE plpgsql STABLE +AS $$ +BEGIN + IF _category NOT IN ('rating', 'adr', 'kdr', 'kills', 'wins') THEN + RAISE EXCEPTION 'get_event_leaderboard: unknown category %', _category; + END IF; + + -- An explicit NULL would make the HAVING comparison below silently filter + -- every row; treat it as "no minimum" instead of returning an empty board. + IF _min_rounds IS NULL THEN + _min_rounds := 0; + END IF; + + -- This function is exposed to the guest role and takes an arbitrary event + -- id, so it must apply the same guard as the events table select + -- permissions: Private/Friends events are only visible per can_view_event. + -- Otherwise a caller could compute standings for an event they cannot see. + IF NOT EXISTS ( + SELECT 1 FROM public.events e + WHERE e.id = _event_id + AND public.can_view_event(e, hasura_session) + ) THEN + RETURN; + END IF; + + RETURN QUERY + -- event_match_links is the trigger-maintained materialization of + -- v_event_matches (tournaments + windowed teams/players), so stats + -- aggregate over an indexed table instead of re-deriving the joins. + WITH e_matches AS ( + SELECT eml.match_id + FROM public.event_match_links eml + WHERE eml.event_id = _event_id +), +f_matches AS ( + SELECT em.match_id + FROM e_matches em + JOIN matches m ON m.id = em.match_id + LEFT JOIN match_options mo ON mo.id = m.match_options_id + WHERE _match_type IS NULL OR mo.type = _match_type +), +roster AS ( + -- Explicit curation: when event_players has rows for this event, + -- only those players appear on the board. + SELECT ep.steam_id FROM event_players ep WHERE ep.event_id = _event_id +), +agg AS ( + SELECT + pmms.steam_id, + SUM(pmms.kills)::float AS kills, + SUM(pmms.deaths)::float AS deaths, + SUM(pmms.damage)::float AS damage, + SUM(pmms.rounds_played)::int AS rounds_played, + COUNT(DISTINCT pmms.match_id)::int AS matches_played, + CASE WHEN SUM(h.rounds_played) > 0 + THEN SUM(COALESCE(h.hltv_rating, 0) * h.rounds_played) + / SUM(h.rounds_played) + ELSE 0 + END AS rating + FROM f_matches fm + JOIN player_match_map_stats pmms ON pmms.match_id = fm.match_id + LEFT JOIN v_player_match_map_hltv h + ON h.match_map_id = pmms.match_map_id + AND h.steam_id = pmms.steam_id + WHERE NOT EXISTS (SELECT 1 FROM roster) + OR pmms.steam_id IN (SELECT steam_id FROM roster) + GROUP BY pmms.steam_id + HAVING SUM(pmms.rounds_played) >= _min_rounds +), +wins AS ( + SELECT mlp.steam_id, COUNT(DISTINCT m.id)::float AS wins + FROM f_matches fm + JOIN matches m ON m.id = fm.match_id AND m.winning_lineup_id IS NOT NULL + JOIN match_lineup_players mlp ON mlp.match_lineup_id = m.winning_lineup_id + GROUP BY mlp.steam_id +) +SELECT + a.steam_id::text AS player_steam_id, + p.name AS player_name, + p.avatar_url AS player_avatar_url, + p.country AS player_country, + CASE _category + WHEN 'rating' THEN ROUND(a.rating::numeric, 2)::float + WHEN 'adr' THEN CASE WHEN a.rounds_played > 0 + THEN ROUND((a.damage / a.rounds_played)::numeric, 1)::float + ELSE 0 END + WHEN 'kdr' THEN CASE WHEN a.deaths = 0 THEN a.kills + ELSE ROUND((a.kills / a.deaths)::numeric, 2)::float END + WHEN 'kills' THEN a.kills + WHEN 'wins' THEN COALESCE(w.wins, 0) + ELSE 0 + END AS value, + a.kills AS secondary_value, + a.deaths AS tertiary_value, + a.matches_played +FROM agg a +JOIN players p ON p.steam_id = a.steam_id +LEFT JOIN wins w ON w.steam_id = a.steam_id +-- No LIMIT here: the web paginates via Hasura-level order_by/limit/offset +-- (like the global get_leaderboard), so an in-function cap would truncate +-- events with more than N participants and skew the aggregate count. +ORDER BY value DESC; +END; +$$; diff --git a/hasura/functions/events/is_event_organizer.sql b/hasura/functions/events/is_event_organizer.sql new file mode 100644 index 000000000..d54e90644 --- /dev/null +++ b/hasura/functions/events/is_event_organizer.sql @@ -0,0 +1,22 @@ +CREATE OR REPLACE FUNCTION public.is_event_organizer( + event public.events, + hasura_session json +) RETURNS boolean +LANGUAGE sql +STABLE +AS $$ + -- nullif guard matches event_access.sql: an empty x-hasura-user-id must + -- read as anonymous rather than fail the ::bigint cast. COALESCE because + -- a NULL user id makes the organizer comparison NULL, not false. + SELECT COALESCE( + hasura_session ->> 'x-hasura-role' IN ('admin', 'administrator', 'tournament_organizer') + OR event.organizer_steam_id = nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint + OR EXISTS ( + SELECT 1 + FROM public.event_organizers + WHERE event_id = event.id + AND steam_id = nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint + ), + false + ); +$$; diff --git a/hasura/functions/match/get_match_server_plugin_runtime.sql b/hasura/functions/match/get_match_server_plugin_runtime.sql new file mode 100644 index 000000000..1fb828126 --- /dev/null +++ b/hasura/functions/match/get_match_server_plugin_runtime.sql @@ -0,0 +1,20 @@ +CREATE OR REPLACE FUNCTION public.get_match_server_plugin_runtime(match public.matches) +RETURNS text +LANGUAGE plpgsql +STABLE +AS $$ +DECLARE + runtime text; +BEGIN + IF match.server_id IS NULL THEN + RETURN NULL; + END IF; + + SELECT plugin_runtime + INTO runtime + FROM servers + WHERE id = match.server_id; + + RETURN runtime; +END +$$; diff --git a/hasura/functions/servers/get_server_connection.sql b/hasura/functions/servers/get_server_connection.sql index fbc05d354..f7efe5d3b 100644 --- a/hasura/functions/servers/get_server_connection.sql +++ b/hasura/functions/servers/get_server_connection.sql @@ -5,7 +5,9 @@ DECLARE connection_string text; min_role_to_connect text; BEGIN - IF server.connected = false OR server.enabled = false OR server.type = 'Ranked' OR server.host IS NULL OR server.port IS NULL THEN + -- A disabled server can still be online (external servers keep running), + -- so gate on connected rather than enabled. + IF server.connected = false OR server.type = 'Ranked' OR server.host IS NULL OR server.port IS NULL THEN RETURN NULL; END IF; @@ -32,7 +34,9 @@ DECLARE server_host text; min_role_to_connect text; BEGIN - IF server.connected = false OR server.enabled = false OR server.type = 'Ranked' OR NULLIF(server.connect_password, '') IS NOT NULL THEN + -- A disabled server can still be online (external servers keep running), + -- so gate on connected rather than enabled. + IF server.connected = false OR server.type = 'Ranked' OR NULLIF(server.connect_password, '') IS NOT NULL THEN RETURN NULL; END IF; diff --git a/hasura/metadata/databases/default/functions/functions.yaml b/hasura/metadata/databases/default/functions/functions.yaml index 73accb595..13630ee63 100644 --- a/hasura/metadata/databases/default/functions/functions.yaml +++ b/hasura/metadata/databases/default/functions/functions.yaml @@ -1,5 +1,6 @@ - "!include public_approve_league_season_movements.yaml" - "!include public_clone_league_season.yaml" +- "!include public_get_event_leaderboard.yaml" - "!include public_get_leaderboard.yaml" - "!include public_get_league_season_leaderboard.yaml" - "!include public_league_award_forfeit.yaml" diff --git a/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml b/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml new file mode 100644 index 000000000..ece0d61b2 --- /dev/null +++ b/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml @@ -0,0 +1,9 @@ +function: + name: get_event_leaderboard + schema: public +configuration: + custom_root_fields: {} + exposed_as: query + session_argument: hasura_session +permissions: + - role: guest diff --git a/hasura/metadata/databases/default/tables/public_e_event_media_access.yaml b/hasura/metadata/databases/default/tables/public_e_event_media_access.yaml new file mode 100644 index 000000000..853a71c4f --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_event_media_access.yaml @@ -0,0 +1,12 @@ +table: + name: e_event_media_access + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_event_visibility.yaml b/hasura/metadata/databases/default/tables/public_e_event_visibility.yaml new file mode 100644 index 000000000..f3b9d2a68 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_event_visibility.yaml @@ -0,0 +1,12 @@ +table: + name: e_event_visibility + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_match_links.yaml b/hasura/metadata/databases/default/tables/public_event_match_links.yaml new file mode 100644 index 000000000..fbea8b04a --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_match_links.yaml @@ -0,0 +1,35 @@ +table: + name: event_match_links + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: match + using: + foreign_key_constraint_on: match_id +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - match_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - match_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_media.yaml b/hasura/metadata/databases/default/tables/public_event_media.yaml new file mode 100644 index 000000000..a59ff7e08 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_media.yaml @@ -0,0 +1,77 @@ +table: + name: event_media + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: uploader + using: + foreign_key_constraint_on: uploader_steam_id +array_relationships: + - name: players + using: + foreign_key_constraint_on: + column: media_id + table: + name: event_media_players + schema: public +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - external_url + - filename + - id + - mime_type + - size + - thumbnail_filename + - title + - uploader_steam_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - external_url + - filename + - id + - mime_type + - size + - thumbnail_filename + - title + - uploader_steam_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +update_permissions: + - role: user + permission: + columns: + - title + filter: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + check: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_media_players.yaml b/hasura/metadata/databases/default/tables/public_event_media_players.yaml new file mode 100644 index 000000000..c5aee1342 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_media_players.yaml @@ -0,0 +1,64 @@ +table: + name: event_media_players + schema: public +object_relationships: + - name: media + using: + foreign_key_constraint_on: media_id + - name: player + using: + foreign_key_constraint_on: steam_id +insert_permissions: + - role: user + permission: + check: + media: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + columns: + - media_id + - steam_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - media_id + - steam_id + filter: + media: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - media_id + - steam_id + filter: + media: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + media: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_organizers.yaml b/hasura/metadata/databases/default/tables/public_event_organizers.yaml new file mode 100644 index 000000000..7bb472cba --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_organizers.yaml @@ -0,0 +1,65 @@ +table: + name: event_organizers + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: organizer + using: + foreign_key_constraint_on: steam_id +insert_permissions: + - role: tournament_organizer + permission: + check: {} + columns: + - event_id + - steam_id + comment: "" + - role: user + permission: + check: + event: + is_organizer: + _eq: true + columns: + - event_id + - steam_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - steam_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - steam_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +delete_permissions: + - role: tournament_organizer + permission: + filter: {} + comment: "" + - role: user + permission: + filter: + event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_players.yaml b/hasura/metadata/databases/default/tables/public_event_players.yaml new file mode 100644 index 000000000..3c157f668 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_players.yaml @@ -0,0 +1,54 @@ +table: + name: event_players + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: player + using: + foreign_key_constraint_on: steam_id +insert_permissions: + - role: user + permission: + check: + event: + is_organizer: + _eq: true + columns: + - event_id + - steam_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - steam_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - steam_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_teams.yaml b/hasura/metadata/databases/default/tables/public_event_teams.yaml new file mode 100644 index 000000000..da4ff3c9e --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_teams.yaml @@ -0,0 +1,54 @@ +table: + name: event_teams + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: team + using: + foreign_key_constraint_on: team_id +insert_permissions: + - role: user + permission: + check: + event: + is_organizer: + _eq: true + columns: + - event_id + - team_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - team_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - team_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_tournaments.yaml b/hasura/metadata/databases/default/tables/public_event_tournaments.yaml new file mode 100644 index 000000000..4928ed68b --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_tournaments.yaml @@ -0,0 +1,54 @@ +table: + name: event_tournaments + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: tournament + using: + foreign_key_constraint_on: tournament_id +insert_permissions: + - role: user + permission: + check: + event: + is_organizer: + _eq: true + columns: + - event_id + - tournament_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - tournament_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - tournament_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_events.yaml b/hasura/metadata/databases/default/tables/public_events.yaml new file mode 100644 index 000000000..b300b3639 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_events.yaml @@ -0,0 +1,324 @@ +table: + name: events + schema: public +object_relationships: + - name: banner + using: + foreign_key_constraint_on: banner_media_id + - name: organizer + using: + foreign_key_constraint_on: organizer_steam_id +array_relationships: + - name: media + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_media + schema: public + - name: organizers + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_organizers + schema: public + - name: player_stats + using: + manual_configuration: + column_mapping: + id: event_id + insertion_order: null + remote_table: + name: v_event_player_stats + schema: public + - name: players + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_players + schema: public + - name: teams + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_teams + schema: public + - name: tournaments + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_tournaments + schema: public +computed_fields: + - name: can_upload_media + definition: + function: + name: can_upload_event_media + schema: public + session_argument: hasura_session + - name: can_view + definition: + function: + name: can_view_event + schema: public + session_argument: hasura_session + - name: is_organizer + definition: + function: + name: is_event_organizer + schema: public + session_argument: hasura_session +insert_permissions: + - role: administrator + permission: + check: + _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.events_enabled + - value: + _eq: "true" + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - media_access + - name + - starts_at + - visibility + comment: "" + - role: match_organizer + permission: + check: + _and: + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.events_enabled + - value: + _eq: "true" + - _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - media_access + - name + - starts_at + - visibility + comment: "" + - role: tournament_organizer + permission: + check: + _and: + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.events_enabled + - value: + _eq: "true" + - _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer + - tournament_organizer + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - media_access + - name + - starts_at + - visibility + comment: "" +select_permissions: + - role: guest + permission: + columns: + - banner_media_id + - created_at + - description + - ends_at + - hide_creator_organizer + - id + - media_access + - name + - organizer_steam_id + - starts_at + - visibility + computed_fields: + - can_upload_media + - can_view + - is_organizer + filter: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: tournament_organizer + permission: + columns: + - banner_media_id + - created_at + - description + - ends_at + - hide_creator_organizer + - id + - media_access + - name + - organizer_steam_id + - starts_at + - visibility + computed_fields: + - can_upload_media + - can_view + - is_organizer + filter: + can_view: + _eq: true + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - banner_media_id + - created_at + - description + - ends_at + - hide_creator_organizer + - id + - media_access + - name + - organizer_steam_id + - starts_at + - visibility + computed_fields: + - can_upload_media + - can_view + - is_organizer + filter: + can_view: + _eq: true + allow_aggregations: true + comment: "" +update_permissions: + - role: tournament_organizer + permission: + columns: + - banner_media_id + - description + - ends_at + - hide_creator_organizer + - media_access + - name + - starts_at + - visibility + filter: + is_organizer: + _eq: true + check: + is_organizer: + _eq: true + comment: "" + - role: user + permission: + columns: + - banner_media_id + - description + - ends_at + - hide_creator_organizer + - media_access + - name + - starts_at + - visibility + filter: + is_organizer: + _eq: true + check: + is_organizer: + _eq: true + comment: "" +delete_permissions: + - role: tournament_organizer + permission: + filter: {} + comment: "" + - role: user + permission: + filter: + organizer_steam_id: + _eq: X-Hasura-User-Id + comment: "" +event_triggers: + - name: events + definition: + delete: + columns: '*' + enable_manual: false + 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_matches.yaml b/hasura/metadata/databases/default/tables/public_matches.yaml index efbaf065d..d8a1f237d 100644 --- a/hasura/metadata/databases/default/tables/public_matches.yaml +++ b/hasura/metadata/databases/default/tables/public_matches.yaml @@ -317,6 +317,11 @@ computed_fields: name: match_requested_organizer schema: public session_argument: hasura_session + - name: server_plugin_runtime + definition: + function: + name: get_match_server_plugin_runtime + schema: public - name: server_region definition: function: @@ -564,6 +569,7 @@ select_permissions: - min_players_per_lineup - region_veto_picking_lineup_id - requested_organizer + - server_plugin_runtime - server_region - server_type - tv_connection_string @@ -623,6 +629,7 @@ select_permissions: - min_players_per_lineup - region_veto_picking_lineup_id - requested_organizer + - server_plugin_runtime - server_region - server_type - tv_connection_string diff --git a/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml b/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml new file mode 100644 index 000000000..ae6e2d639 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml @@ -0,0 +1,59 @@ +table: + name: v_event_player_stats + schema: public +object_relationships: + - name: event + using: + manual_configuration: + column_mapping: + event_id: id + insertion_order: null + remote_table: + name: events + schema: public + - name: player + using: + manual_configuration: + column_mapping: + player_steam_id: steam_id + insertion_order: null + remote_table: + name: players + schema: public +select_permissions: + - role: guest + permission: + columns: + - event_id + - player_steam_id + - kills + - headshots + - deaths + - assists + - matches_played + - kdr + - headshot_percentage + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - event_id + - player_steam_id + - kills + - headshots + - deaths + - assists + - matches_played + - kdr + - headshot_percentage + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 0ff30849c..73ad2708a 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -13,6 +13,8 @@ - "!include public_e_draft_game_mode.yaml" - "!include public_e_draft_game_player_status.yaml" - "!include public_e_draft_game_status.yaml" +- "!include public_e_event_media_access.yaml" +- "!include public_e_event_visibility.yaml" - "!include public_e_friend_status.yaml" - "!include public_e_game_cfg_types.yaml" - "!include public_e_game_server_node_statuses.yaml" @@ -46,6 +48,14 @@ - "!include public_e_utility_types.yaml" - "!include public_e_veto_pick_types.yaml" - "!include public_e_winning_reasons.yaml" +- "!include public_event_match_links.yaml" +- "!include public_event_media.yaml" +- "!include public_event_media_players.yaml" +- "!include public_event_organizers.yaml" +- "!include public_event_players.yaml" +- "!include public_event_teams.yaml" +- "!include public_event_tournaments.yaml" +- "!include public_events.yaml" - "!include public_friends.yaml" - "!include public_game_server_nodes.yaml" - "!include public_game_versions.yaml" @@ -135,6 +145,7 @@ - "!include public_tournament_trophies.yaml" - "!include public_tournament_trophy_configs.yaml" - "!include public_tournaments.yaml" +- "!include public_v_event_player_stats.yaml" - "!include public_v_gpu_pool_status.yaml" - "!include public_v_league_division_standings.yaml" - "!include public_v_league_season_player_stats.yaml" diff --git a/hasura/migrations/default/1870000000200_events/down.sql b/hasura/migrations/default/1870000000200_events/down.sql new file mode 100644 index 000000000..043fe5ca3 --- /dev/null +++ b/hasura/migrations/default/1870000000200_events/down.sql @@ -0,0 +1,68 @@ +-- These are created in later boot phases (hasura/functions, hasura/views, +-- hasura/triggers) and are not reverted by re-running migrations, so they +-- must be dropped here before the tables they depend on. +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); +DROP VIEW IF EXISTS public.v_event_player_stats; +DROP VIEW IF EXISTS public.v_event_matches; +DROP FUNCTION IF EXISTS public.can_upload_event_media(public.events, json); +DROP FUNCTION IF EXISTS public.can_view_event(public.events, json); +DROP FUNCTION IF EXISTS public.is_event_member(public.events, bigint); +DROP FUNCTION IF EXISTS public.is_event_organizer(public.events, json); + +DROP TRIGGER IF EXISTS tg_event_media_players_member ON public.event_media_players; +DROP FUNCTION IF EXISTS public.tg_event_media_players_member(); + +DROP TRIGGER IF EXISTS tg_events_sync_match_links ON public.events; +DROP TRIGGER IF EXISTS tg_event_teams_sync_match_links ON public.event_teams; +DROP TRIGGER IF EXISTS tg_event_players_sync_match_links ON public.event_players; +DROP TRIGGER IF EXISTS tg_event_tournaments_sync_match_links ON public.event_tournaments; +DROP TRIGGER IF EXISTS tg_brackets_sync_event_match_links ON public.tournament_brackets; +DROP TRIGGER IF EXISTS tg_matches_sync_event_match_links ON public.matches; +DROP TRIGGER IF EXISTS tg_mlp_sync_event_match_links ON public.match_lineup_players; +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_membership(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_bracket(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_match(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_mlp(); +DROP FUNCTION IF EXISTS public.sync_event_match_links(uuid); +DROP FUNCTION IF EXISTS public.sync_match_event_links(uuid); + +-- The boot loader (HasuraService.apply) skips re-creating a boot-phase object +-- when its stored digest is unchanged, so dropping the objects above is not +-- enough: without clearing their digests a later forward deploy would leave +-- the tables present but the views/functions/triggers gone. Clear the digests +-- so the next boot re-applies them. The setting name is the cwd-relative path +-- minus ".sql". Guard with to_regclass so this is a no-op when +-- migration_hashes has not been created yet (e.g. a rollback before the app +-- has ever booted). +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name IN ( + 'hasura/functions/events/event_access', + 'hasura/functions/events/get_event_leaderboard', + 'hasura/functions/events/is_event_organizer', + 'hasura/views/v_event_matches', + 'hasura/views/v_event_player_stats', + 'hasura/triggers/event_match_links', + 'hasura/triggers/event_media_players' + ); + END IF; +END $$; + +DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; +DROP FUNCTION IF EXISTS public.tg_events_banner_same_event(); + +DROP TABLE IF EXISTS public.event_match_links; +DROP TABLE IF EXISTS public.event_media_players; +ALTER TABLE public.events DROP COLUMN IF EXISTS banner_media_id; +DROP TABLE IF EXISTS public.event_media; +DROP TABLE IF EXISTS public.event_players; +DROP TABLE IF EXISTS public.event_teams; +DROP TABLE IF EXISTS public.event_tournaments; +DROP TABLE IF EXISTS public.event_organizers; +DROP TABLE IF EXISTS public.events; +DROP TABLE IF EXISTS public.e_event_visibility; +DROP TABLE IF EXISTS public.e_event_media_access; diff --git a/hasura/migrations/default/1870000000200_events/up.sql b/hasura/migrations/default/1870000000200_events/up.sql new file mode 100644 index 000000000..de8de8aac --- /dev/null +++ b/hasura/migrations/default/1870000000200_events/up.sql @@ -0,0 +1,138 @@ +-- Events: curated mini-season containers grouping selected tournaments. +-- Design: docs/plans/2026-07-03-events-feature-design.md (polyrepo root). + +CREATE TABLE IF NOT EXISTS public.e_event_visibility ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_visibility (value, description) VALUES + ('Private', 'Only people involved in the event'), + ('Friends', 'Involved people and their friends'), + ('Public', 'Anyone') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.e_event_media_access ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_media_access (value, description) VALUES + ('Organizers', 'Organizers only'), + ('Involved', 'Anyone involved in the event') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.events ( + id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, + name text NOT NULL, + description text, + starts_at timestamptz, + ends_at timestamptz, + visibility text NOT NULL DEFAULT 'Public' + REFERENCES public.e_event_visibility(value), + media_access text NOT NULL DEFAULT 'Organizers' + REFERENCES public.e_event_media_access(value), + -- The creator is shown in "Organized by" by default but can be hidden + -- from that display (they remain the owner for permissions). + hide_creator_organizer boolean NOT NULL DEFAULT false, + organizer_steam_id bigint NOT NULL REFERENCES public.players(steam_id), + created_at timestamptz NOT NULL DEFAULT now() +); + +CREATE TABLE IF NOT EXISTS public.event_organizers ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, steam_id) +); + +CREATE TABLE IF NOT EXISTS public.event_tournaments ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + tournament_id uuid NOT NULL REFERENCES public.tournaments(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, tournament_id) +); +CREATE INDEX IF NOT EXISTS idx_event_tournaments_tournament + ON public.event_tournaments(tournament_id); + +CREATE TABLE IF NOT EXISTS public.event_teams ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + team_id uuid NOT NULL REFERENCES public.teams(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, team_id) +); +CREATE INDEX IF NOT EXISTS idx_event_teams_team ON public.event_teams(team_id); + +CREATE TABLE IF NOT EXISTS public.event_players ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, steam_id) +); +CREATE INDEX IF NOT EXISTS idx_event_players_steam ON public.event_players(steam_id); + +CREATE TABLE IF NOT EXISTS public.event_media ( + id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + uploader_steam_id bigint NOT NULL REFERENCES public.players(steam_id), + -- Uploaded-file media has filename + mime_type; external-link media + -- (YouTube/Twitch/etc.) has external_url instead. The CHECK enforces + -- exactly one source. + filename text, + mime_type text, + external_url text, + size bigint NOT NULL DEFAULT 0, + title text, + -- Poster frame for video media, captured client-side at upload time so + -- gallery tiles never fetch the mp4 itself. + thumbnail_filename text, + created_at timestamptz NOT NULL DEFAULT now(), + UNIQUE (event_id, filename), + CONSTRAINT event_media_source_chk CHECK (num_nonnulls(filename, external_url) = 1) +); +CREATE INDEX IF NOT EXISTS idx_event_media_event ON public.event_media(event_id); + +ALTER TABLE public.events + ADD COLUMN IF NOT EXISTS banner_media_id uuid + REFERENCES public.event_media(id) ON DELETE SET NULL; + +-- A single-column FK cannot enforce that the banner belongs to this event. +CREATE OR REPLACE FUNCTION public.tg_events_banner_same_event() RETURNS trigger +LANGUAGE plpgsql AS $$ +BEGIN + IF NEW.banner_media_id IS NOT NULL AND NOT EXISTS ( + SELECT 1 FROM public.event_media m + WHERE m.id = NEW.banner_media_id AND m.event_id = NEW.id + ) THEN + RAISE EXCEPTION 'banner_media_id must reference media of the same event'; + END IF; + RETURN NEW; +END $$; + +DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; +CREATE TRIGGER tg_events_banner_same_event + BEFORE INSERT OR UPDATE OF banner_media_id ON public.events + FOR EACH ROW EXECUTE FUNCTION public.tg_events_banner_same_event(); + +-- Media items can tag the players featured in them. +CREATE TABLE IF NOT EXISTS public.event_media_players ( + media_id uuid NOT NULL REFERENCES public.event_media(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (media_id, steam_id) +); +CREATE INDEX IF NOT EXISTS idx_event_media_players_steam + ON public.event_media_players(steam_id); + +-- Materialized event->match links. v_event_matches stays the single source +-- of truth for the derivation; triggers (hasura/triggers/event_match_links) +-- keep this table in sync so list queries paginate over an indexed table and +-- stats aggregate without re-deriving the windowed joins per query. +CREATE TABLE IF NOT EXISTS public.event_match_links ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + match_id uuid NOT NULL REFERENCES public.matches(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, match_id) +); +CREATE INDEX IF NOT EXISTS idx_event_match_links_match + ON public.event_match_links(match_id); diff --git a/hasura/triggers/event_match_links.sql b/hasura/triggers/event_match_links.sql new file mode 100644 index 000000000..7a6dd25a7 --- /dev/null +++ b/hasura/triggers/event_match_links.sql @@ -0,0 +1,128 @@ +-- Keeps event_match_links (migration 1874) in sync with v_event_matches, the +-- single source of truth for "which matches belong to an event". Every input +-- of the derivation has a trigger: the event window, memberships, tournament +-- brackets, the matches themselves, and lineup membership. + +CREATE OR REPLACE FUNCTION public.sync_event_match_links(_event_id uuid) +RETURNS void LANGUAGE sql AS $$ + DELETE FROM public.event_match_links l + WHERE l.event_id = _event_id + AND NOT EXISTS ( + SELECT 1 FROM public.v_event_matches v + WHERE v.event_id = l.event_id AND v.match_id = l.match_id + ); + INSERT INTO public.event_match_links (event_id, match_id) + SELECT v.event_id, v.match_id + FROM public.v_event_matches v + WHERE v.event_id = _event_id + ON CONFLICT DO NOTHING; +$$; + +CREATE OR REPLACE FUNCTION public.sync_match_event_links(_match_id uuid) +RETURNS void LANGUAGE sql AS $$ + DELETE FROM public.event_match_links l + WHERE l.match_id = _match_id + AND NOT EXISTS ( + SELECT 1 FROM public.v_event_matches v + WHERE v.event_id = l.event_id AND v.match_id = l.match_id + ); + INSERT INTO public.event_match_links (event_id, match_id) + SELECT v.event_id, v.match_id + FROM public.v_event_matches v + WHERE v.match_id = _match_id + ON CONFLICT DO NOTHING; +$$; + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links() +RETURNS trigger LANGUAGE plpgsql AS $$ +BEGIN + PERFORM public.sync_event_match_links(NEW.id); + RETURN NEW; +END $$; +DROP TRIGGER IF EXISTS tg_events_sync_match_links ON public.events; +CREATE TRIGGER tg_events_sync_match_links + AFTER INSERT OR UPDATE OF starts_at, ends_at ON public.events + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links(); + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_membership() +RETURNS trigger LANGUAGE plpgsql AS $$ +BEGIN + PERFORM public.sync_event_match_links(COALESCE(NEW.event_id, OLD.event_id)); + RETURN COALESCE(NEW, OLD); +END $$; +DROP TRIGGER IF EXISTS tg_event_teams_sync_match_links ON public.event_teams; +CREATE TRIGGER tg_event_teams_sync_match_links + AFTER INSERT OR DELETE ON public.event_teams + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_membership(); +DROP TRIGGER IF EXISTS tg_event_players_sync_match_links ON public.event_players; +CREATE TRIGGER tg_event_players_sync_match_links + AFTER INSERT OR DELETE ON public.event_players + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_membership(); +DROP TRIGGER IF EXISTS tg_event_tournaments_sync_match_links ON public.event_tournaments; +CREATE TRIGGER tg_event_tournaments_sync_match_links + AFTER INSERT OR DELETE ON public.event_tournaments + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_membership(); + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_bracket() +RETURNS trigger LANGUAGE plpgsql AS $$ +DECLARE + _event uuid; +BEGIN + FOR _event IN + SELECT et.event_id + FROM public.tournament_stages ts + JOIN public.event_tournaments et ON et.tournament_id = ts.tournament_id + WHERE ts.id = COALESCE(NEW.tournament_stage_id, OLD.tournament_stage_id) + LOOP + PERFORM public.sync_event_match_links(_event); + END LOOP; + RETURN COALESCE(NEW, OLD); +END $$; +DROP TRIGGER IF EXISTS tg_brackets_sync_event_match_links ON public.tournament_brackets; +CREATE TRIGGER tg_brackets_sync_event_match_links + AFTER INSERT OR UPDATE OF match_id OR DELETE ON public.tournament_brackets + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_bracket(); + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_match() +RETURNS trigger LANGUAGE plpgsql AS $$ +BEGIN + PERFORM public.sync_match_event_links(NEW.id); + RETURN NEW; +END $$; +DROP TRIGGER IF EXISTS tg_matches_sync_event_match_links ON public.matches; +CREATE TRIGGER tg_matches_sync_event_match_links + AFTER INSERT OR UPDATE OF scheduled_at, started_at, lineup_1_id, lineup_2_id + ON public.matches + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_match(); + +-- Player joins/leaves a lineup after the match row exists (player-derived +-- links depend on match_lineup_players). +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_mlp() +RETURNS trigger LANGUAGE plpgsql AS $$ +DECLARE + _match uuid; +BEGIN + FOR _match IN + SELECT m.id FROM public.matches m + WHERE COALESCE(NEW.match_lineup_id, OLD.match_lineup_id) + IN (m.lineup_1_id, m.lineup_2_id) + LOOP + PERFORM public.sync_match_event_links(_match); + END LOOP; + RETURN COALESCE(NEW, OLD); +END $$; +DROP TRIGGER IF EXISTS tg_mlp_sync_event_match_links ON public.match_lineup_players; +CREATE TRIGGER tg_mlp_sync_event_match_links + AFTER INSERT OR DELETE ON public.match_lineup_players + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_mlp(); + +-- Full backfill/prune. Runs only when this file's digest changes; keeps the +-- table exact after upgrades that alter the derivation. +DELETE FROM public.event_match_links l + WHERE NOT EXISTS ( + SELECT 1 FROM public.v_event_matches v + WHERE v.event_id = l.event_id AND v.match_id = l.match_id + ); +INSERT INTO public.event_match_links (event_id, match_id) +SELECT event_id, match_id FROM public.v_event_matches +ON CONFLICT DO NOTHING; diff --git a/hasura/triggers/event_media_players.sql b/hasura/triggers/event_media_players.sql new file mode 100644 index 000000000..e0c4db464 --- /dev/null +++ b/hasura/triggers/event_media_players.sql @@ -0,0 +1,27 @@ +-- Tags on event media must reference people actually involved in the event. +-- The Hasura insert permission only proves the *tagger* is the uploader or an +-- organizer; without this the FK would let them tag any player on the +-- platform. Lives in the triggers boot phase (not the migration) so +-- is_event_member (functions phase) exists before the first execution and so +-- digest tracking applies it to databases that already ran the migration. +CREATE OR REPLACE FUNCTION public.tg_event_media_players_member() RETURNS trigger +LANGUAGE plpgsql AS $$ +DECLARE + _event public.events; +BEGIN + SELECT e.* INTO _event + FROM public.events e + JOIN public.event_media m ON m.event_id = e.id + WHERE m.id = NEW.media_id; + + IF _event.id IS NULL + OR NOT public.is_event_member(_event, NEW.steam_id) THEN + RAISE EXCEPTION 'tagged player must be involved in the event'; + END IF; + RETURN NEW; +END $$; + +DROP TRIGGER IF EXISTS tg_event_media_players_member ON public.event_media_players; +CREATE TRIGGER tg_event_media_players_member + BEFORE INSERT ON public.event_media_players + FOR EACH ROW EXECUTE FUNCTION public.tg_event_media_players_member(); diff --git a/hasura/views/v_event_matches.sql b/hasura/views/v_event_matches.sql new file mode 100644 index 000000000..cb67a825a --- /dev/null +++ b/hasura/views/v_event_matches.sql @@ -0,0 +1,51 @@ +-- The canonical "matches of an event" set, shared by the event page match +-- list (Hasura-tracked), get_event_leaderboard and v_event_player_stats so +-- the three can never disagree. +-- +-- A match belongs to an event when any of: +-- - it sits in a bracket of an attached tournament (no time window: the +-- tournament was explicitly attached, its matches are the event's); +-- - one of its lineups is an attached team and the match falls inside the +-- event window; +-- - one of its lineup players is an attached player and the match falls +-- inside the event window. +-- +-- The window end gets a day of grace so matches that start on the final +-- evening still count when ends_at is set to midday; missing dates leave +-- that side of the window open. +CREATE OR REPLACE VIEW public.v_event_matches AS +WITH windowed AS ( + SELECT + e.id AS event_id, + COALESCE(e.starts_at, '-infinity'::timestamptz) AS window_start, + COALESCE(e.ends_at + interval '1 day', 'infinity'::timestamptz) AS window_end + FROM events e +) +SELECT DISTINCT s.event_id, s.match_id +FROM ( + SELECT et.event_id, tb.match_id + FROM event_tournaments et + JOIN tournament_stages ts ON ts.tournament_id = et.tournament_id + JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id + WHERE tb.match_id IS NOT NULL + + UNION ALL + + SELECT w.event_id, m.id AS match_id + FROM windowed w + JOIN event_teams et ON et.event_id = w.event_id + JOIN match_lineups ml ON ml.team_id = et.team_id + JOIN matches m ON ml.id IN (m.lineup_1_id, m.lineup_2_id) + WHERE COALESCE(m.started_at, m.scheduled_at, m.created_at) >= w.window_start + AND COALESCE(m.started_at, m.scheduled_at, m.created_at) < w.window_end + + UNION ALL + + SELECT w.event_id, m.id AS match_id + FROM windowed w + JOIN event_players ep ON ep.event_id = w.event_id + JOIN match_lineup_players mlp ON mlp.steam_id = ep.steam_id + JOIN matches m ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + WHERE COALESCE(m.started_at, m.scheduled_at, m.created_at) >= w.window_start + AND COALESCE(m.started_at, m.scheduled_at, m.created_at) < w.window_end +) s; diff --git a/hasura/views/v_event_player_stats.sql b/hasura/views/v_event_player_stats.sql new file mode 100644 index 000000000..4870dd3f7 --- /dev/null +++ b/hasura/views/v_event_player_stats.sql @@ -0,0 +1,77 @@ +CREATE OR REPLACE VIEW public.v_event_player_stats AS +-- NOT MATERIALIZED: even though e_matches is referenced 3 times below, force inlining +-- so the outer per-event filter (event_id = $1) pushes down into the event_tournaments +-- scan instead of being applied after a materialized CTE builds the match set for every +-- event on the instance. +WITH e_matches AS NOT MATERIALIZED ( + -- Trigger-maintained materialization of v_event_matches (see + -- hasura/triggers/event_match_links); indexed on both columns. + SELECT eml.event_id, eml.match_id + FROM event_match_links eml +), +-- Kills, deaths and headshots come from the same player_kills rows. Unpivot +-- each kill into one row per side via LATERAL VALUES so player_kills is +-- scanned (and the chunk indexes hit) once instead of twice, then aggregate +-- both sides together keyed by player. +kd_agg AS ( + SELECT + em.event_id, + e.steam_id, + SUM(e.kill_flag)::int AS kills, + SUM(e.death_flag)::int AS deaths, + SUM(e.headshot_flag)::int AS headshots + FROM e_matches em + JOIN player_kills pk + ON pk.match_id = em.match_id + AND pk.attacker_steam_id IS NOT NULL + AND pk.attacker_steam_id != pk.attacked_steam_id + CROSS JOIN LATERAL (VALUES + (pk.attacker_steam_id, 1, 0, CASE WHEN pk.headshot THEN 1 ELSE 0 END), + (pk.attacked_steam_id, 0, 1, 0) + ) AS e(steam_id, kill_flag, death_flag, headshot_flag) + WHERE e.steam_id IS NOT NULL + GROUP BY em.event_id, e.steam_id +), +assists_agg AS ( + SELECT + em.event_id, + pa.attacker_steam_id AS steam_id, + COUNT(*)::int AS assists + FROM e_matches em + JOIN player_assists pa ON pa.match_id = em.match_id + WHERE pa.attacker_steam_id IS NOT NULL + GROUP BY em.event_id, pa.attacker_steam_id +), +matches_agg AS ( + SELECT + em.event_id, + mlp.steam_id, + COUNT(DISTINCT em.match_id)::int AS matches_played + FROM e_matches em + JOIN matches m ON m.id = em.match_id + JOIN match_lineup_players mlp + ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + WHERE mlp.steam_id IS NOT NULL + GROUP BY em.event_id, mlp.steam_id +) +SELECT + m.event_id, + m.steam_id AS player_steam_id, + COALESCE(kd.kills, 0) AS kills, + COALESCE(kd.headshots, 0) AS headshots, + COALESCE(kd.deaths, 0) AS deaths, + COALESCE(a.assists, 0) AS assists, + m.matches_played, + CASE WHEN COALESCE(kd.deaths, 0) = 0 + THEN COALESCE(kd.kills, 0)::float + ELSE ROUND(COALESCE(kd.kills, 0)::numeric / kd.deaths::numeric, 2)::float + END AS kdr, + CASE WHEN COALESCE(kd.kills, 0) = 0 + THEN 0::float + ELSE ROUND(COALESCE(kd.headshots, 0)::numeric / kd.kills::numeric * 100, 1)::float + END AS headshot_percentage +FROM matches_agg m +LEFT JOIN kd_agg kd + ON kd.event_id = m.event_id AND kd.steam_id = m.steam_id +LEFT JOIN assists_agg a + ON a.event_id = m.event_id AND a.steam_id = m.steam_id; diff --git a/src/app.module.ts b/src/app.module.ts index 0af1eacfa..5c7da6e63 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -53,6 +53,7 @@ import { FaceitModule } from "./faceit/faceit.module"; import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-history.module"; import { SteamPresenceModule } from "./steam-presence/steam-presence.module"; import { NewsModule } from "./news/news.module"; +import { EventsModule } from "./events/events.module"; import { ScrimsModule } from "./scrims/scrims.module"; import { LeaguesModule } from "./leagues/leagues.module"; @@ -148,6 +149,7 @@ import { LeaguesModule } from "./leagues/leagues.module"; SteamMatchHistoryModule, SteamPresenceModule, NewsModule, + EventsModule, ScrimsModule, LeaguesModule, ], diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index 06485d085..ed8294c2c 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -447,6 +447,7 @@ export class ChatService { status: true, server: { id: true, + plugin_runtime: true, }, }, }); @@ -466,7 +467,12 @@ export class ChatService { return; } - return await rcon.send(`css_web_chat "${message}"`); + const command = + server.plugin_runtime === "counterstrikesharp" + ? "css_web_chat" + : "sw_web_chat"; + + return await rcon.send(`${command} "${message}"`); } catch (error) { this.logger.warn( `[${matchId}] unable to send match to server`, diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 39e11aafc..766fc946b 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -703,14 +703,17 @@ export class DedicatedServersService { enabled: true, connected: true, steam_relay: true, + game_server_node_id: true, server_region: { steam_relay: true, }, }, }); - // disabled servers may still be shutting down; never bring them online - if (!server.enabled) { + // A disabled node-managed server has its deployment torn down and may still + // be shutting down; never bring it back online. External servers keep + // running independently, so a disabled one can still be online. + if (!server.enabled && server.game_server_node_id) { if (server.connected) { await this.hasura.mutation({ update_servers_by_pk: { diff --git a/src/dedicated-servers/jobs/PingDedicatedServers.ts b/src/dedicated-servers/jobs/PingDedicatedServers.ts index 9648466f6..3db946a43 100644 --- a/src/dedicated-servers/jobs/PingDedicatedServers.ts +++ b/src/dedicated-servers/jobs/PingDedicatedServers.ts @@ -17,15 +17,20 @@ export class PingDedicatedServers extends WorkerHost { servers: { __args: { where: { - enabled: { - _eq: true, - }, type: { _neq: "Ranked", }, is_dedicated: { _eq: true, }, + // Node-managed servers have their deployment torn down when + // disabled, so a disabled one is genuinely offline. External + // servers keep running on their own host, so still ping disabled + // ones to reflect their real online state. + _or: [ + { enabled: { _eq: true } }, + { game_server_node_id: { _is_null: true } }, + ], }, }, id: true, diff --git a/src/events/events.controller.ts b/src/events/events.controller.ts new file mode 100644 index 000000000..c89d39fc1 --- /dev/null +++ b/src/events/events.controller.ts @@ -0,0 +1,617 @@ +import { + BadRequestException, + Body, + Controller, + Delete, + FileTypeValidator, + ForbiddenException, + Get, + InternalServerErrorException, + Logger, + MaxFileSizeValidator, + NotFoundException, + Param, + ParseFilePipe, + Post, + Req, + Res, + UploadedFile, + UseInterceptors, +} from "@nestjs/common"; +import { FileInterceptor } from "@nestjs/platform-express"; +import { Request, Response } from "express"; +import { HasuraEvent } from "../hasura/hasura.controller"; +import { signUploadToken } from "../steam-match-history/uploadToken"; +import { HasuraEventData } from "../hasura/types/HasuraEventData"; +import { S3Service } from "../s3/s3.service"; +import { User } from "../auth/types/User"; +import { EventsService } from "./events.service"; + +const IMAGE_MAX_SIZE = 10 * 1024 * 1024; +const VIDEO_MAX_SIZE = 512 * 1024 * 1024; +const AUDIO_MAX_SIZE = 50 * 1024 * 1024; +// Anything at or under this posts through the API exactly like avatars and +// news images. Only bigger files (long mp4s) need the multipart bypass — +// Cloudflare caps proxied request bodies at ~100MB and times slow ones out. +const DIRECT_MAX_SIZE = 90 * 1024 * 1024; +const UPLOAD_CHUNK_SIZE = 64 * 1024 * 1024; + +const EXTENSION_BY_MIMETYPE: Record = { + "image/png": "png", + "image/jpeg": "jpg", + "image/webp": "webp", + "image/gif": "gif", + "video/mp4": "mp4", + "audio/mpeg": "mp3", +}; + +const MAX_SIZE_BY_MIMETYPE: Record = + { + "image/png": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "image/jpeg": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "image/webp": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "image/gif": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "video/mp4": { maxSize: VIDEO_MAX_SIZE, label: "512MB" }, + "audio/mpeg": { maxSize: AUDIO_MAX_SIZE, label: "50MB" }, + }; + +const MULTIPART_MEDIA: Record< + string, + { mimeType: string; maxSize: number; label: string } +> = { + mp4: { mimeType: "video/mp4", maxSize: VIDEO_MAX_SIZE, label: "512MB" }, +}; + +// Static "events/media" prefix (rather than "events" + "media" in each route) +// so the panel ingress can expose exactly this path and nothing else that may +// ever be added under /events. +@Controller("events/media") +export class EventsController { + constructor( + private readonly eventsService: EventsService, + private readonly s3: S3Service, + private readonly logger: Logger, + ) {} + + @Post(":eventId/upload") + @UseInterceptors(FileInterceptor("file")) + public async uploadMedia( + @Param("eventId") eventId: string, + @Req() request: Request, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: DIRECT_MAX_SIZE }), + new FileTypeValidator({ + fileType: /(image\/(png|jpeg|webp|gif)|video\/mp4|audio\/mpeg)/, + }), + ], + }), + ) + file: Express.Multer.File, + ) { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + + // ParseFilePipe applies the shared 90MB ceiling; per-type caps and (for + // audio/video, whose mimetype is client-claimed) magic bytes go here. + const cap = MAX_SIZE_BY_MIMETYPE[file.mimetype]; + if (!cap) { + throw new BadRequestException("unsupported file type"); + } + if (file.size > cap.maxSize) { + throw new BadRequestException(`file exceeds ${cap.label} limit`); + } + if ( + !file.mimetype.startsWith("image/") && + !this.hasValidMagicBytes(file.buffer.subarray(0, 12), file.mimetype) + ) { + throw new BadRequestException("file content does not match its type"); + } + + const extension = EXTENSION_BY_MIMETYPE[file.mimetype] || "png"; + const filename = this.eventsService.generateFilename(extension); + await this.s3.put( + this.eventsService.mediaKey(eventId, filename), + file.buffer, + file.mimetype, + ); + + const id = await this.eventsService.saveMedia({ + eventId, + uploaderSteamId: user.steam_id, + filename, + mimeType: file.mimetype, + size: file.size, + title: this.eventsService.titleFromFilename(file.originalname), + }); + + return { success: true, id, filename }; + } + + @Post(":eventId/link") + public async addLink( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { url?: string; title?: string }, + ): Promise<{ success: boolean; id: string }> { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + + const externalUrl = this.normalizeExternalUrl(body.url); + const title = + body.title?.trim().slice(0, 120) || + this.eventsService.titleFromFilename(new URL(externalUrl).hostname); + + const id = await this.eventsService.saveExternalMedia({ + eventId, + uploaderSteamId: user.steam_id, + externalUrl, + title, + }); + + return { success: true, id }; + } + + // Poster frame for a video item, captured client-side by the uploader at + // upload time so viewers never download the mp4 for a gallery tile. + @Post(":eventId/:mediaId/thumbnail") + @UseInterceptors(FileInterceptor("file")) + public async uploadThumbnail( + @Param("eventId") eventId: string, + @Param("mediaId") mediaId: string, + @Req() request: Request, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: 3 * 1024 * 1024 }), + new FileTypeValidator({ fileType: /image\/(png|jpeg|webp)/ }), + ], + }), + ) + file: Express.Multer.File, + ) { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + if (!/^[0-9a-fA-F-]{36}$/.test(mediaId)) { + throw new NotFoundException("media not found"); + } + const media = await this.eventsService.getMediaById(eventId, mediaId); + if (!media) { + throw new NotFoundException("media not found"); + } + if ( + media.uploader_steam_id !== user.steam_id && + !(await this.eventsService.isOrganizer(eventId, user)) + ) { + throw new ForbiddenException( + "only the uploader or an organizer can set the thumbnail", + ); + } + + const extension = EXTENSION_BY_MIMETYPE[file.mimetype] || "webp"; + const thumbnailFilename = this.eventsService.generateFilename(extension); + await this.s3.put( + this.eventsService.mediaKey(eventId, thumbnailFilename), + file.buffer, + file.mimetype, + ); + await this.eventsService.setMediaThumbnail(media, thumbnailFilename); + return { success: true, filename: thumbnailFilename }; + } + + @Post(":eventId/initiate") + public async initiateUpload( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { fileName?: string; fileSize?: number }, + ): Promise<{ + uploadId: string; + key: string; + chunkSize: number; + parts: Array<{ partNumber: number; url: string }>; + }> { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + + const extension = (body.fileName ?? "").toLowerCase().split(".").pop(); + const media = extension ? MULTIPART_MEDIA[extension] : undefined; + if (!media) { + throw new BadRequestException("expected an .mp4 file"); + } + + const fileSize = Number(body.fileSize); + if (!Number.isFinite(fileSize) || fileSize <= 0) { + throw new BadRequestException("invalid file size"); + } + if (fileSize <= DIRECT_MAX_SIZE) { + // Small files must use the plain upload endpoint (same path as + // avatars/news); the multipart bypass exists only for bodies too big + // to proxy through Cloudflare. + throw new BadRequestException("file is small enough to upload directly"); + } + if (fileSize > media.maxSize) { + throw new BadRequestException(`file exceeds ${media.label} limit`); + } + + const filename = this.eventsService.generateFilename(extension); + const key = this.eventsService.mediaKey(eventId, filename); + const uploadId = await this.s3.createMultipartUpload(key); + const partCount = Math.ceil(fileSize / UPLOAD_CHUNK_SIZE); + const workerUrl = await this.eventsService.getCloudflareWorkerUrl(); + + // Cloudflare-worker deployments (B2-backed storage) must route part PUTs + // through the worker: it answers the CORS preflight and signs the B2 + // write itself. Each part URL carries a short-lived HMAC token bound to + // this key+uploadId so the worker never signs arbitrary writes (same + // scheme as the demo upload flow). + let uploadToken: string | null = null; + if (workerUrl) { + const signingSecret = process.env.S3_SECRET; + if (!signingSecret) { + throw new InternalServerErrorException( + "S3_SECRET is not configured; cannot authorize worker uploads", + ); + } + uploadToken = signUploadToken(signingSecret, key, uploadId); + } + + const parts: Array<{ partNumber: number; url: string }> = []; + for (let partNumber = 1; partNumber <= partCount; partNumber++) { + parts.push({ + partNumber, + url: workerUrl + ? `${workerUrl}/${key}?partNumber=${partNumber}&uploadId=${encodeURIComponent(uploadId)}&token=${encodeURIComponent(uploadToken!)}` + : await this.s3.getPresignedPartUrl(key, uploadId, partNumber), + }); + } + + this.logger.log( + `event media initiate steam_id=${user.steam_id} key=${key} parts=${partCount} bytes=${fileSize}`, + ); + + return { uploadId, key, chunkSize: UPLOAD_CHUNK_SIZE, parts }; + } + + @Post(":eventId/complete") + public async completeUpload( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { uploadId?: string; key?: string; fileName?: string }, + ): Promise<{ success: boolean; id: string; filename: string }> { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + const { key, filename, media } = this.assertEventKey(eventId, body.key); + if (!body.uploadId) { + throw new BadRequestException("uploadId required"); + } + + try { + await this.s3.completeMultipartUpload(key, body.uploadId); + } catch (error) { + try { + await this.s3.abortMultipartUpload(key, body.uploadId); + } catch (abortError) { + this.logger.warn( + `abort after failed complete key=${key}: ${abortError}`, + ); + } + throw new BadRequestException( + `could not assemble upload: ${(error as Error)?.message ?? error}`, + ); + } + + // The size cap on /initiate trusts the client-claimed fileSize, so + // enforce the real assembled size here — presigned part PUTs aren't capped. + const { size } = await this.s3.stat(key); + if (size > media.maxSize) { + await this.s3.remove(key); + throw new BadRequestException(`file exceeds ${media.label} limit`); + } + + const header = await this.s3.readPrefix(key, 12); + if (!this.hasValidMagicBytes(header, media.mimeType)) { + await this.s3.remove(key); + throw new BadRequestException("file content does not match its type"); + } + + const id = await this.eventsService.saveMedia({ + eventId, + uploaderSteamId: user.steam_id, + filename, + mimeType: media.mimeType, + size, + title: this.eventsService.titleFromFilename(body.fileName), + }); + + this.logger.log( + `event media complete steam_id=${user.steam_id} key=${key}`, + ); + + return { success: true, id, filename }; + } + + @Post(":eventId/abort") + public async abortUpload( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { uploadId?: string; key?: string }, + ): Promise<{ success: boolean }> { + await this.assertCanUpload(eventId, request.user as User | undefined); + const { key } = this.assertEventKey(eventId, body.key); + if (!body.uploadId) { + throw new BadRequestException("uploadId required"); + } + try { + await this.s3.abortMultipartUpload(key, body.uploadId); + } catch (error) { + this.logger.warn(`abort multipart upload failed key=${key}: ${error}`); + } + return { success: true }; + } + + @Get(":eventId/:filename") + public async serveMedia( + @Param("eventId") eventId: string, + @Param("filename") filename: string, + @Req() request: Request, + @Res() response: Response, + ) { + if ( + !/^[0-9a-fA-F-]{36}$/.test(eventId) || + !/^[A-Za-z0-9._-]+$/.test(filename) + ) { + throw new NotFoundException("media not found"); + } + + // 404 (not 403) when the viewer lacks access, so probing a URL never + // confirms that a Private event exists at that id. + const canView = await this.eventsService.canView( + eventId, + request.user as User | undefined, + ); + if (!canView) { + throw new NotFoundException("media not found"); + } + + const media = await this.eventsService.getMedia(eventId, filename); + if (!media) { + throw new NotFoundException("media not found"); + } + + await this.stream( + this.eventsService.mediaKey(eventId, filename), + media.is_thumbnail + ? "image/webp" + : (media.mime_type ?? "application/octet-stream"), + request, + response, + ); + } + + @Delete(":eventId/:mediaId") + public async deleteMedia( + @Param("eventId") eventId: string, + @Param("mediaId") mediaId: string, + @Req() request: Request, + ): Promise<{ success: boolean }> { + const user = request.user as User | undefined; + if (!user) { + throw new ForbiddenException("authentication required"); + } + if ( + !/^[0-9a-fA-F-]{36}$/.test(eventId) || + !/^[0-9a-fA-F-]{36}$/.test(mediaId) + ) { + throw new NotFoundException("media not found"); + } + + const media = await this.eventsService.getMediaById(eventId, mediaId); + if (!media) { + throw new NotFoundException("media not found"); + } + + if ( + media.uploader_steam_id !== user.steam_id && + !(await this.eventsService.isOrganizer(eventId, user)) + ) { + throw new ForbiddenException( + "only the uploader or an organizer can delete media", + ); + } + + await this.eventsService.deleteMedia(media); + return { success: true }; + } + + @HasuraEvent() + public async events(data: HasuraEventData<{ id: string }>) { + if (data.op === "DELETE" && data.old?.id) { + await this.eventsService.removeEventMedia(data.old.id); + } + } + + private async assertCanUpload(eventId: string, user?: User): Promise { + if (!user) { + throw new ForbiddenException("authentication required"); + } + if (!/^[0-9a-fA-F-]{36}$/.test(eventId)) { + throw new NotFoundException("event not found"); + } + + const canUpload = await this.eventsService.canUpload(eventId, user); + if (canUpload === null) { + throw new NotFoundException("event not found"); + } + if (!canUpload) { + throw new ForbiddenException( + "you do not have permission to upload media to this event", + ); + } + return user; + } + + // Provider detection/embedding is done client-side, so only enforce that the + // link is a plausible http(s) URL of sane length before storing it. + private normalizeExternalUrl(raw?: string): string { + const value = raw?.trim(); + if (!value || value.length > 2048) { + throw new BadRequestException("invalid url"); + } + let parsed: URL; + try { + parsed = new URL(value); + } catch { + throw new BadRequestException("invalid url"); + } + if (parsed.protocol !== "http:" && parsed.protocol !== "https:") { + throw new BadRequestException("url must be http or https"); + } + return parsed.toString(); + } + + private assertEventKey( + eventId: string, + key?: string, + ): { + key: string; + filename: string; + media: { mimeType: string; maxSize: number; label: string }; + } { + const expectedPrefix = `${EventsService.MEDIA_PREFIX}/${eventId}/`; + if ( + !key || + !key.startsWith(expectedPrefix) || + !/^[a-zA-Z0-9/_-]+\.mp4$/.test(key) + ) { + throw new BadRequestException("invalid upload key"); + } + const filename = key.slice(expectedPrefix.length); + if (filename.includes("/")) { + throw new BadRequestException("invalid upload key"); + } + const extension = filename.split(".").pop() as string; + return { key, filename, media: MULTIPART_MEDIA[extension] }; + } + + private hasValidMagicBytes(header: Buffer, mimeType: string): boolean { + if (mimeType === "video/mp4") { + return header.length >= 8 && header.subarray(4, 8).toString() === "ftyp"; + } + // MP3: ID3v2 tag or a bare MPEG frame sync (0xFFEx). + return ( + (header.length >= 3 && header.subarray(0, 3).toString() === "ID3") || + (header.length >= 2 && header[0] === 0xff && (header[1] & 0xe0) === 0xe0) + ); + } + + private async stream( + key: string, + contentType: string, + request: Request, + response: Response, + ) { + let stat; + try { + stat = await this.s3.stat(key); + } catch (error) { + if ((error as { code?: string })?.code === "NotFound") { + response.status(404).json({ error: "not found" }); + return; + } + this.logger.error(`failed to stat ${key}: ${(error as Error)?.message}`); + response.status(500).json({ error: "internal" }); + return; + } + + const size = stat.size; + response.setHeader("Content-Type", contentType); + response.setHeader("Accept-Ranges", "bytes"); + // Image mimetypes are client-claimed at upload (only audio/video get + // magic-byte checks), so forbid content sniffing on the way back out. + response.setHeader("X-Content-Type-Options", "nosniff"); + // Filenames are immutable but event visibility is not: never allow + // shared caches to hold media for an event that may go Private later. + response.setHeader("Cache-Control", "private, max-age=3600"); + + const rangeHeader = request.headers.range; + const range = rangeHeader ? this.parseRange(rangeHeader, size) : null; + + if (rangeHeader && !range) { + response.setHeader("Content-Range", `bytes */${size}`); + response.status(416).end(); + return; + } + + try { + if (range) { + const length = range.end - range.start + 1; + response.status(206); + response.setHeader( + "Content-Range", + `bytes ${range.start}-${range.end}/${size}`, + ); + response.setHeader("Content-Length", String(length)); + const stream = await this.s3.getPartial(key, range.start, length); + this.pipeWithCleanup(stream, response); + } else { + response.status(200); + response.setHeader("Content-Length", String(size)); + const stream = await this.s3.get(key); + this.pipeWithCleanup(stream, response); + } + } catch (error) { + this.logger.error( + `failed to stream ${key}: ${(error as Error)?.message}`, + ); + if (!response.headersSent) { + response.status(500).json({ error: "internal" }); + } else { + response.destroy(); + } + } + } + + private parseRange( + header: string, + size: number, + ): { start: number; end: number } | null { + const match = /^bytes=(\d*)-(\d*)$/.exec(header.trim()); + if (!match) return null; + const startStr = match[1]; + const endStr = match[2]; + let start: number; + let end: number; + if (startStr === "" && endStr === "") return null; + if (startStr === "") { + const suffix = parseInt(endStr, 10); + if (!Number.isFinite(suffix) || suffix <= 0) return null; + start = Math.max(0, size - suffix); + end = size - 1; + } else { + start = parseInt(startStr, 10); + end = endStr === "" ? size - 1 : parseInt(endStr, 10); + } + if (!Number.isFinite(start) || !Number.isFinite(end)) return null; + if (start < 0 || end < start || start >= size) return null; + if (end >= size) end = size - 1; + return { start, end }; + } + + private pipeWithCleanup(stream: NodeJS.ReadableStream, response: Response) { + response.on("close", () => { + (stream as unknown as { destroy?: () => void }).destroy?.(); + }); + stream.pipe(response); + } +} diff --git a/src/events/events.module.ts b/src/events/events.module.ts new file mode 100644 index 000000000..760faa729 --- /dev/null +++ b/src/events/events.module.ts @@ -0,0 +1,14 @@ +import { Module } from "@nestjs/common"; +import { PostgresModule } from "src/postgres/postgres.module"; +import { S3Module } from "src/s3/s3.module"; +import { loggerFactory } from "src/utilities/LoggerFactory"; +import { EventsService } from "./events.service"; +import { EventsController } from "./events.controller"; + +@Module({ + imports: [PostgresModule, S3Module], + controllers: [EventsController], + providers: [EventsService, loggerFactory()], + exports: [EventsService], +}) +export class EventsModule {} diff --git a/src/events/events.service.ts b/src/events/events.service.ts new file mode 100644 index 000000000..6a36ed53d --- /dev/null +++ b/src/events/events.service.ts @@ -0,0 +1,237 @@ +import { Injectable, Logger } from "@nestjs/common"; +import { Readable } from "stream"; +import * as crypto from "crypto"; +import { PostgresService } from "src/postgres/postgres.service"; +import { S3Service } from "src/s3/s3.service"; +import { User } from "src/auth/types/User"; + +export type EventMediaRow = { + id: string; + event_id: string; + uploader_steam_id: string; + filename: string | null; + mime_type: string | null; + size: string; + thumbnail_filename: string | null; + external_url: string | null; +}; + +@Injectable() +export class EventsService { + public static readonly MEDIA_PREFIX = "events"; + + constructor( + private readonly postgres: PostgresService, + private readonly s3: S3Service, + private readonly logger: Logger, + ) {} + + public mediaKey(eventId: string, filename: string): string { + return `${EventsService.MEDIA_PREFIX}/${eventId}/${filename}`; + } + + /** + * Access checks call the same Postgres functions the Hasura permissions + * use (can_view_event / can_upload_event_media / is_event_organizer), so + * REST media routes can never diverge from the GraphQL visibility rules. + */ + public async canView(eventId: string, user?: User): Promise { + const [row] = await this.postgres.query>( + `SELECT public.can_view_event(e, $2::json) AS can_view + FROM public.events e + WHERE e.id = $1`, + [eventId, this.sessionJson(user)], + ); + return row ? row.can_view : null; + } + + public async canUpload(eventId: string, user: User): Promise { + const [row] = await this.postgres.query>( + `SELECT public.can_upload_event_media(e, $2::json) AS can_upload + FROM public.events e + WHERE e.id = $1`, + [eventId, this.sessionJson(user)], + ); + return row ? row.can_upload : null; + } + + public async isOrganizer(eventId: string, user: User): Promise { + const [row] = await this.postgres.query>( + `SELECT public.is_event_organizer(e, $2::json) AS is_organizer + FROM public.events e + WHERE e.id = $1`, + [eventId, this.sessionJson(user)], + ); + return row?.is_organizer === true; + } + + // Same setting the demo-upload flow uses: when a Cloudflare worker fronts + // the B2 bucket, browser part PUTs must go through it — B2 has no CORS + // rules, so direct presigned PUTs fail the preflight. + public async getCloudflareWorkerUrl(): Promise { + const rows = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = 'cloudflare_worker_url' LIMIT 1`, + ); + const value = rows.at(0)?.value?.trim(); + return value ? value.replace(/\/+$/, "") : null; + } + + public generateFilename(extension: string): string { + return `${crypto.randomBytes(12).toString("hex")}.${extension}`; + } + + public async saveMedia(media: { + eventId: string; + uploaderSteamId: string; + filename: string; + mimeType: string; + size: number; + title?: string | null; + }): Promise { + const [row] = await this.postgres.query>( + `INSERT INTO public.event_media + (event_id, uploader_steam_id, filename, mime_type, size, title) + VALUES ($1, $2, $3, $4, $5, $6) + RETURNING id`, + [ + media.eventId, + media.uploaderSteamId, + media.filename, + media.mimeType, + media.size, + media.title ?? null, + ], + ); + this.logger.log( + `event media saved event=${media.eventId} file=${media.filename} bytes=${media.size}`, + ); + return row.id; + } + + // External-link media (YouTube/Twitch/etc.) has no stored file: only the URL + // and an optional title. The CHECK constraint enforces exactly one of + // filename / external_url, so filename/mime_type stay null here. + public async saveExternalMedia(media: { + eventId: string; + uploaderSteamId: string; + externalUrl: string; + title?: string | null; + }): Promise { + const [row] = await this.postgres.query>( + `INSERT INTO public.event_media + (event_id, uploader_steam_id, external_url, title) + VALUES ($1, $2, $3, $4) + RETURNING id`, + [ + media.eventId, + media.uploaderSteamId, + media.externalUrl, + media.title ?? null, + ], + ); + this.logger.log( + `event media link saved event=${media.eventId} url=${media.externalUrl}`, + ); + return row.id; + } + + // Matches either the media file itself or its poster frame, so both are + // served (with the right mime) from the same GET route. + public async getMedia( + eventId: string, + filename: string, + ): Promise<(EventMediaRow & { is_thumbnail: boolean }) | undefined> { + const [row] = await this.postgres.query< + Array + >( + `SELECT id, event_id, uploader_steam_id::text, filename, mime_type, size::text, + thumbnail_filename, external_url, (thumbnail_filename = $2) AS is_thumbnail + FROM public.event_media + WHERE event_id = $1 AND (filename = $2 OR thumbnail_filename = $2)`, + [eventId, filename], + ); + return row; + } + + public async getMediaById( + eventId: string, + mediaId: string, + ): Promise { + const [row] = await this.postgres.query>( + `SELECT id, event_id, uploader_steam_id::text, filename, mime_type, size::text, + thumbnail_filename, external_url + FROM public.event_media + WHERE event_id = $1 AND id = $2`, + [eventId, mediaId], + ); + return row; + } + + public async setMediaThumbnail( + media: EventMediaRow, + thumbnailFilename: string, + ): Promise { + if (media.thumbnail_filename) { + await this.s3.remove( + this.mediaKey(media.event_id, media.thumbnail_filename), + ); + } + await this.postgres.query( + `UPDATE public.event_media SET thumbnail_filename = $2 WHERE id = $1`, + [media.id, thumbnailFilename], + ); + } + + public async deleteMedia(media: EventMediaRow): Promise { + if (media.thumbnail_filename) { + await this.s3.remove( + this.mediaKey(media.event_id, media.thumbnail_filename), + ); + } + // External-link rows have no stored object to remove. + if (media.filename) { + await this.s3.remove(this.mediaKey(media.event_id, media.filename)); + } + await this.postgres.query(`DELETE FROM public.event_media WHERE id = $1`, [ + media.id, + ]); + this.logger.log( + `event media deleted event=${media.event_id} file=${media.filename}`, + ); + } + + public async getMediaStream( + eventId: string, + filename: string, + ): Promise { + return await this.s3.get(this.mediaKey(eventId, filename)); + } + + public async removeEventMedia(eventId: string): Promise { + const removed = await this.s3.removePrefix( + `${EventsService.MEDIA_PREFIX}/${eventId}/`, + ); + if (removed > 0) { + this.logger.log(`removed ${removed} media objects for event ${eventId}`); + } + } + + // Default title: the uploaded file's name without its extension — far more + // useful in the gallery than "Untitled". + public titleFromFilename(name?: string | null): string | null { + if (!name) { + return null; + } + const stem = name.replace(/\.[^.]+$/, "").trim(); + return stem ? stem.slice(0, 120) : null; + } + + private sessionJson(user?: User): string { + // x-hasura-user-id is omitted (not empty) for guests: the SQL functions + // cast it with ::bigint and an empty string would throw. + return JSON.stringify({ + "x-hasura-role": user?.role ?? "guest", + ...(user ? { "x-hasura-user-id": user.steam_id } : {}), + }); + } +} diff --git a/src/game-server-node/game-server-node.controller.ts b/src/game-server-node/game-server-node.controller.ts index aa5c9b321..b8b9b6147 100644 --- a/src/game-server-node/game-server-node.controller.ts +++ b/src/game-server-node/game-server-node.controller.ts @@ -834,6 +834,7 @@ UNIT enabled: true, steam_relay: true, is_dedicated: true, + game_server_node_id: true, current_match: { current_match_map_id: true, match_maps: { @@ -851,9 +852,10 @@ UNIT throw Error("server not found"); } - // disabled servers may still be shutting down and pinging; refuse to - // bring them back online and force them offline immediately - if (server.enabled === false) { + // A disabled node-managed server is being torn down; refuse to bring it + // back online. External servers keep running independently, so a disabled + // one that's still heartbeating is genuinely online. + if (server.enabled === false && server.game_server_node_id) { if (server.connected) { await this.hasura.mutation({ update_servers_by_pk: { diff --git a/src/matches/events/MatchMapResetRoundEvent.ts b/src/matches/events/MatchMapResetRoundEvent.ts index 403360f43..12b1bdd6a 100644 --- a/src/matches/events/MatchMapResetRoundEvent.ts +++ b/src/matches/events/MatchMapResetRoundEvent.ts @@ -317,6 +317,10 @@ export default class MatchMapResetRoundEvent extends MatchEventProcessor<{ }); } + this.logger.log( + `[${this.matchId}] stats reset for round ${statsRound} complete, requesting server round restore`, + ); + await this.matchAssistant.restoreMatchRound(this.matchId, statsRound); } } diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index 9ddd9453f..a45faf597 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -83,7 +83,16 @@ export class MatchAssistantService { public async restoreMatchRound(matchId: string, round: number) { try { - await this.command(matchId, `api_restore_round ${round}`); + this.logger.log( + `[${matchId}] sending api_restore_round ${round} to server`, + ); + const response = await this.command( + matchId, + `api_restore_round ${round}`, + ); + this.logger.log( + `[${matchId}] api_restore_round ${round} response: ${response ?? ""}`, + ); } catch (error) { this.logger.warn( `[${matchId}] unable to send restore round to server`, @@ -1353,6 +1362,9 @@ export class MatchAssistantService { const rcon = await this.rcon.connect(server.id); if (!rcon) { + this.logger.warn( + `[${matchId}] unable to connect to rcon for server ${server.id}`, + ); return; } diff --git a/src/matches/match-events.gateway.ts b/src/matches/match-events.gateway.ts index 69166a18e..e8ca75cc7 100644 --- a/src/matches/match-events.gateway.ts +++ b/src/matches/match-events.gateway.ts @@ -119,6 +119,10 @@ export class MatchEventsGateway { const { data, event } = message.data; + this.logger.debug( + `[${matchId}] received game event ${event} (messageId=${messageId})`, + ); + const Processor = MatchEvents[event as keyof typeof MatchEvents]; if (!Processor) { @@ -131,7 +135,18 @@ export class MatchEventsGateway { processor.setData(matchId, data); - await processor.process(); + try { + await processor.process(); + } catch (error) { + this.logger.error( + `[${matchId}] error processing game event ${event} (messageId=${messageId}): ${error.message}`, + error.stack, + ); + // withhold the ack and clear the dedup key so the game server's retry + // re-processes instead of being swallowed by the cache + await this.cache.forget(cacheKey); + return; + } return messageId; } diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index 518e6ebb2..c67af8c47 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -6,6 +6,7 @@ export enum SystemSettingName { SupportsDiscordBot = "public.supports_discord_bot", SupportsGameServerNodes = "supports_game_server_nodes", SupportsGameServerVersionPinning = "supports_game_server_version_pinning", + EventsEnabled = "public.events_enabled", NewsEnabled = "public.news_enabled", NewsLabel = "public.news_label", PostNewsRole = "public.post_news_role", diff --git a/test/utils/jest-global-setup.ts b/test/utils/jest-global-setup.ts index 2e25db740..c1befd33d 100644 --- a/test/utils/jest-global-setup.ts +++ b/test/utils/jest-global-setup.ts @@ -2,7 +2,7 @@ import type { StartedPostgreSqlContainer } from "@testcontainers/postgresql"; import { bootContainerAndMigrate, endPool } from "./sql-test-db"; declare global { - // eslint-disable-next-line no-var + var __SQL_TEST_CONTAINER__: StartedPostgreSqlContainer | undefined; }